OBJECT
ClientFavoriteEntity
link GraphQL Schema definition
- type ClientFavoriteEntity {
- # 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 marked as favorite, when this favorite points to an account.
- : AccountEntity
- # Appointment marked as favorite. Set when activity_id resolves to an Appointment.
- : AppointmentEntity
- # Task marked as favorite. Set when activity_id resolves to a Task.
- : TaskEntity
- # Contact marked as favorite, when this favorite points to a contact.
- : ContactEntity
- # Custom entity record marked as favorite, when this favorite points to a custom
- # entity.
- : CustomEntityEntity
- # Lead marked as favorite. Set when lead_oppty_id resolves to a Lead.
- : LeadEntity
- # Opportunity marked as favorite. Set when lead_oppty_id resolves to an
- # Opportunity.
- : OpportunityEntity
- # User who marked the record as favorite.
- : ClientEntity
- # Screen profile marked as favorite, when this favorite points to a profile.
- : ProfileEntity
- # Project marked as favorite, when this favorite points to a project.
- : ProjectEntity
- # Quote marked as favorite, when this favorite points to a quote.
- : QuoteEntity
- # Report marked as favorite, when this favorite points to a report.
- : ReportEntity
- # Id of the favorite account.
- : ID
- # Id of the favorite appointment or task, or empty when not pointing to an
- # activity.
- : ID
- # Id of the favorite contact.
- : ID
- # Id of the favorite custom entity record.
- : ID
- # Id of the favorite lead or opportunity, or empty when not pointing to one.
- : ID
- # Id of the owning user.
- : ID!
- # Id of the favorite screen profile.
- : ID
- # Id of the favorite project.
- : ID
- # Id of the favorite quote.
- : ID
- # Id of the favorite report.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }