query-a984bbd76875d69370a6adb35e0424a0

rq turtle/ttl

PropertiesOCLC control number (P243)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?sLabel ?s ?p ?ocnURI
WHERE {
  ?s ?p ?stmt ;
     rdfs:label ?sLabel .
  ?stmt pq:P243 ?ocn .
#  ?prop wikibase:directClaim ?p  .
  BIND(URI(CONCAT('http://www.worldcat.org/oclc/', ?ocn)) AS ?ocnURI)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?sLabel
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?ocn") v6("?ocnURI"):::projected v3("?p"):::projected v2("?s"):::projected v1("?sLabel"):::projected v4("?stmt") c4(["bd:serviceParam"]):::iri c6(["en"]):::literal v2 -->v3--> v4 v2 --"rdfs:label"--> v1 v4 --"pq:P243"--> v5 bind0[/"concat('http://www.worldcat.org/oclc/',?ocn)"/] v5 --o bind0 bind0 --as--o v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end