OBJECT

TranslationEntity

link GraphQL Schema definition

  • type TranslationEntity {
  • # 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!
  • hasDraft: 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
  • accountType: AccountTypeEntity
  • appointmentType: AppointmentTypeEntity
  • contactType: ContactTypeEntity
  • data: DataEntity
  • field: FieldEntity
  • leadType: LeadTypeEntity
  • opptyProductRelationType: OpptyProductRelationTypeEntity
  • opptyType: OpportunityTypeEntity
  • productType: ProductTypeEntity
  • projectType: ProjectTypeEntity
  • taskType: TaskTypeEntity
  • # Relation to single entity instance.
  • accountTypeId: ID
  • # Relation to single entity instance.
  • appointmentTypeId: ID
  • # Relation to single entity instance.
  • contactTypeId: ID
  • # Relation to single entity instance.
  • dataId: ID
  • # Multi-line text input field.
  • deDe: String
  • # Multi-line text input field.
  • enUs: String
  • # Multi-line text input field.
  • esEs: String
  • # Relation to single entity instance.
  • fieldId: ID
  • # Field whose values are strictly defined with an enumeration of values.
  • formType: FormTypeEnum
  • # Field whose values are strictly defined with an enumeration of values.
  • labelType: TranslationLabelTypeEnum!
  • # Relation to single entity instance.
  • leadTypeId: ID
  • # Relation to single entity instance.
  • opptyProductRelationTypeId: ID
  • # Relation to single entity instance.
  • opptyTypeId: ID
  • # Relation to single entity instance.
  • productTypeId: ID
  • # Relation to single entity instance.
  • projectTypeId: ID
  • # Multi-line text input field.
  • ptBr: String
  • # Relation to single entity instance.
  • taskTypeId: ID
  • isPublished: Boolean
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }