@prefix : <http://example/scenario#>.
@prefix dpo: <http://www.daml.org/2001/03/daml+oil#>.
@prefix dex: <http://www.daml.org/2001/03/daml+oil-ex#>.
@prefix u: <http://www.w3.org/2000/01/rdf-schema#>.

<> <#rcsid> "$Id: rdfg2.n3,v 1.1 2001/05/01 03:59:25 connolly Exp $".

:bill dex:hasFather :bob.
:bill u:label :billN.
:bob u:label :bobN.

:res u:label :str.

@prefix g: <http://www.w3.org/2001/02pd/gv#>.

<> g:digraph [
  g:label "An RDF Statement";

  g:hasNode :bill, :bob,
            :billN, :bobN;

  g:subgraph [ g:hasNode :res, :str ]
  ].

dex:hasFather a g:EdgeProperty; g:label "http://www.daml.org/2001/03/daml+oil-ex#hasFather".
u:label a g:EdgeProperty; g:color "blue".

:bill g:label "http://example/scenario#bill".
:bob g:label "http://example/scenario#bob".
:billN g:label "Bill"; g:shape "plaintext".
:bobN g:label "Bob"; g:shape "plaintext".

:str g:label "label"; g:shape "plaintext".
:res u:label :str; g:label "URI".

