We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bigint
Describe the bug When you use bigint primary keys everything works until we pass the data over to the graphql reference implementation:
graphql
"message":"ID cannot represent value: 1","stack":"GraphQLError: ID cannot represent value: 1\n at GraphQLScalarType.serialize ([project directory]/node_modules/.pnpm/[email protected]/node_modules/graphql/type/scalars.js:301:11)
To Reproduce
Create a table as follows:
CREATE TABLE test ( id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY, note text );
Then populate some data in the table. Query the values from the table.
Expected behavior Expected functional query response.
Actual behavior Error
Additional context It looks like they're not going to coerce these values for us: graphql/graphql-js#3913
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When you use
bigint
primary keys everything works until we pass the data over to thegraphql
reference implementation:To Reproduce
Create a table as follows:
Then populate some data in the table. Query the values from the table.
Expected behavior
Expected functional query response.
Actual behavior
Error
Additional context
It looks like they're not going to coerce these values for us: graphql/graphql-js#3913
The text was updated successfully, but these errors were encountered: