Commit db52f99a authored by Shinya Maeda's avatar Shinya Maeda

Merge branch 'cablett-graphql-project-fullpath' into 'master'

Tweak projectPath to specify fullPath

Closes #231272

See merge request gitlab-org/gitlab!37670
parents 63f1c564 fe751b45
...@@ -4006,7 +4006,7 @@ input EpicAddIssueInput { ...@@ -4006,7 +4006,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!
} }
......
...@@ -11161,7 +11161,7 @@ ...@@ -11161,7 +11161,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