Skip to content

Commit 13e9084

Browse files
committed
adding trigstar evaluation test
1 parent 775c3d5 commit 13e9084

12 files changed

+56
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
:G {<<:s :p :o>> :q :z .}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
:G {:a :q <<:s :p :o>> .}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
:G {:s :p :o {| :r :z |} .}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
PREFIX : <http://example/>
2+
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
3+
4+
:G {
5+
:s :p :o {| :source [ :graph <http://host1/> ;
6+
:date "2020-01-20"^^xsd:date
7+
] ;
8+
:source [ :graph <http://host2/> ;
9+
:date "2020-12-31"^^xsd:date
10+
]
11+
|} .
12+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
PREFIX : <http://example/>
2+
3+
:G {
4+
:s :p :o {| :a :b |};
5+
:p2 :o2 {| :a2 :b2 |},
6+
:o3 {| :a3 :b3 |}.
7+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
:G {:s :p :o {| :a :b {| :a2 :b2 |} |}.}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
PREFIX : <http://example/>
2+
3+
:G {:s :p :o1, :o2 {| :a :b |} .}
4+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
PREFIX : <http://example/>
2+
3+
:G {
4+
_:b :p :o .
5+
<<_:b :p :o>> :q :z .
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
PREFIX : <http://example/>
2+
3+
:G {
4+
_:a :p1 _:a .
5+
<<_:a :p1 _:a >> :q <<_:a :p2 :o>> .
6+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
:G {:s :p :o {| :r <<:s1 :p1 :o1>> |} .}

0 commit comments

Comments
 (0)