query-3b5461f99b105f2a5caed77629e28980
Propertieslanguage of work or name (P407)genre (P136)title (P1476)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 wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?scifi ?title ?scifiLabel ?languageLabel ?worldcatURI
WHERE
{
?scifi wdt:P407 ?language;
wdt:P136 wd:Q24925.
OPTIONAL {?scifi wdt:P1476 ?title}
OPTIONAL {?scifi wdt:P243 ?ocn }
BIND (URI(CONCAT("http://www.worldcat.org/oclc/",?ocn)) AS ?worldcatURI)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
FILTER (?language = wd:Q7737)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?language")
v4("?ocn")
v2("?scifi"):::projected
v3("?title"):::projected
v5("?worldcatURI"):::projected
c8(["bd:serviceParam"]):::iri
c4(["wd:Q24925"]):::iri
c10(["en"]):::literal
f0[["?language = 'wd:Q7737'"]]
f0 --> v1
v2 --"wdt:P407"--> v1
v2 --"wdt:P136"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1476".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P243".-> v4
end
bind1[/"concat('http://www.worldcat.org/oclc/',?ocn)"/]
v4 --o bind1
bind1 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end