OBJECT
LeadOpptyKPIEntity
link GraphQL Schema definition
- type LeadOpptyKPIEntity {
- # 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 triggered the KPI event (e.g. created the lead, qualified it, won or
- # lost the opportunity, moved the record).
- : ClientEntity
- # Lead this KPI event relates to. Set when lead_oppty_id resolves to a Lead;
- # otherwise empty.
- : LeadEntity
- # Opportunity this KPI event relates to. Set when lead_oppty_id resolves to an
- # Opportunity; otherwise empty.
- : OpportunityEntity
- # Lead/opportunity owner at the time the KPI event occurred.
- : ClientEntity
- # Sales unit the triggering user belonged to at the time of the event.
- : SalesUnitEntity
- # Application context in which the KPI event was triggered (e.g. browser,
- # automation, third-party integration).
- : ID
- # Id of the user who triggered the event.
- : ID
- # KPI metric this event represents: CreateLeads, CreateOppty, QualifyLead,
- # WinOppty, LoseLead, LoseOppty, LastMove.
- : LeadOpptyKpiEnum!
- # Id of the lead or opportunity the KPI event relates to.
- : ID!
- # Id of the lead/opportunity owner at the time of the event.
- : ID
- # Id of the sales unit.
- : ID!
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }