Commit fe751b45 authored by charlieablett's avatar charlieablett

Tweak projectPath to specify fullPath

- Clarify that project path should be the project's
fullPath rather than its relative path
parent 8214da07
...@@ -3991,7 +3991,7 @@ input EpicAddIssueInput { ...@@ -3991,7 +3991,7 @@ input EpicAddIssueInput {
issueIid: String! issueIid: String!
""" """
The project the issue belongs to The full path of the project the issue belongs to
""" """
projectPath: ID! projectPath: ID!
} }
......
...@@ -11115,7 +11115,7 @@ ...@@ -11115,7 +11115,7 @@
}, },
{ {
"name": "projectPath", "name": "projectPath",
"description": "The project the issue belongs to", "description": "The full path of the project the issue belongs to",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -11,7 +11,7 @@ module Mutations ...@@ -11,7 +11,7 @@ module Mutations
argument :project_path, GraphQL::ID_TYPE, argument :project_path, GraphQL::ID_TYPE,
required: true, required: true,
description: 'The project the issue belongs to' description: 'The full path of the project the issue belongs to'
argument :issue_iid, GraphQL::STRING_TYPE, argument :issue_iid, GraphQL::STRING_TYPE,
required: true, required: true,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment