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.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # 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: FieldMappingTemplate
  • # Field whose values are strictly defined with an enumeration of values.
  • operation: FieldMappingOperationTypeEnum
  • # API name of the source custom entity. Set only when source_entity_name is
  • # "CustomEntity"; otherwise empty.
  • sourceEntityApiName: String
  • # API name of the target custom entity. Set only when target_entity_name is
  • # "CustomEntity"; otherwise empty.
  • targetEntityApiName: 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.
  • typeMappings: [EntityTypeFieldMapping!]
  • # Revision when entity was lastly changed.
  • revision: 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.
  • sourceEntityName: 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.
  • targetEntityName: EntityNameEnum!
  • # Files attached to the mapping (e.g. import source files).
  • documents: [CloudObjectRelationEntity!]
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }