query-eb365fbc1918060e77b4e58baa88c842
Any statements or qualifiers relating to a specific point in time SELECT ?st ?itemLabel ?role ?propLabel WHERE { { ?st ?sp "1941-12-07"^^xsd:dateTime ; a wikibase:BestRank . ?prop wikibase:statementProperty ?sp . BIND("claim" AS ?role) } UNION { ?st ?q "1941-12-07"^^xsd:dateTime ; a wikibase:BestRank . ?prop wikibase:qualifier ?q . BIND("qualifier" AS ?role) } ?item ?pred ?st . hint:Prior hint:runLast true . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Any statements or qualifiers relating to a specific point in time
SELECT ?st ?itemLabel ?role ?propLabel
WHERE {
{
?st ?sp "1941-12-07"^^xsd:date ;
a wikibase:BestRank .
?prop wikibase:statementProperty ?sp .
BIND("claim" AS ?role)
}
UNION
{
?st ?q "1941-12-07"^^xsd:date ;
a wikibase:BestRank .
?prop wikibase:qualifier ?q .
BIND("qualifier" AS ?role)
}
?item ?pred ?st . hint:Prior hint:runLast true .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }