Commit 4b5df619 authored by Mayra Cabrera's avatar Mayra Cabrera

Merge branch 'cablett-fix-graphql-description-fullstops' into 'master'

Remove unneeded periods from GraphQL descriptions

See merge request gitlab-org/gitlab!48876
parents 39f7bc82 850dae0f
......@@ -22506,7 +22506,7 @@ Autogenerated input type of UpdateBoard
"""
input UpdateBoardInput {
"""
The id of user to be assigned to the board.
The id of user to be assigned to the board
"""
assigneeId: UserID
......@@ -22526,12 +22526,12 @@ input UpdateBoardInput {
hideClosedList: Boolean
"""
The board global id.
The board global ID
"""
id: BoardID!
"""
The IDs of labels to be added to the board.
The IDs of labels to be added to the board
"""
labelIds: [LabelID!]
......@@ -22541,7 +22541,7 @@ input UpdateBoardInput {
labels: [String!]
"""
The id of milestone to be assigned to the board.
The id of milestone to be assigned to the board
"""
milestoneId: MilestoneID
......@@ -22551,7 +22551,7 @@ input UpdateBoardInput {
name: String
"""
The weight value to be assigned to the board.
The weight value to be assigned to the board
"""
weight: Int
}
......@@ -22606,7 +22606,7 @@ Autogenerated return type of UpdateBoard
"""
type UpdateBoardPayload {
"""
The board after mutation.
The board after mutation
"""
board: Board
......
......@@ -65786,7 +65786,7 @@
"inputFields": [
{
"name": "id",
"description": "The board global id.",
"description": "The board global ID",
"type": {
"kind": "NON_NULL",
"name": null,
......@@ -65830,7 +65830,7 @@
},
{
"name": "assigneeId",
"description": "The id of user to be assigned to the board.",
"description": "The id of user to be assigned to the board",
"type": {
"kind": "SCALAR",
"name": "UserID",
......@@ -65840,7 +65840,7 @@
},
{
"name": "milestoneId",
"description": "The id of milestone to be assigned to the board.",
"description": "The id of milestone to be assigned to the board",
"type": {
"kind": "SCALAR",
"name": "MilestoneID",
......@@ -65850,7 +65850,7 @@
},
{
"name": "weight",
"description": "The weight value to be assigned to the board.",
"description": "The weight value to be assigned to the board",
"type": {
"kind": "SCALAR",
"name": "Int",
......@@ -65878,7 +65878,7 @@
},
{
"name": "labelIds",
"description": "The IDs of labels to be added to the board.",
"description": "The IDs of labels to be added to the board",
"type": {
"kind": "LIST",
"name": null,
......@@ -66038,7 +66038,7 @@
"fields": [
{
"name": "board",
"description": "The board after mutation.",
"description": "The board after mutation",
"args": [
],
......@@ -3425,7 +3425,7 @@ Autogenerated return type of UpdateBoard.
| Field | Type | Description |
| ----- | ---- | ----------- |
| `board` | Board | The board after mutation. |
| `board` | Board | The board after mutation |
| `clientMutationId` | String | A unique identifier for the client performing the mutation. |
| `errors` | String! => Array | Errors encountered during execution of the mutation. |
......
......@@ -8,7 +8,7 @@ module Mutations
argument :id,
::Types::GlobalIDType[::Board],
required: true,
description: 'The board global id.'
description: 'The board global ID'
argument :name,
GraphQL::STRING_TYPE,
......@@ -29,17 +29,17 @@ module Mutations
::Types::GlobalIDType[::User],
required: false,
loads: ::Types::UserType,
description: 'The id of user to be assigned to the board.'
description: 'The id of user to be assigned to the board'
argument :milestone_id,
::Types::GlobalIDType[::Milestone],
required: false,
description: 'The id of milestone to be assigned to the board.'
description: 'The id of milestone to be assigned to the board'
argument :weight,
GraphQL::INT_TYPE,
required: false,
description: 'The weight value to be assigned to the board.'
description: 'The weight value to be assigned to the board'
argument :labels, [GraphQL::STRING_TYPE],
required: false,
......@@ -47,12 +47,12 @@ module Mutations
argument :label_ids, [::Types::GlobalIDType[::Label]],
required: false,
description: 'The IDs of labels to be added to the board.'
description: 'The IDs of labels to be added to the board'
field :board,
Types::BoardType,
null: true,
description: "The board after mutation."
description: "The board after mutation"
authorize :admin_board
......
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