Hi,
I have an event class with start and end dates and there is no end date triple for the event before its actual end. To select unfinished events, I usually do something like:
optional { ?s ontology:endDate ?endDate}
filter (?endDate = "")
However, with StarDog,that does not return anything. I have also used the following without success:
filter (str(?endDate) = "")
filter (strlen(str(?endDate)) = 0)
filter( isBLANK(?endDate) )
filter( ?endDate = UNDEF)
filter( ?endDate = NIL)
How can I handle null in StarDog?
Thanks