Hi,

in my database I use documents containing the creation time of other 
documents.
To find the creation time of the last inserted document I use the following 
Query:

LET filterDate = DATE_TIMESTAMP(Date_SUBTRACT(Date_NOW(), 1, "Week"))
FOR vertex in INBOUND "MyCollection/CreationTime" GRAPH "MyGraph"
filter vertex.creationTime > filterDate
COLLECT ct = vertex.creationTime > filterDate into cTime
return max(cTime)

With Arangodb 2.8 it works good, but after migrating to Version 3.0.1 I get 
the following error after a few seconds while running the query:

<https://lh3.googleusercontent.com/-qKNIcmx825o/V3vKDJFsxMI/AAAAAAAABV4/Yk5Y9_oA35QBqVp9wbCqFLYPwbFN3_GTgCKgB/s1600/AQL-Error.bmp>

I could not find any way to report this to arangodb.com so I hope it will 
be ok if I report it here.

Regards,
Christoph



-- 
You received this message because you are subscribed to the Google Groups 
"ArangoDB" 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.

Reply via email to