INPUT_OBJECT

UpdateModelInput

All input for the updateModel mutation.

link GraphQL Schema definition

  • input UpdateModelInput {
  • # An arbitrary string value with no semantic meaning. Will be included in the
  • # payload verbatim. May be used to track mutations by the client.
  • clientMutationId: String
  • # The globally unique `ID` which will identify a single `Model` to be updated.
  • nodeId: ID!
  • # An object where the defined keys will be set on the `Model` being updated.
  • modelPatch: ModelPatch!
  • }