Breaking changes between gen2 and gen3
The third generation of the GraphQL API adds support for querying all documents through the new allDocument type. However, with a new generation comes breaking changes.
We had to rename a type to avoid conflicts. DocumentFilter has been renamed to Sanity_DocumentFilter. In other words, if you for example have a query like this:
query GetAllUser($docFilter: Sanity_DocumentFilter) {
allUser(_: $docFilter) {
_id
}
}
It should now look like this in gen3:
query GetAllUser($docFilter: DocumentFilter) {
allUser(_: $docFilter) {
_id
}
}