-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SPARQL 1.0: cover "GRAPH ?g {}" case
It should list all named graphs. We did not have any test of GRAPH with an empty BGP.
- Loading branch information
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PREFIX : <http://example/> | ||
|
||
SELECT * | ||
{ GRAPH ?g {} } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@prefix rs: <http://www.w3.org/2001/sw/DataAccess/tests/result-set#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
|
||
[] rdf:type rs:ResultSet ; | ||
rs:resultVariable "g" ; | ||
rs:solution [ rs:binding [ rs:value <data-g1.ttl> ; | ||
rs:variable "g" | ||
] | ||
] ; | ||
rs:solution [ rs:binding [ rs:value <data-g2.ttl> ; | ||
rs:variable "g" | ||
] | ||
] . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters