query-89f813d35d9aa4dcd12ee67c4dfb09ba

rq turtle/ttl

Propertiesinstance of (P31)OCLC control number (P243)characters (P674)

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
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 ?character ?characterLabel ?wcWork ?workLabel
WHERE {
  ?work wdt:P31 wd:Q7725634;
        rdfs:label ?workLabel;
        wdt:P243 ?ocn;
        wdt:P674 ?character.
  ?character rdfs:label ?characterLabel.
  BIND (URI(CONCAT("http://www.worldcat.org/oclc/",?ocn)) AS ?wcWork)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?characterLabel ?workLabel
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?character"):::projected v1("?characterLabel"):::projected v4("?ocn") v6("?wcWork"):::projected v3("?work") v2("?workLabel"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q7725634"]):::iri c9(["en"]):::literal v3 --"wdt:P31"--> c2 v3 --"rdfs:label"--> v2 v3 --"wdt:P243"--> v4 v3 --"wdt:P674"--> v5 v5 --"rdfs:label"--> v1 bind0[/"concat('http://www.worldcat.org/oclc/',?ocn)"/] v4 --o bind0 bind0 --as--o v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end