query-d055bbe5b7bbbe0dfa9f708b26389c9d

rq turtle/ttl

Query

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
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 ?sord WHERE {
       ?item  p:P31   ?statement .            
  ?statement ps:P31   wd:Q107539355 ;   # instance of MEOW marine province
             pq:P1545 ?sord .           # qualifier series-ordinal
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?sord

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?sord"):::projected v3("?statement") c6(["bd:serviceParam"]):::iri c3(["wd:Q107539355"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"p:P31"--> v3 v3 --"p:statement/P31"--> c3 v3 --"p:qualifier/P1545"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end