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

27 lines
766 B
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
module Types
class GroupType < NamespaceType
graphql_name 'Group'
authorize :read_group
expose_permissions Types::PermissionTypes::Group
2019-12-26 22:10:19 +05:30
field :web_url, GraphQL::STRING_TYPE, null: false,
description: 'Web URL of the group'
2019-07-31 22:56:46 +05:30
2019-12-26 22:10:19 +05:30
field :avatar_url, GraphQL::STRING_TYPE, null: true,
description: 'Avatar URL of the group',
resolve: -> (group, args, ctx) do
group.avatar_url(only_path: false)
end
2019-07-31 22:56:46 +05:30
2019-12-26 22:10:19 +05:30
field :parent, GroupType, null: true,
description: 'Parent group',
2019-10-12 21:52:04 +05:30
resolve: -> (obj, _args, _ctx) { Gitlab::Graphql::Loaders::BatchModelLoader.new(Group, obj.parent_id).find }
2019-07-31 22:56:46 +05:30
end
end
2019-12-04 20:38:33 +05:30
Types::GroupType.prepend_if_ee('EE::Types::GroupType')