You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 1.5 (last release)
We have a vertex with a date field.
if I call this gremlin through rest:
g.V('@Class','myVertex').has('dateField', T.lte, new Date())
Orient returns:
System.Exception: DB Error:InternalServerError. Msg:com.orientechnologies.orient.core.sql.OCommandSQLParsingException: Error on parsing command at position #65: Invalid keyword 'AUG'
Command: select from V where @Class = 'myVertex' and dateField <= Fri Aug 30 17:19:39 CEST 2013 LIMIT 2147483647
If I change the query in:
g.V('@Class','myVertex').as('x').has('dateField', T.lte, new Date())
all works.
The text was updated successfully, but these errors were encountered:
Version 1.5 (last release)
We have a vertex with a date field.
if I call this gremlin through rest:
g.V('@Class','myVertex').has('dateField', T.lte, new Date())
Orient returns:
System.Exception: DB Error:InternalServerError. Msg:com.orientechnologies.orient.core.sql.OCommandSQLParsingException: Error on parsing command at position #65: Invalid keyword 'AUG'
Command: select from V where @Class = 'myVertex' and dateField <= Fri Aug 30 17:19:39 CEST 2013 LIMIT 2147483647
If I change the query in:
g.V('@Class','myVertex').as('x').has('dateField', T.lte, new Date())
all works.
The text was updated successfully, but these errors were encountered: