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

file_input_type.rb « snippets « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85a02c8f493ad5caba4d11c691297bae32072739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Types
  module Snippets
    class FileInputType < BaseInputObject # rubocop:disable Graphql/AuthorizeTypes
      graphql_name 'SnippetFileInputType'
      description 'Represents an action to perform over a snippet file'

      argument :action, Types::Snippets::FileInputActionEnum,
               description: 'Type of input action',
               required: true

      argument :previous_path, GraphQL::STRING_TYPE,
               description: 'Previous path of the snippet file',
               required: false

      argument :file_path, GraphQL::STRING_TYPE,
               description: 'Path of the snippet file',
               required: true

      argument :content, GraphQL::STRING_TYPE,
               description: 'Snippet file content',
               required: false
    end
  end
end