Fix and test use of dates. fecha.parse usage is too strict and fails to parse dates without milliseconds given #200
Labels
bug
Something isn't working
graphql-api
Something at the layer of what is and isn't implemented that affects the graphql api
test-writing
Issues related to unit or integration tests
Milestone
It seems the issue doesn't occur if you pass a decimal after the seconds, for milliseconds
This input:
hasPointInTime: "2022-02-20T01:30:15.01-08:00"
Became this:
hasPointInTime: "2022-02-20T09:30:15.010Z"
without passing milliseconds you get back null. However, we know the values are saved to the db so its just an issue with client side decoding of fields.
an issue with fecha.parse in connection.ts and happening at the JS layer.
@pospi also said:
Add tests to ensure all necessary date formats are valid for
DateTime
fields in search fields (dates, date + time, date + time + seconds, date + time + seconds + millis).May want to swap out the
URI
andDateTime
GraphQL scalar resolvers; consider using https://github.com/Urigo/graphql-scalars.The text was updated successfully, but these errors were encountered: