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

24 lines
793 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'
2021-01-03 14:25:43 +05:30
connection_type_class(Types::CountableConnectionType)
2019-07-07 11:18:12 +05:30
authorize :read_label
2019-12-26 22:10:19 +05:30
field :id, GraphQL::ID_TYPE, null: false,
2021-03-11 19:13:27 +05:30
description: 'Label ID.'
2019-12-26 22:10:19 +05:30
field :description, GraphQL::STRING_TYPE, null: true,
2021-03-11 19:13:27 +05:30
description: 'Description of the label (Markdown rendered as HTML for caching).'
2019-09-30 21:07:59 +05:30
markdown_field :description_html, null: true
2019-12-26 22:10:19 +05:30
field :title, GraphQL::STRING_TYPE, null: false,
2021-03-11 19:13:27 +05:30
description: 'Content of the label.'
2019-12-26 22:10:19 +05:30
field :color, GraphQL::STRING_TYPE, null: false,
2021-03-11 19:13:27 +05:30
description: 'Background color of the label.'
2019-12-26 22:10:19 +05:30
field :text_color, GraphQL::STRING_TYPE, null: false,
2021-03-11 19:13:27 +05:30
description: 'Text color of the label.'
2019-02-15 15:39:39 +05:30
end
end