CopyInput

open_in_new

Specification of the data to copy

GraphQL Schema definition

  • input CopyInput {
  • # The ID of the view to copy elements from.
  • viewId: ID!
  • # Copy all elements of this type.
  • #
  • # If both 'all' and 'ids' are unspecified this
  • # will default to true
  • #
  • # If 'all' is unspecified and 'ids' is specified this
  • # will default to false
  • # If 'all' is 'true' and 'ids' is specified this will
  • # throw a validation error.
  • all: Boolean
  • # A set of element ids to copy.
  • # If any of the IDs don't exist on the source
  • # view, or the layer (if specified), the whole operation will fail.
  • ids: [ID!]
  • }