Project:SPARQL/examples: Difference between revisions

From Addshore Alpha
Jump to navigation Jump to search
(add header)
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Foo==
==Examples==


<syntaxhighlight>
===Select All Triples===
Test
 
</syntaxhighlight>
<sparql tryit="1">
SELECT * WHERE { ?a ?b ?c }
</sparql>
 
===Select All Triples relating to Q1===
 
<sparql tryit="1" list="1">
SELECT * WHERE { <http://addshore-alpha.wiki.opencura.com/entity/Q1> ?b ?c }
</sparql>

Latest revision as of 20:26, 18 April 2020

Examples

Select All Triples

SELECT * WHERE { ?a ?b ?c }

Try it!


Select All Triples relating to Q1

The following query uses these:

SELECT * WHERE { <http://addshore-alpha.wiki.opencura.com/entity/Q1> ?b ?c }

Try it!