query-79f31d3d644a098556099710523b4ed0

rq turtle/ttl

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

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 ?characterLabel ?character ?bookSeriesLabel ?bookSeries
WHERE {
  ?bookSeries wdt:P31 wd:Q277759;
     wdt:P674 ?character;
     rdfs:label ?bookSeriesLabel.
  ?character rdfs:label ?characterLabel .
  OPTIONAL {?bookSeries wdt:P243 ?ocn}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?characterLabel ?bookSeriesLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?bookSeries"):::projected v2("?bookSeriesLabel"):::projected v4("?character"):::projected v1("?characterLabel"):::projected v5("?ocn") c2(["wd:Q277759"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal v3 --"wdt:P31"--> c2 v3 --"wdt:P674"--> v4 v3 --"rdfs:label"--> v2 v4 --"rdfs:label"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P243".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end