query-ace406dbd738cd9e0a930a7e7863e9cf
Search for point in time
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 ?item ?itemLabel ?participantLabel WHERE {
{
SELECT ?item ?itemLabel ?participantLabel (CONTAINS(?participantLabel, "T00:00:00Z") AS ?is_Bangla) WHERE {
?item wdt:P5008 wd:Q66098665; wdt:P585 ?participant .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
} .
}
} .
FILTER( ?is_Bangla = true ) .
FILTER EXISTS { ?item wdt:P585 ?dummy0 }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?dummy0")
v5("?is_Bangla")
v1("?item"):::projected
v4("?participant")
c6(["bd:serviceParam"]):::iri
c4(["wd:Q66098665"]):::iri
c8(["en"]):::literal
f0[[" "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P585"--> e0v2
e0v2("?dummy0"):::projected
e0v1("?item"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"wdt:P585"--> v2
f1[["?is_Bangla = 'true^^xsd:boolean'"]]
f1 --> v5
v1 --"wdt:P5008"--> c4
v1 --"wdt:P585"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind2[/"contains(?participantLabel,'T00:00:00Z')"/]
null --o bind2
bind2 --as--o v5