summaryrefslogtreecommitdiff
path: root/app/graphql/types/task_completion_status.rb
blob: 73a8b4f3020564b0b80afff8e56a22352992fe58 (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