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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/blame/groups_type.rb')
-rw-r--r--app/graphql/types/blame/groups_type.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/graphql/types/blame/groups_type.rb b/app/graphql/types/blame/groups_type.rb
new file mode 100644
index 00000000000..754f3f95364
--- /dev/null
+++ b/app/graphql/types/blame/groups_type.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+module Types
+ module Blame
+ # rubocop: disable Graphql/AuthorizeTypes
+ class GroupsType < BaseObject
+ # This is presented through `Repository` that has its own authorization
+ graphql_name 'Groups'
+
+ field :commit, Types::CommitType, null: false, description: 'Commit responsible for specified group.'
+ field :commit_data, Types::Blame::CommitDataType, null: true,
+ description: 'HTML data derived from commit needed to present blame.', calls_gitaly: true
+ field :lineno, GraphQL::Types::Int, null: false, description: 'Starting line number for the commit group.'
+ field :lines, [GraphQL::Types::String], null: false, description: 'Array of lines added for the commit group.'
+ field :span, GraphQL::Types::Int, null: false,
+ description: 'Number of contiguous lines which the blame spans for the commit group.'
+ end
+ # rubocop: enable Graphql/AuthorizeTypes
+ end
+end