query-131cc873bc3498ae7b6000eaf647a1b1
Publishers with Springer as parent organization SELECT DISTINCT ?publisher ?publisherLabel WHERE {?item wdt:P123 ?publisher. ?publisher wdt:P749* wd:Q176916. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
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 bd: <http://www.bigdata.com/rdf#>
#Publishers with Springer as parent organization
SELECT DISTINCT ?publisher ?publisherLabel
WHERE {?item wdt:P123 ?publisher.
?publisher wdt:P749* wd:Q176916.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item")
v2("?publisher"):::projected
c5(["bd:serviceParam"]):::iri
c3(["wd:Q176916"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P123"--> v2
v2 --"wdt:P749"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end