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).
- : String
- # Unique identifier of entity.
- : ID
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # True when the mapping is shipped by the platform and cannot be deleted by the
- # user.
- : Boolean
- # Default field-to-field mapping template applied when no per-type-pair mapping
- # matches.
- : FieldMappingTemplateJSONString
- # Field whose values are strictly defined with an enumeration of values.
- : 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.
- : [EntityTypeFieldMappingJSONString!]
- # Revision when entity was lastly changed.
- : Int
- # Files attached to the mapping (e.g. import source files).
- : [CreateCloudObjectRelationNoBackrefInput!]
- }