Project:SPARQL/examples

From Addshore Alpha
Revision as of 14:08, 2 February 2020 by Addshore (talk | contribs) (Add a second query that makes use of an item..)
Jump to navigation Jump to search

Examples

Select All Triples

# Select All Triples
SELECT * WHERE { ?a ?b ?c }

Try it!


Select All Triples relating to Q1

The following query uses these:

# Select All Triples relating to Q1
SELECT * WHERE { <http://addshore-alpha.wiki.opencura.com/entity/Q1> ?b ?c }

Try it!