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
Hi, I have a GraphQL API auto generated from Prisma schema using typegraphql-prisma. The following query for example working as expected with Yoga as the GraphQL server:
queryGetNodes($where: NodeWhereInput) {
nodes(where: $where) {
id
}
}
Hi, I have a GraphQL API auto generated from Prisma schema using typegraphql-prisma. The following query for example working as expected with Yoga as the GraphQL server:
Variables:
Result:
But when I enable
graphql-jit
, I got this error from the same query:It works fine in both cases without the query parameters though:
The text was updated successfully, but these errors were encountered: