INPUT_OBJECT

CreateOrUpdateFieldMappingInput

link GraphQL Schema definition

  • input CreateOrUpdateFieldMappingInput {
  • # Optional client-supplied identifier passed on a mutation input and echoed back
  • # unchanged on its payload, so a client can correlate the response with its
  • # request (Relay convention).
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # True when the mapping is shipped by the platform and cannot be deleted by the
  • # user.
  • isSystem: Boolean
  • # Default field-to-field mapping template applied when no per-type-pair mapping
  • # matches.
  • mapping: FieldMappingTemplateJSONString
  • # Field whose values are strictly defined with an enumeration of values.
  • operation: FieldMappingOperationTypeEnum
  • # Per-type-pair field mappings: each entry binds a set of source/target type ids
  • # and the field-to-field mapping that applies when both types match.
  • typeMappings: [EntityTypeFieldMappingJSONString!]
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Files attached to the mapping (e.g. import source files).
  • documents: [CreateCloudObjectRelationNoBackrefInput!]
  • }

link Require by