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
ERROR #85925 GRAPHQL
There was an error in your GraphQL query:
Cannot return null for non-nullable field CMCategory.nameDe.
The field "CMCategory.nameDe." was explicitly defined as non-nullable via the schema customization API (by yourself or a plugin/theme). This means that this field is not optional and you have to define a value. If this is not your
desired behavior and you defined the schema yourself, go to "createTypes" in gatsby-node.js. If you're using a plugin/theme, you can learn more here on how to fix field types:
https://www.gatsbyjs.com/docs/reference/graphql-data-layer/schema-customization#fixing-field-types
1 | fragment ConcertCategoryFragment on CMCategory {
2 | remoteId
> 3 | nameDe
| ^
4 | nameEn
5 | isSubcategoryOf {
6 | remoteId
7 | nameDe
8 | nameEn
9 | }
10 | }
11 |
The text was updated successfully, but these errors were encountered:
I am getting the following error message:
However, none of the returned
CMCategory
from the origin graphql server returns null for this field.A reproduction sample is available at
https://github.com/rburgst/gatsby-graphql-toolkit-bug
This is the server schema
To replicate do the following
Expected
the build runs through
Actual
The following error is thrown
The text was updated successfully, but these errors were encountered: