ENUM

ListMutationTypeInput

link GraphQL Schema definition

  • enum ListMutationTypeInput {
  • # Adds a new entry to the list. Fails if a matching entry already exists.
  • ADD
  • # Removes an existing entry in the list. Fails if a matching entry is not found.
  • REMOVE
  • # Removes all the entries in the list.
  • REMOVE_ALL
  • # Replaces an existing entry in the list. Adds a new entry if a matching entry is
  • # not found.
  • REPLACE
  • # Replaces all existing entries in the list.
  • REPLACE_ALL
  • # Update an existing entry in the list. Modifies only the parameters given
  • UPDATE
  • }