The pregenerated mutations do not handle nullables properly for associated types.
Here is an example of a schema:
type Post {
id: ID!
title: String!
content: String!
category: Category! @hasInverse(field: posts)
}
type Category {
id: ID!
name: String!
posts: [Post]
}
After grabbing the generated schema
npx get-graphql-schema https://your-username.us-west-2.aws.cloud.dgraph.io/graphql -j > graphql_schema.json
We observe AddPostInput
like so - pay particular attention to CategoryRef
{
"kind": "INPUT_OBJECT",
"name": "AddPostInput",
"description": "",
"fields": [],
"inputFields": [
// ....
{
"name": "category",
"description": "",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
"name": "CategoryRef",
"ofType": null
}
},
"defaultValue": null
}
],
CategoryRef
is like so
{
"kind": "INPUT_OBJECT",
"name": "CategoryRef",
"description": "",
"fields": [],
"inputFields": [
{
"name": "id",
"description": "",
"type": {
"kind": "SCALAR",
"name": "ID",
"ofType": null
},
"defaultValue": null
},
{
"name": "name",
"description": "",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": null
},
{
"name": "posts",
"description": "",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
"name": "PostRef",
"ofType": null
}
},
"defaultValue": null
}
],
"interfaces": [],
"enumValues": [],
"possibleTypes": []
},
Do you see how name
is nullable in CategoryRef
? It shouldn’t be.
This is an issue, especially when using type safety on the frontend when types generated based on the graphql_schema.json
.