13 lines
262 B
Ruby
13 lines
262 B
Ruby
# 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
|