SPARQL examples: Difference between revisions

From Dariah-Lab
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
<!--T:4-->
<!--T:4-->
This page is parsed by the web interface of the query service to fill the query example dialog.  
This page is parsed by the web interface of the query service to fill the query example dialog.  
== <!--T:9--> Simple queries ==


=== <!--T:541--> Institutions sparql ===
=== <!--T:541--> Institutions sparql ===
Line 15: Line 11:
}}
}}


=== <!--T:541--> Institutions ===




=== <!--T:541--> Institutions ===
   SELECT ?institution ?institutionLabel WHERE {
   SELECT ?institution ?institutionLabel WHERE {
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       ?institution wdt:P47 wd:Q467.
       ?institution wdt:P47 wd:Q467.
   }
   }

Revision as of 09:18, 11 May 2022

This page is parsed by the web interface of the query service to fill the query example dialog.

Institutions sparql

Template:SPARQL


Institutions

 SELECT ?institution ?institutionLabel WHERE {
     SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
     ?institution wdt:P47 wd:Q467.
 }