query-d6e9bc9dfa0bdc33dc584ea2acee8f09
PropertiesOCLC control number (P243)edition number (P393)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?sLabel ?s ?editionNumber ?ocnURI
WHERE {
?s wdt:P243 ?ocn ;
rdfs:label ?sLabel ;
wdt:P393 ?editionNumber .
# ?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;
v4("?editionNumber"):::projected
v3("?ocn")
v5("?ocnURI"):::projected
v2("?s"):::projected
v1("?sLabel"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v2 --"wdt:P243"--> v3
v2 --"rdfs:label"--> v1
v2 --"wdt:P393"--> v4
bind0[/"concat('http://www.worldcat.org/oclc/',?ocn)"/]
v3 --o bind0
bind0 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end