summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/pages/base.rb
blob: 5eb8ecdf0bacb16e2d9fa5b18cff8c8a12e31e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Mutations
  module Pages
    class Base < BaseMutation
      include FindsProject

      argument :project_path, GraphQL::Types::ID,
        required: true,
        description: 'Full path of the project.'
    end
  end
end