query-44f961c8c6374be4d49b894d3ee03786
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?points ?fedLabel ?boardLabel
WHERE
{
?item p:P1344 ?statementNode .
?statementNode ps:P1344 wd:Q226066 .
?statementNode pq:P1355 ?points .
?statementNode pq:P413 ?board .
?item wdt:P1532 ?fed .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ASC(?fedLabel) ASC(?boardLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?board")
v2("?boardLabel"):::projected
v7("?fed")
v1("?fedLabel"):::projected
v3("?item"):::projected
v5("?points"):::projected
v4("?statementNode")
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q226066"]):::iri
v3 --"p:P1344"--> v4
v4 --"p:statement/P1344"--> c3
v4 --"p:qualifier/P1355"--> v5
v4 --"p:qualifier/P413"--> v6
v3 --"p:direct/P1532"--> v7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end