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.
  • 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
  • # Account marked as favorite, when this favorite points to an account.
  • account: AccountEntity
  • # Appointment marked as favorite. Set when activity_id resolves to an Appointment.
  • appointment: AppointmentEntity
  • # Task marked as favorite. Set when activity_id resolves to a Task.
  • task: TaskEntity
  • # Contact marked as favorite, when this favorite points to a contact.
  • contact: ContactEntity
  • # Custom entity record marked as favorite, when this favorite points to a custom
  • # entity.
  • customEntity: CustomEntityEntity
  • # Lead marked as favorite. Set when lead_oppty_id resolves to a Lead.
  • lead: LeadEntity
  • # Opportunity marked as favorite. Set when lead_oppty_id resolves to an
  • # Opportunity.
  • oppty: OpportunityEntity
  • # User who marked the record as favorite.
  • owner: ClientEntity
  • # Screen profile marked as favorite, when this favorite points to a profile.
  • profile: ProfileEntity
  • # Project marked as favorite, when this favorite points to a project.
  • project: ProjectEntity
  • # Quote marked as favorite, when this favorite points to a quote.
  • quote: QuoteEntity
  • # Report marked as favorite, when this favorite points to a report.
  • report: ReportEntity
  • # Id of the favorite account.
  • accountId: ID
  • # Id of the favorite appointment or task, or empty when not pointing to an
  • # activity.
  • activityId: ID
  • # Id of the favorite contact.
  • contactId: ID
  • # Id of the favorite custom entity record.
  • customEntityId: ID
  • # Id of the favorite lead or opportunity, or empty when not pointing to one.
  • leadOpptyId: ID
  • # Id of the owning user.
  • ownerId: ID!
  • # Id of the favorite screen profile.
  • profileId: ID
  • # Id of the favorite project.
  • projectId: ID
  • # Id of the favorite quote.
  • quoteId: ID
  • # Id of the favorite report.
  • reportId: ID
  • # 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!]!
  • }