query-df9005f37a7c703a8e63e7f92b201eac
are either same year"). (P582)end time and (P582)end time : This is a query for your first request. The later question is too vague to make a query. There are over 100,000 results so I added a LIMIT. I also dropped the condition "or (same month+same year)" because it will not give any results which are not already found by the first part ("Bouzinac@ 23:16, 27 November 2020 (UTC) 💛●✒️●💬 Bouzinac are perfect]. How to find/filter to get them ? (P582)end time and (P580)start time ] , not a temporal process [which means (P585)point in time Yes, in the paper, it answers the need but when looking at the results, I wonder how to get only items whose P31 suggest it should be a certain point in time [should be better a 22:54, 27 November 2020 (UTC) Jurashould give you part of it. ---
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?instance ?instanceLabel ?count
WHERE
{
{
SELECT ?instance (COUNT(*) as ?count)
WHERE
{
?item wdt:P580 ?from; wdt:P582 ?to .
FILTER NOT EXISTS { ?item wdt:P585 [] } .
FILTER( YEAR(?from) = YEAR(?to) )
?item wdt:P31 ?instance
}
GROUP BY ?instance
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?count)
LIMIT 300