Exception when adding data using GraphQL

There are 2 issues in your query:

  1. You don’t need to add the id of the new Change_log, as it will be automatically created.
  2. Id’s are uid's, which means that in the GraphQL it should be passed as string, because they have different format. Ex. Instead of 0, the correct pattern would be "0x0"
1 Like