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/diff_type.rb')
-rw-r--r--app/graphql/types/diff_type.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/graphql/types/diff_type.rb b/app/graphql/types/diff_type.rb
new file mode 100644
index 00000000000..1c67c8c645a
--- /dev/null
+++ b/app/graphql/types/diff_type.rb
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+
+module Types
+ # rubocop: disable Graphql/AuthorizeTypes
+ class DiffType < BaseObject
+ graphql_name 'Diff'
+
+ field :a_mode, GraphQL::Types::String, null: true,
+ description: 'Old file mode of the file.'
+ field :b_mode, GraphQL::Types::String, null: true,
+ description: 'New file mode of the file.'
+ field :deleted_file, GraphQL::Types::String, null: true,
+ description: 'Indicates if the file has been removed. '
+ field :diff, GraphQL::Types::String, null: true,
+ description: 'Diff representation of the changes made to the file.'
+ field :new_file, GraphQL::Types::String, null: true,
+ description: 'Indicates if the file has just been added. '
+ field :new_path, GraphQL::Types::String, null: true,
+ description: 'New path of the file.'
+ field :old_path, GraphQL::Types::String, null: true,
+ description: 'Old path of the file.'
+ field :renamed_file, GraphQL::Types::String, null: true,
+ description: 'Indicates if the file has been renamed.'
+ end
+ # rubocop: enable Graphql/AuthorizeTypes
+end