INPUT_OBJECT

ExternalIDUpsertMutationInput

Autogenerated input type of ExternalIDUpsertMutation

link GraphQL Schema definition

  • input ExternalIDUpsertMutationInput {
  • # A unique identifier for the client performing the mutation.
  • clientMutationId: String
  • # ID of the local object to link
  • owner: ID!
  • # Name of the remote system for the ID, eg. 'my_system'
  • key: String!
  • # ID on the remote system
  • value: String!
  • # The default is for an ExternalID's owner/key/value to be unique.
  • #
  • # For example, owner: 'Advert', key: 'my_store', value: '23'.
  • #
  • # When this flag is set to true, any existing owner/key pair will be created or
  • # updated -
  • #
  • # eg. if an ExternalID exists with an owner of 'Advert' and a key of 'my_store',
  • # this
  • #
  • # record will be found and updated with the new value, or created if it does not
  • # exist.
  • #
  • # Default is false.
  • #
  • ownerKeyUnique: Boolean
  • }