OBJECT
ProfileRelationEntity
link GraphQL Schema definition
- type ProfileRelationEntity {
- # 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
- # Account this profile is linked to, when applicable.
- : AccountEntity
- # Contact this profile is linked to, when applicable.
- : ContactEntity
- # Custom entity record this profile is linked to, when applicable.
- : CustomEntityEntity
- # Lead this profile is linked to. Set when lead_oppty_id resolves to a Lead.
- : LeadEntity
- # Opportunity this profile is linked to. Set when lead_oppty_id resolves to an
- # Opportunity.
- : OpportunityEntity
- # Screen profile this relation links to a specific record.
- : ProfileEntity
- # Project this profile is linked to, when applicable.
- : ProjectEntity
- # Quote this profile is linked to, when applicable.
- : QuoteEntity
- # Id of the linked account.
- : ID
- # Id of the linked contact.
- : ID
- # Id of the linked custom entity record.
- : ID
- # Id of the linked lead or opportunity, or empty when not pointing to one.
- : ID
- # Id of the screen profile.
- : ID!
- # Id of the linked project.
- : ID
- # Id of the linked quote.
- : ID
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }