module RDF::Raptor::Graphviz

Graphviz support.

@example Requiring the ‘RDF::Raptor` module

require 'rdf/raptor'

@example Serializing RDF statements into a Graphviz file

RDF::Writer.open("output.dot") do |writer|
  graph.each_statement do |statement|
    writer << statement
  end
end