query-bea3b31cb4dcca22100898a8beabb1b9
Tournaments in 2017
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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 ?item ?itemLabel WHERE {
?item wdt:P5008 wd:Q66098665 .
?item wdt:P585 ?_publication_date .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
FILTER (?_publication_date = "2017-00-00T00:00:00Z"^^xsd:dateTime)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?_publication_date")
v2("?item"):::projected
c6(["bd:serviceParam"]):::iri
c3(["wd:Q66098665"]):::iri
c8(["en"]):::literal
f0[["?_publication_date = '2017-00-00T00:00:00Z^^xsd:dateTime'"]]
f0 --> v1
v2 --"wdt:P5008"--> c3
v2 --"wdt:P585"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end