2020-11-10 19:08:58 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Releases
|
|
|
|
class Base < BaseMutation
|
2021-01-26 13:09:30 -05:00
|
|
|
include FindsProject
|
2020-11-10 19:08:58 -05:00
|
|
|
|
|
|
|
argument :project_path, GraphQL::ID_TYPE,
|
|
|
|
required: true,
|
2021-01-07 07:10:24 -05:00
|
|
|
description: 'Full path of the project the release is associated with.'
|
2020-11-10 19:08:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|