Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
188 views

See example 19 of w3 rdf1.2 specification: PREFIX : <http://www.example.org/> :employee38 :familyName "Smith" . << :employee38 :jobTitle "Assistant Designer" >>...
lix joy's user avatar
  • 71
3 votes
0 answers
209 views

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: <&...
npg22's user avatar
  • 106
2 votes
1 answer
169 views

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 ...
Takis's user avatar
  • 8,755
0 votes
2 answers
204 views

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 ...
gaspanic's user avatar
  • 279
0 votes
1 answer
141 views

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&...
joylix's user avatar
  • 137
1 vote
0 answers
143 views

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&...
Robby Morgan's user avatar
1 vote
1 answer
427 views

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....
Janothan's user avatar
  • 476
1 vote
0 answers
118 views

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 ...
Greenfish's user avatar
  • 378