OBJECT
FieldMappingEntity
link GraphQL Schema definition
- type FieldMappingEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # 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.
- : FieldMappingTemplate
- # Field whose values are strictly defined with an enumeration of values.
- : FieldMappingOperationTypeEnum
- # API name of the source custom entity. Set only when source_entity_name is
- # "CustomEntity"; otherwise empty.
- : String
- # API name of the target custom entity. Set only when target_entity_name is
- # "CustomEntity"; otherwise empty.
- : String
- # 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.
- : [EntityTypeFieldMapping!]
- # Revision when entity was lastly changed.
- : Int
- # Source entity kind for the mapping (e.g. Lead, Account, Contact). Returns
- # "CustomEntity" when the source is a custom entity; the API name is then exposed
- # via source_entity_api_name.
- : EntityNameEnum!
- # Target entity kind for the mapping (e.g. Lead, Account, Contact). Returns
- # "CustomEntity" when the target is a custom entity; the API name is then exposed
- # via target_entity_api_name.
- : EntityNameEnum!
- # Files attached to the mapping (e.g. import source files).
- : [CloudObjectRelationEntity!]
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }