query-730161b73c218e01248012b73fa19da1
Help on showing place of publication (P291) qualifierHello! statement from the following query: (P577)publication date qualifier of (P291)place of publication I need your help on showing
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?manga_chapter ?manga_chapterLabel ?japanese_title ?volume ?series WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?manga_chapter wdt:P31 wd:Q53460949;
wdt:P179 wd:Q185143.
OPTIONAL { ?manga_chapter wdt:P1476 ?japanese_title. }
OPTIONAL {
?manga_chapter p:P179 ?qual.
?qual pq:P478 ?volume;
pq:P1545 ?series.
}
}
ORDER BY (?series)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?japanese_title"):::projected
v2("?manga_chapter"):::projected
v4("?qual")
v1("?series"):::projected
v5("?volume"):::projected
c8(["wd:Q185143"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q53460949"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"p:direct/P31"--> c6
v2 --"p:direct/P179"--> c8
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P1476".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:P179".-> v4
v4 --"p:qualifier/P478"--> v5
v4 --"p:qualifier/P1545"--> v1
end