[ https://issues.apache.org/jira/browse/TINKERPOP-2987?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Kensuke Ishihara updated TINKERPOP-2987: ---------------------------------------- Description: I created a vertex which has a date property. (I defined a schema and enabled schema constraints according to [Schema and Data Modeling - JanusGraph|https://docs.janusgraph.org/schema/].) When I wrote a query on Gremlin Console like below, it works. I mean, it is not necessary to use datetime() function. g.V().has("labelName", "propertyName", "2018-04-01T00:00:00").valueMap() But, if I accessed same vertex via another vertex, then I need datetime() function. g.V().has("anotherLabelName", "anotherPropertyName", "someValue").out().has("labelName", "propertyName", datetime("2018-04-01T00:00:00")).valueMap() If I didn't use datetime(), no vertex is returned. Same problem occurs on Gremlin.Net. In .Net, -.ToUniversalTime() method is needed at latter case- I have not found a workaround. was: I created a vertex which has a date property. (I defined a schema and enabled schema constraints according to [Schema and Data Modeling - JanusGraph|https://docs.janusgraph.org/schema/].) When I wrote a query on Gremlin Console like below, it works. I mean, it is not necessary to use datetime() function. g.V().has("labelName", "propertyName", "2018-04-01T00:00:00").valueMap() But, if I accessed same vertex via another vertex, then I need datetime() function. g.V().has("anotherLabelName", "anotherPropertyName", "someValue").out().has("labelName", "propertyName", datetime("2018-04-01T00:00:00")).valueMap() If I didn't use datetime(), no vertex is returned. Same problem occurs on Gremlin.Net. In .Net, .ToUniversalTime() method is needed at latter case. > "Has (Traversal Step)" and datetime() function > ---------------------------------------------- > > Key: TINKERPOP-2987 > URL: https://issues.apache.org/jira/browse/TINKERPOP-2987 > Project: TinkerPop > Issue Type: Bug > Components: console, dotnet > Affects Versions: 3.5.5 > Environment: Windows 10 > TinkerPop 3.5.5 > JanusGraph 0.6.3 > Berkeley JE > Reporter: Kensuke Ishihara > Priority: Major > Labels: bug > Original Estimate: 0h > Remaining Estimate: 0h > > I created a vertex which has a date property. (I defined a schema and enabled > schema constraints according to [Schema and Data Modeling - > JanusGraph|https://docs.janusgraph.org/schema/].) > > When I wrote a query on Gremlin Console like below, it works. I mean, it is > not necessary to use datetime() function. > g.V().has("labelName", "propertyName", "2018-04-01T00:00:00").valueMap() > > But, if I accessed same vertex via another vertex, then I need datetime() > function. > g.V().has("anotherLabelName", "anotherPropertyName", > "someValue").out().has("labelName", "propertyName", > datetime("2018-04-01T00:00:00")).valueMap() > If I didn't use datetime(), no vertex is returned. > > Same problem occurs on Gremlin.Net. In .Net, -.ToUniversalTime() method is > needed at latter case- I have not found a workaround. -- This message was sent by Atlassian Jira (v8.20.10#820010)