Hi, I have a DB with vertices called Person, and edges called AggregatedPhoneCall. Each edge keeps an *indexed* embedded list "call_times", which keeps all the times in which a phone call was made between these 2 Persons.
I want to write a query which will return all AggregatedPhoneCall edges which have a value between a given range. I've tried using this query: SELECT FROM AggregatedPhoneCall WHERE call_times BETWEEN "2015-08-30 20:00:00" AND "2015-08-30 20:42:31" but it returns nothing. I have a very large amount of data, and potentially thousands of call_times per AggregatedPhoneCall, so using the index is a must... Any ideas? Using one edge per phone call is not an option (for other reasons that are less important in this context). Thanks so much, Lior -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
