summaryrefslogtreecommitdiff
path: root/app/graphql/types/task_completion_status.rb
blob: 6837256f202630eedce26de3b601a7dfa66caaba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  # This is used in `IssueType` and `MergeRequestType` both of which have their
  # own authorization
  class TaskCompletionStatus < BaseObject
    graphql_name 'TaskCompletionStatus'
    description 'Completion status of tasks'

    field :count, GraphQL::INT_TYPE, null: false,
          description: 'Number of total tasks.'
    field :completed_count, GraphQL::INT_TYPE, null: false,
          description: 'Number of completed tasks.'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end