OBJECT

TimeframeEntity

link GraphQL Schema definition

  • type TimeframeEntity {
  • # 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
  • # Lead this step-time record belongs to. Set when lead_oppty_id resolves to a
  • # Lead.
  • lead: LeadEntity
  • # Opportunity this step-time record belongs to. Set when lead_oppty_id resolves to
  • # an Opportunity.
  • oppty: OpportunityEntity
  • # Pipeline step the lead/opportunity entered.
  • step: StepEntity
  • # Id of the lead or opportunity the timeframe belongs to.
  • leadOpptyId: ID!
  • # Id of the pipeline step.
  • stepId: ID!
  • # Number of seconds the record spent in the step (cumulative across re-entries).
  • timeframe: Int!
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }