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