Welcome to mirror list, hosted at ThFree Co, Russian Federation.

timelog_category_type.rb « time_tracking « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c73a6fbd43b5b22fb7b46a83de706d579da34404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# frozen_string_literal: true

module Types
  module TimeTracking
    class TimelogCategoryType < BaseObject
      graphql_name 'TimeTrackingTimelogCategory'

      authorize :read_timelog_category

      field :id,
            GraphQL::Types::ID,
            null: false,
            description: 'Internal ID of the timelog category.'

      field :name,
            GraphQL::Types::String,
            null: false,
            description: 'Name of the category.'

      field :description,
            GraphQL::Types::String,
            null: true,
            description: 'Description of the category.'

      field :color,
            Types::ColorType,
            null: true,
            description: 'Color assigned to the category.'

      field :billable,
            GraphQL::Types::Boolean,
            null: true,
            description: 'Whether the category is billable or not.'

      field :billing_rate,
            GraphQL::Types::Float,
            null: true,
            description: 'Billing rate for the category.'

      field :created_at,
            Types::TimeType,
            null: false,
            description: 'When the category was created.'

      field :updated_at,
            Types::TimeType,
            null: false,
            description: 'When the category was last updated.'
    end
  end
end