Hello I was wondering if it was possible to set fields to null with a graphql mutation?
I thought if the field is not marked as required in the realm schema it would be possible but I keep getting this error.
{
“data”: null,
“errors”: [
{
“message”: “Syntax Error GraphQL request (35:24) Unexpected Name “null”\n\n34: _id: “111118e14e40ae75111b0005”,\n35: classifications: null,\n ^\n36: createDateTimeStamp: “2022-02-01T20:32:33.255Z”,\n”,
“locations”: [
{
“line”: 35,
“column”: 24
}
]
}
]
}