Commit f1d8a197 authored by charlie ablett's avatar charlie ablett

Fix group mutation descriptions

parent 5c066e9c
...@@ -9,11 +9,11 @@ module Mutations ...@@ -9,11 +9,11 @@ module Mutations
included do included do
argument :project_path, GraphQL::ID_TYPE, argument :project_path, GraphQL::ID_TYPE,
required: false, required: false,
description: 'The project full path the resource is associated with.' description: 'Full path of the project with which the resource is associated.'
argument :group_path, GraphQL::ID_TYPE, argument :group_path, GraphQL::ID_TYPE,
required: false, required: false,
description: 'The group full path the resource is associated with.' description: 'Full path of the group with which the resource is associated.'
end end
def ready?(**args) def ready?(**args)
......
...@@ -4500,7 +4500,7 @@ input CreateBoardInput { ...@@ -4500,7 +4500,7 @@ input CreateBoardInput {
clientMutationId: String clientMutationId: String
""" """
The group full path the resource is associated with. Full path of the group with which the resource is associated.
""" """
groupPath: ID groupPath: ID
...@@ -4540,7 +4540,7 @@ input CreateBoardInput { ...@@ -4540,7 +4540,7 @@ input CreateBoardInput {
name: String name: String
""" """
The project full path the resource is associated with. Full path of the project with which the resource is associated.
""" """
projectPath: ID projectPath: ID
...@@ -13903,12 +13903,12 @@ input LabelCreateInput { ...@@ -13903,12 +13903,12 @@ input LabelCreateInput {
description: String description: String
""" """
The group full path the resource is associated with. Full path of the group with which the resource is associated.
""" """
groupPath: ID groupPath: ID
""" """
The project full path the resource is associated with. Full path of the project with which the resource is associated.
""" """
projectPath: ID projectPath: ID
......
...@@ -12224,7 +12224,7 @@ ...@@ -12224,7 +12224,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "projectPath", "name": "projectPath",
"description": "The project full path the resource is associated with.", "description": "Full path of the project with which the resource is associated.",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "ID",
...@@ -12234,7 +12234,7 @@ ...@@ -12234,7 +12234,7 @@
}, },
{ {
"name": "groupPath", "name": "groupPath",
"description": "The group full path the resource is associated with.", "description": "Full path of the group with which the resource is associated.",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "ID",
...@@ -38140,7 +38140,7 @@ ...@@ -38140,7 +38140,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "projectPath", "name": "projectPath",
"description": "The project full path the resource is associated with.", "description": "Full path of the project with which the resource is associated.",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "ID",
...@@ -38150,7 +38150,7 @@ ...@@ -38150,7 +38150,7 @@
}, },
{ {
"name": "groupPath", "name": "groupPath",
"description": "The group full path the resource is associated with.", "description": "Full path of the group with which the resource is associated.",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "ID",
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