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
{{ message }}
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
I have a GraphQL schema that looks somewhat like this. (I abbreviated it for brevity, but it should still be mostly complete, it was automatically generated by Keystone 6, also known as Keystone Next):
After that, I get the following query as output from GraphQLinq:
query (
$where: SharedExperienceRoomWhereInput$orderBy: [SharedExperienceRoomOrderByInput]
$skip: Int
) {
result: sharedexperiencerooms(where: {}, orderBy: [], skip: 0) {
id
}
}
However, next to the issue from #15, this query contains $orderBy: [SharedExperienceRoomOrderByInput] instead of $orderBy: [SharedExperienceRoomOrderByInput!] (note the exclamation mark) from the original schema, which generates syntax errors on the side of the server.
The text was updated successfully, but these errors were encountered:
Hello
I have a GraphQL schema that looks somewhat like this. (I abbreviated it for brevity, but it should still be mostly complete, it was automatically generated by Keystone 6, also known as Keystone Next):
I've then scaffolded the appropriate classes, and am the using the generated query context to do a query to fetch all items as follows:
After that, I get the following query as output from GraphQLinq:
However, next to the issue from #15, this query contains
$orderBy: [SharedExperienceRoomOrderByInput]
instead of$orderBy: [SharedExperienceRoomOrderByInput!]
(note the exclamation mark) from the original schema, which generates syntax errors on the side of the server.The text was updated successfully, but these errors were encountered: