query-988de0f1d55ccf78e4f35cba30a5cb6b
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?P31 ?P31Label WHERE{
?item wdt:P31 ?P31 .
?P31 rdfs:label "video game"@en .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?P31"):::projected
v1("?item"):::projected
c5(["bd:serviceParam"]):::iri
c3([svideo game^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> v2
v2 --"rdfs:label"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end