query-44deeb5379eee5a3b11d3303528566ef

rq turtle/ttl

Propertiesinstance of (P31)OCLC control number (P243)

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?bookSeries ?bookSeriesLabel ?worldCat
WHERE {
  ?bookSeries wdt:P31 wd:Q277759;
     rdfs:label ?bookSeriesLabel.
  OPTIONAL {?bookSeries wdt:P243 ?ocn}
  BIND (URI(CONCAT("http://www.worldcat.org/oclc/",?ocn)) AS ?worldCat)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?bookSeriesLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?bookSeries"):::projected v1("?bookSeriesLabel"):::projected v3("?ocn") v4("?worldCat"):::projected c2(["wd:Q277759"]):::iri c6(["bd:serviceParam"]):::iri c8(["en"]):::literal v2 --"wdt:P31"--> c2 v2 --"rdfs:label"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P243".-> v3 end bind0[/"concat('http://www.worldcat.org/oclc/',?ocn)"/] v3 --o bind0 bind0 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end