query-26fd9190e1cbcfd65ee8b05839f65466

rq turtle/ttl

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

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?ocn") v2("?work"):::projected v1("?workLabel"):::projected v4("?worldcatURI"):::projected c2(["wd:Q36322"]):::iri c5(["bd:serviceParam"]):::iri c7(["en"]):::literal v2 --"wdt:P50"--> 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