SPARQL examples: Difference between revisions
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[https://wikihum.lab.dariah.pl/wdqs/ | [https://wikihum.lab.dariah.pl/wdqs/#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%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP77%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP77%2F%28wdt%3AP56%2a%29%29%20wd%3AQ68.%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 Try it!] |
Revision as of 10:45, 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:P81 ?ahp_id .
?item p:P63 ?statement .
?statement pq:P40 ?pointintime .
?statement ps:P63 ?coordinate .
?item p:P77 ?statement1.
?statement1 (ps:P77/(wdt:P56*)) wd:Q68.
FILTER(YEAR(?pointintime) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}