debian-mirror-gitlab/app/graphql/types/label_type.rb

15 lines
356 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
module Types
class LabelType < BaseObject
graphql_name 'Label'
2019-07-07 11:18:12 +05:30
authorize :read_label
2019-02-15 15:39:39 +05:30
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