query-737e82332f57a0441e841ea23eab13c1
TODO
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 ?game ?gameLabel ?devLabel ?publisherLabel ?date WHERE {
?game wdt:P31 wd:Q7889;
wdt:P136 wd:Q744038.
OPTIONAL {
?game wdt:P178 ?dev.
?game wdt:P123 ?publisher.
?game wdt:P577 ?date.
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?date"):::projected
v2("?dev")
v1("?game"):::projected
v3("?publisher")
c9(["bd:serviceParam"]):::iri
c4(["wd:Q744038"]):::iri
c2(["wd:Q7889"]):::iri
c11(["en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P136"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P178".-> v2
v1 --"wdt:P123"--> v3
v1 --"wdt:P577"--> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end