OBJECT

Pipeline

link GraphQL Schema definition

  • type Pipeline {
  • # When the pipeline was created
  • createdAt: ISO8601DateTime!
  • # Deals of the pipeline
  • #
  • # 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]
  • # filterSet: Find deals by filters
  • deals(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • offset: Int,
  • limit: Int,
  • orderBy: DealOrderEnum,
  • updatedBefore: ISO8601DateTime,
  • updatedAfter: ISO8601DateTime,
  • filterSet: FilterSetAttributes
  • ): DealConnection!
  • # ID of the pipeline
  • id: ID!
  • # the name of the pipeline
  • name: String
  • # permission of the pipeline
  • permission: Permission!
  • # pipeline stages of the pipeline
  • #
  • # Arguments
  • # query: Search query of the stage
  • pipelineStages(query: String): [PipelineStage!]!
  • # When the pipeline was last updated
  • updatedAt: ISO8601DateTime!
  • # ID of the user who created the pipeline
  • user: User
  • }