OBJECT
Pipeline
link GraphQL Schema definition
- type Pipeline {
- # When the pipeline was created
- : 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
- (
- : String,
- : String,
- : Int,
- : Int,
- : Int,
- : Int,
- : DealOrderEnum,
- : ISO8601DateTime,
- : ISO8601DateTime,
- : FilterSetAttributes
- ): DealConnection!
- # ID of the pipeline
- : ID!
- # the name of the pipeline
- : String
- # permission of the pipeline
- : Permission!
- # pipeline stages of the pipeline
- #
- # Arguments
- # query: Search query of the stage
- (: String): [PipelineStage!]!
- # When the pipeline was last updated
- : ISO8601DateTime!
- # ID of the user who created the pipeline
- : User
- }
link Require by
- CreatePipelinePayloadAutogenerated return type of CreatePipeline
- DestroyPipelinePayloadAutogenerated return type of DestroyPipeline
- PipelineConnectionThe connection type for Pipeline.
- PipelineEdgeAn edge in a connection.
- PipelineStagenull
- PipelineViewnull
- QueryThe query root of this schema
- ReorderPipelineStagesPayloadAutogenerated return type of ReorderPipelineStages
- UpdatePipelinePayloadAutogenerated return type of UpdatePipeline
- UserUser Record