OBJECT

Deal

link GraphQL Schema definition

  • type Deal {
  • # Activity feed items
  • #
  • # 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.
  • # activityFeedItemType: [Not documented]
  • # noteType: [Not documented]
  • # activityType: [Not documented]
  • # limit: [Not documented]
  • # pinned: [Not documented]
  • # scopes: [Not documented]
  • activityFeed(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • activityFeedItemType: [ActivityFeedItemEnum!],
  • noteType: [NoteTypeEnum!],
  • activityType: [ActivityTypeEnum!],
  • limit: Int,
  • pinned: Boolean,
  • scopes: [ActivityFeedScopesEnum!]
  • ): ActivityFeedConnection
  • # The automation trackers of a deal
  • #
  • # 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.
  • # scopes: scopes of the automation trackers
  • # orderBy: order of the automation trackers
  • automationTrackers(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • scopes: [AutomationTrackerScopesEnum!],
  • orderBy: AutomationTrackerOrderEnum
  • ): AutomationTrackerConnection!
  • # the closing date of the deal
  • closeDate: ISO8601DateTime
  • # When the deal was created
  • createdAt: ISO8601DateTime!
  • # the associated records of the deal
  • #
  • # 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.
  • dealAssociations(after: String, before: String, first: Int, last: Int): DealAssociationConnection!
  • # the value of the deal
  • dealValue: Float
  • # ID of the deal
  • id: ID!
  • # the last activity at of the deal
  • lastActivityAt: ISO8601DateTime
  • # the name of the deal
  • name: String
  • # permission of the deal
  • permission: Permission!
  • # the pipeline stage the deal belongs to
  • pipelineStage: PipelineStage!
  • # When the deal was last updated
  • updatedAt: ISO8601DateTime!
  • # the user the deal belongs to
  • user: User
  • }