SPARQL examples: Difference between revisions

From Dariah-Lab
Jump to navigation Jump to search
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 ...."
 
No edit summary
Line 18: Line 18:
   }
   }
</syntaxhighlight>
</syntaxhighlight>
[https://prunus-208.man.poznan.pl/wdqs/index.html#SELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP403%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP420%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP485%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP420%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP418%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP418%2F%28wdt%3AP56%2a%29%29%20wd%3AQ233991.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D%0A Try it!]
[https://wikihum.lab.dariah.pl/wdqs/index.html#SELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP403%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP420%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP485%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP420%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP418%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP418%2F%28wdt%3AP56%2a%29%29%20wd%3AQ233991.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D%0A Try it!]

Revision as of 10:38, 29 June 2024

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!