query-09bbaa5567a4676718c3b03897f56711
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
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 ?collection ?collectionLabel ?inv WHERE {
?item p:P195 ?collectionstatement .
?collectionstatement ps:P195 ?collection .
?collectionstatement pq:P217 ?inv .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } .
}
LIMIT 25000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?collection"):::projected
v2("?collectionstatement")
v4("?inv"):::projected
v1("?item"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v1 --"p:P195"--> v2
v2 --"p:statement/P195"--> v3
v2 --"p:qualifier/P217"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end