summaryrefslogtreecommitdiff
path: root/app/graphql/types/label_type.rb
blob: ccd466edc1aa04e0913fd2d13d84c3f8342fbfb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Types
  class LabelType < BaseObject
    graphql_name 'Label'

    field :description, GraphQL::STRING_TYPE, null: true
    field :title, GraphQL::STRING_TYPE, null: false
    field :color, GraphQL::STRING_TYPE, null: false
    field :text_color, GraphQL::STRING_TYPE, null: false
  end
end