EasyRdf Serialiser Example
digraph {
charset="utf-8";
// Edges
"Rhttp://www.example.com/joe#me" -> "Rhttp://xmlns.com/foaf/0.1/Person" [label="rdf:type"];
"Rhttp://www.example.com/joe#me" -> "LJoseph Bloggs" [label="foaf:name"];
"Rhttp://www.example.com/joe#me" -> LMr [label="foaf:title"];
"Rhttp://www.example.com/joe#me" -> LJoe [label="foaf:nick"];
"Rhttp://www.example.com/joe#me" -> "Rhttp://example.com/joe/" [label="foaf:homepage"];
"Rhttp://www.example.com/joe#me" -> "L1980-09-08" [label="foaf:dateOfBirth"];
"Rhttp://www.example.com/joe#me" -> "L1.82" [label="foaf:height"];
"Rhttp://www.example.com/joe#me" -> "B_:genid1" [label="foaf:currentProject"];
"B_:genid1" -> "Rhttp://xmlns.com/foaf/0.1/Project" [label="rdf:type"];
"B_:genid1" -> "LJoe's current project" [label="foaf:name"];
// Nodes
"B_:genid1" [label="",shape=circle,color=green];
"L1.82" [label=1.82,shape=record];
"L1980-09-08" [label="1980-09-08",shape=record];
LJoe [label=Joe,shape=record];
"LJoe's current project" [label="Joe's current project",shape=record];
"LJoseph Bloggs" [label="Joseph Bloggs",shape=record];
LMr [label=Mr,shape=record];
"Rhttp://example.com/joe/" [URL="http://example.com/joe/",label="http://example.com/joe/",shape=ellipse,color=blue];
"Rhttp://www.example.com/joe#me" [URL="http://www.example.com/joe#me",label="http://www.example.com/joe#me",shape=ellipse,color=blue];
"Rhttp://xmlns.com/foaf/0.1/Person" [URL="http://xmlns.com/foaf/0.1/Person",label="foaf:Person",shape=ellipse,color=blue];
"Rhttp://xmlns.com/foaf/0.1/Project" [URL="http://xmlns.com/foaf/0.1/Project",label="foaf:Project",shape=ellipse,color=blue];
}