OBJECT

ProfileEntity

link GraphQL Schema definition

  • type ProfileEntity {
  • # 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
  • # User who owns the screen profile.
  • owner: ClientEntity
  • # Specific record this profile is synchronized to. Set only when sync_enabled is
  • # true.
  • syncEntity: ReportEntity
  • # Field whose values are strictly defined with an enumeration of values.
  • entity: ScreenTypeEnum!
  • # API name of the custom entity this profile applies to. Set only when the profile
  • # targets a custom entity screen; otherwise empty.
  • entityApiName: String
  • # Name of the entity and its default text representation.
  • name: String!
  • # Id of the owning user.
  • ownerId: ID!
  • # Layout and chart configuration of the screen profile, stored as a JSON document.
  • settings: JSONString!
  • # Field whose values are strictly defined with an enumeration of values.
  • shareMode: ShareModeEnum
  • # When true, changes to the profile are propagated to records linked via
  • # ProfileRelation; when false, the profile is detached from the records.
  • syncEnabled: Boolean
  • # Id of the synchronized record.
  • syncEntityId: ID
  • # Field whose values are strictly defined with an enumeration of values.
  • type: ProfileTypeEnum
  • # When true, the profile name is treated as a translation key and localized in the
  • # UI; otherwise the literal name is shown.
  • useLang: Boolean
  • # Revision when entity was lastly changed.
  • revision: Int
  • # For pipeline-screen profiles, ids of the pipelines included in the profile
  • # configuration; empty for profiles on other screens.
  • pipelines: [UUID!]!
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }