SPARQL examples: Difference between revisions

From Dariah-Lab
Jump to navigation Jump to search
Line 56: Line 56:


<div class="wdt-sparql-container"><div><div class="mw-highlight mw-highlight-lang-sparql mw-content-ltr" dir="ltr">
<div class="wdt-sparql-container"><div><div class="mw-highlight mw-highlight-lang-sparql mw-content-ltr" dir="ltr">
 
<code>
SELECT ?institution ?institutionLabel WHERE {
      SELECT ?institution ?institutionLabel WHERE {
       ?institution wdt:P47 wd:Q467. # instance of Institution
       ?institution wdt:P47 wd:Q467. # instance of Institution
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
   }
   }
 
</code>
[https://{{SERVERNAME}}/wdqs/#SELECT%20%3Fitem%20%3FitemLabel%20%0AWHERE%20%0A%7B%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ146.%20%23%20Must%20be%20of%20a%20cat%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%20%23%20Helps%20get%20the%20label%20in%20your%20language%2C%20if%20not%2C%20then%20en%20language%0A%7D Try it!]
[https://{{SERVERNAME}}/wdqs/#SELECT%20%3Fitem%20%3FitemLabel%20%0AWHERE%20%0A%7B%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ146.%20%23%20Must%20be%20of%20a%20cat%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%20%23%20Helps%20get%20the%20label%20in%20your%20language%2C%20if%20not%2C%20then%20en%20language%0A%7D Try it!]

Revision as of 10:09, 12 May 2022

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

test page scroll























test page scroll

Institutions

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

Try it!