query-039ff9515bfc83f0e350df2438f1a217
Propertiesauthor (P50)illustrator (P110)OCLC control number (P243)
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 ?workLabel ?work ?authorIllustratorLabel ?authorIllustrator ?ocnURI
WHERE {
?work wdt:P50 ?authorIllustrator;
rdfs:label ?workLabel ;
wdt:P110 ?authorIllustrator .
OPTIONAL {
?work wdt:P243 ?ocn .
}
BIND(URI(CONCAT('http://www.worldcat.org/oclc/', ?ocn)) AS ?ocnURI)
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("?authorIllustrator"):::projected
v4("?ocn")
v5("?ocnURI"):::projected
v2("?work"):::projected
v1("?workLabel"):::projected
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
v2 --"wdt:P50"--> v3
v2 --"rdfs:label"--> v1
v2 --"wdt:P110"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P243".-> v4
end
bind0[/"concat('http://www.worldcat.org/oclc/',?ocn)"/]
v4 --o bind0
bind0 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end