query-1ab92bfe044898598b34bce93cd927e0

rq turtle/ttl

Propertiesinstance of (P31)OCLC control number (P243)

Use at

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 ?sLabel ?s ?worldcatURI
WHERE {
  ?s wdt:P31 wd:Q746654;
     wdt:P243 ?ocn.
  BIND (URI(CONCAT("http://www.worldcat.org/oclc/",?ocn)) AS ?worldcatURI)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?sLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?ocn") v2("?s"):::projected v1("?sLabel"):::projected v4("?worldcatURI"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q746654"]):::iri c7(["en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P243"--> v3 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; c5 --"wikibase:language"--> c7 end