summaryrefslogtreecommitdiff
path: root/app/graphql/types/diff_paths_input_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/diff_paths_input_type.rb')
-rw-r--r--app/graphql/types/diff_paths_input_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/diff_paths_input_type.rb b/app/graphql/types/diff_paths_input_type.rb
index d148b7656eb..e1d3d58411c 100644
--- a/app/graphql/types/diff_paths_input_type.rb
+++ b/app/graphql/types/diff_paths_input_type.rb
@@ -2,9 +2,9 @@
module Types
class DiffPathsInputType < BaseInputObject
- argument :old_path, GraphQL::STRING_TYPE, required: false,
+ argument :old_path, GraphQL::Types::String, required: false,
description: 'The path of the file on the start sha.'
- argument :new_path, GraphQL::STRING_TYPE, required: false,
+ argument :new_path, GraphQL::Types::String, required: false,
description: 'The path of the file on the head sha.'
end
end