Selecting All Triples Except Those With A Given Property In SPARQL


/ Published in: Other
Save to your folder(s)

Replace this:property with the property in question.


Copy this code and paste it in your HTML
  1. SELECT ?s ?p ?o
  2. WHERE {
  3. ?s ?p ?o .
  4. FILTER (?p != this:property)
  5. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.