I ran queries to gain dates of instances of an incident, and used Point in Time (P585). Link
SELECT DISTINCT ?incident ?label ?time WHERE {
?incident wdt:P31 wd:Q625994.
?incident rdfs:label ?label.
?incident wdt:P585 ?time.
FILTER((LANG(?label)) = "en")
}
However, result cases such as re:publica would only give me year information in the form of January 1, 2007 ~ 2016. (they occurred in April or May, and I would like more specific info like that)
Then I saw re:publica also has Start Dates & End Dates under Point in Time, per year. Therefore, I tried changing wdt:585 into wdt:580 (Start Dates), however, then I would not get re:publica in my results because apparently it is not considered to have 'start dates' if I query this way (because it is under Point in Time).
How do I get start time when Start Time is under Point in Time? Or, in general, how do I get certain info I want when it's under some other properties?