SPARQL examples: Difference between revisions

From Dariah-Lab
Jump to navigation Jump to search
No edit summary
Line 57: Line 57:


<div class="mw-highlight mw-highlight-lang-sparql mw-content-ltr" dir="ltr">
<div class="mw-highlight mw-highlight-lang-sparql mw-content-ltr" dir="ltr">
<syntaxhighlight lang="python" line>
<syntaxhighlight lang="SPARQL">
   SELECT ?institution ?institutionLabel  
   SELECT ?institution ?institutionLabel  
   WHERE
   WHERE

Revision as of 10:24, 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!