CollisionResolution

open_in_new

GraphQL Schema definition

  • enum CollisionResolution {
  • # If an element of the same type with the same
  • # ID exists in the destination the entire operation
  • # will fail.
  • fail
  • # If an element of the same type with the same
  • # ID exists in the destination the source will
  • # replace it.
  • replace
  • # If an element of the same type with the same
  • # ID exists in the destination it will be unaltered.
  • skip
  • # If an element of the same type with the same
  • # ID exists in the destination then a duplicate with
  • # a new ID will be placed in the destination.
  • duplicate
  • }