-
-
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.
Implement reify-slot-statements option -- see #377
- Loading branch information
1 parent
ff944bd
commit 8cde200
Showing
9 changed files
with
202 additions
and
121 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
2 changes: 2 additions & 0 deletions
2
sparql-anything-it/src/test/resources/ReifySlotStatements.csv
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,2 @@ | ||
A,B,C | ||
1,2,3 |
18 changes: 18 additions & 0 deletions
18
sparql-anything-it/src/test/resources/ReifySlotStatements.ttl
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,18 @@ | ||
|
||
<< <http://www.example.org/document#row1> <http://www.w3.org/2000/01/rdf-schema#member> "C" >> <http://sparql.xyz/facade-x/ns/slot-key> "3"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<http://www.example.org/document> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://sparql.xyz/facade-x/ns/root> . | ||
<http://www.example.org/document> <http://www.w3.org/2000/01/rdf-schema#member> <http://www.example.org/document#row1> . | ||
<http://www.example.org/document> <http://www.w3.org/2000/01/rdf-schema#member> <http://www.example.org/document#row2> . | ||
<< <http://www.example.org/document> <http://www.w3.org/2000/01/rdf-schema#member> <http://www.example.org/document#row2> >> <http://sparql.xyz/facade-x/ns/slot-key> "2"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<< <http://www.example.org/document> <http://www.w3.org/2000/01/rdf-schema#member> <http://www.example.org/document#row1> >> <http://sparql.xyz/facade-x/ns/slot-key> "1"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<< <http://www.example.org/document#row1> <http://www.w3.org/2000/01/rdf-schema#member> "B" >> <http://sparql.xyz/facade-x/ns/slot-key> "2"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<< <http://www.example.org/document#row1> <http://www.w3.org/2000/01/rdf-schema#member> "A" >> <http://sparql.xyz/facade-x/ns/slot-key> "1"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<< <http://www.example.org/document#row2> <http://www.w3.org/2000/01/rdf-schema#member> "1" >> <http://sparql.xyz/facade-x/ns/slot-key> "1"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<< <http://www.example.org/document#row2> <http://www.w3.org/2000/01/rdf-schema#member> "2" >> <http://sparql.xyz/facade-x/ns/slot-key> "2"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<< <http://www.example.org/document#row2> <http://www.w3.org/2000/01/rdf-schema#member> "3" >> <http://sparql.xyz/facade-x/ns/slot-key> "3"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
<http://www.example.org/document#row1> <http://www.w3.org/2000/01/rdf-schema#member> "A" . | ||
<http://www.example.org/document#row1> <http://www.w3.org/2000/01/rdf-schema#member> "B" . | ||
<http://www.example.org/document#row1> <http://www.w3.org/2000/01/rdf-schema#member> "C" . | ||
<http://www.example.org/document#row2> <http://www.w3.org/2000/01/rdf-schema#member> "1" . | ||
<http://www.example.org/document#row2> <http://www.w3.org/2000/01/rdf-schema#member> "2" . | ||
<http://www.example.org/document#row2> <http://www.w3.org/2000/01/rdf-schema#member> "3" . |
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
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