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
Currently all entities need to have id: ID to follow the graphql spec. Internally with postgres this creates a TEXT primary key column. This can have some limitations when using numbers as the id and ordering because it will order lexicographically.
Solution
We can add an additional directive to the graphql schema to allow specifying a different underlying type.
Background
Currently all entities need to have
id: ID
to follow the graphql spec. Internally with postgres this creates a TEXT primary key column. This can have some limitations when using numbers as the id and ordering because it will order lexicographically.Solution
We can add an additional directive to the graphql schema to allow specifying a different underlying type.
Requirements
The text was updated successfully, but these errors were encountered: