15 questions
0
votes
0
answers
188
views
How to generate a turtle format file of rdf-star using rdflib?
See example 19 of w3 rdf1.2 specification:
PREFIX : <http://www.example.org/>
:employee38 :familyName "Smith" .
<< :employee38 :jobTitle "Assistant Designer" >>...
3
votes
0
answers
209
views
Defining classes of quoted triples in RDF-star/RDF 1.2
RDF-star (soon to be RDF 1.2) introduces a new term, quoted triples, that can be the subject or object of a triple. In the Turtle 1.2 syntax, an example of a basic quoted triple would be written:
<&...
2
votes
1
answer
169
views
How to use the Jena query builder for RDF-star?
How to convert this simple query to Jena java query builder?
SELECT ?city
WHERE { <<:athens :connected ?city >> :distance 500}
I tried this in Clojure and it didn't work.
No need to ...
0
votes
2
answers
204
views
How bind values within RDF-star triples to variables?
Using RDF-star, say I have:
?couple :isA :Couple .
and ?couple takes values such as this one:
<< :Bill :marriedTo :Mary >> :isA :Couple .
Is there any way to extract :Bill and :Mary from ...
0
votes
1
answer
141
views
Does graphdb support rdf-star syntax?
Consider example2 from the W3C's RDF* specification:
https://w3c.github.io/rdf-star/cg-spec/editors_draft.html
@prefix : <http://www.example.org/> .
:employee38
:familyName "Smith&...
1
vote
0
answers
143
views
GraphDB: Use RDF-star for edge labels in custom graph?
https://graphdb.ontotext.com/documentation/standard/exploring-data.html#create-your-own-visual-graph describes the ability to create a visual graph using SPARQL queries, and for the "Edge Basics&...
1
vote
1
answer
427
views
Reification and SPARQL* in Jena: Compatibility
Can I use a SPARQL* query to query a classic RDF model that uses reification?
To me, the Jena documentation is a bit vague here.
The code below creates a reified statement:
<< <http://www....
1
vote
0
answers
118
views
SPARQL* DELETE/INSERT returning error when using nested triples within where clause
why is it not allowed to include a nested triple like <<?s ?o ?p>> ?x ?y within the where clause of a insert/delete statement. It immediatelly returns an 500 error.
Following simple ...