-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
729c94f
commit 18ad0f0
Showing
7 changed files
with
99 additions
and
36 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
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
12 changes: 12 additions & 0 deletions
12
sparql-anything-it/src/test/resources/issues/issue352-csv.sparql
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,12 @@ | ||
PREFIX fx: <http://sparql.xyz/facade-x/ns/> | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
SELECT DISTINCT ?fred ?sally | ||
WHERE { | ||
SERVICE <x-sparql-anything:location=%%%LOCATION%%%> | ||
{ | ||
fx:properties fx:csv.headers true . | ||
?root a fx:root ; | ||
rdf:_1 [rdf:_1 ?fred] ; | ||
rdf:_2 [rdf:_1 ?sally] . | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
sparql-anything-it/src/test/resources/issues/issue352-xls.sparql
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,15 @@ | ||
PREFIX fx: <http://sparql.xyz/facade-x/ns/> | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
SELECT DISTINCT ?fred ?sally | ||
WHERE { | ||
SERVICE <x-sparql-anything:location=%%%LOCATION%%%> | ||
{ | ||
# GRAPH <%%%LOCATION%%%#Sheet1> { | ||
fx:properties fx:spreadsheet.headers true . | ||
GRAPH <%%%LOCATION%%%#Sheet1> { | ||
?root a fx:root ; | ||
rdf:_1 [rdf:_1 ?fred] ; | ||
rdf:_2 [rdf:_1 ?sally] . | ||
} | ||
} | ||
} |
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,3 @@ | ||
,state,age,dog name | ||
fred,CO,34,fido | ||
sally,FL,44,wilma |
Binary file not shown.
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