OBJECT

PipelineStage

link GraphQL Schema definition

  • type PipelineStage {
  • # When the pipeline stage was created
  • createdAt: ISO8601DateTime!
  • # the deals in the pipeline stage
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # orderBy: [Not documented]
  • # updatedBefore: [Not documented]
  • # updatedAfter: [Not documented]
  • # query: Search query of the Deal
  • # filterSet: Find deals by filters
  • deals(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • offset: Int,
  • limit: Int,
  • orderBy: DealOrderEnum,
  • updatedBefore: ISO8601DateTime,
  • updatedAfter: ISO8601DateTime,
  • query: String,
  • filterSet: FilterSetAttributes
  • ): DealConnection
  • # ID of the pipeline stage
  • id: ID!
  • # the name of the pipeline stage
  • name: String
  • # the pipeline the stage belongs to
  • pipeline: Pipeline!
  • # the position of the pipeline stage
  • position: Int
  • # Sum of the deal values present in the stage
  • #
  • # Arguments
  • # filterSet: Get total stage value by filters
  • totalStageValue(filterSet: FilterSetAttributes): Float
  • # When the pipeline stage was last updated
  • updatedAt: ISO8601DateTime!
  • }