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
If you set a datetime on a datetime property which is indexed by dgraph, the whole dgraph db is crashing as Date / time is serialized, another way as dgraph expect it.
Either serialize the date in the right way (Use binary format for time as expected by go https://golang.org/src/time/time.go [look for marshall]).
Or send as string in ISO8061 format and regex check every string on query if it's a datetime
The text was updated successfully, but these errors were encountered:
If you set a datetime on a datetime property which is indexed by dgraph, the whole dgraph db is crashing as Date / time is serialized, another way as dgraph expect it.
Either serialize the date in the right way (Use binary format for time as expected by go
https://golang.org/src/time/time.go [look for marshall]).
Or send as string in ISO8061 format and regex check every string on query if it's a datetime
The text was updated successfully, but these errors were encountered: