blob: 750e99a2b1ad3e45c59ee339397bb5d592e86067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Example: lots of graphs
@prefix : <http://example.org/ns#> .
{
<http://example.org/thing> :label "thing";
:comment "a thing";
:page [ a :Document ];
:items (1 2 3) .
} a :Graph .
{ :a = :b . } => { :b = :a . } .
[] = { :C = :D . } .
[] = { [] = { :E = :F . } . } .
:named1 = { :named2 = { :G = :H . } . } .
:named3 = {
{ :a = :b . } => { :b = :a . } .
} .
{ :ISSUE :label "graphs not as subjects not serialized" . } .
{
{ :ISSUE :label "sub graphs not as subjects not serialized" . } .
}.
|