query-7839f51d25aed430d1efcf93181481ce

rq turtle/ttl

Toutes les oeuvres fictive dans des oeuvres de fiction

Use at

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 ?item ?itemLabel ?item2 ?item2Label ?item3 ?item3Label WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item wdt:P31*/wdt:P279*  wd:Q15306849.   # all fictitious works and subclasses of fictitious work
  OPTIONAL {?item wdt:P1441 ?item2. }    # present in which work  
  OPTIONAL {?item wdt:P1080 ?item3. }    # from narrative universe  
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?item2"):::projected v3("?item3"):::projected a1((" ")) c2(["bd:serviceParam"]):::iri c7(["wd:Q15306849"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c7 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1441".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1080".-> v3 end