SPARQL examples

From Dariah-Lab
Revision as of 10:35, 29 June 2024 by Pjaskulski@ihpan.edu.pl (talk | contribs) (Created page with "<!--T:4--> This page is parsed by the web interface of the [https://{{SERVERNAME}}/wdqs query service] to fill the query example dialog. === Miejscowości z AHP (XVI w.) w których znajdowała się karczma === <syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql"> SELECT ?item ?itemLabel ?ahp_id ?coordinate WHERE { ?item wdt:P403 ?ahp_id . ?item p:P420 ?statement . ?statement pq:P485 ?pointintime . ?statement ps:P420 ?coordinate ....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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


Miejscowości z AHP (XVI w.) w których znajdowała się karczma

SELECT ?item ?itemLabel ?ahp_id ?coordinate
  WHERE
  {
      ?item wdt:P403 ?ahp_id .
      ?item p:P420 ?statement .
      ?statement pq:P485 ?pointintime .
      ?statement ps:P420 ?coordinate .
      ?item p:P418 ?statement1.
      ?statement1 (ps:P418/(wdt:P56*)) wd:Q233991.
      FILTER(YEAR(?pointintime) = 1600)
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  }

Try it!