Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
850dae0f
Commit
850dae0f
authored
Dec 01, 2020
by
charlie ablett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unneeded periods from GraphQL descriptions
- also id -> ID
parent
e733d1f4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
19 deletions
+19
-19
doc/api/graphql/reference/gitlab_schema.graphql
doc/api/graphql/reference/gitlab_schema.graphql
+6
-6
doc/api/graphql/reference/gitlab_schema.json
doc/api/graphql/reference/gitlab_schema.json
+6
-6
doc/api/graphql/reference/index.md
doc/api/graphql/reference/index.md
+1
-1
ee/app/graphql/mutations/boards/update.rb
ee/app/graphql/mutations/boards/update.rb
+6
-6
No files found.
doc/api/graphql/reference/gitlab_schema.graphql
View file @
850dae0f
...
@@ -22491,7 +22491,7 @@ Autogenerated input type of UpdateBoard
...
@@ -22491,7 +22491,7 @@ Autogenerated input type of UpdateBoard
"""
"""
input
UpdateBoardInput
{
input
UpdateBoardInput
{
"""
"""
The
id
of
user
to
be
assigned
to
the
board
.
The
id
of
user
to
be
assigned
to
the
board
"""
"""
assigneeId
:
UserID
assigneeId
:
UserID
...
@@ -22511,12 +22511,12 @@ input UpdateBoardInput {
...
@@ -22511,12 +22511,12 @@ input UpdateBoardInput {
hideClosedList
:
Boolean
hideClosedList
:
Boolean
"""
"""
The
board
global
id
.
The
board
global
ID
"""
"""
id
:
BoardID
!
id
:
BoardID
!
"""
"""
The
IDs
of
labels
to
be
added
to
the
board
.
The
IDs
of
labels
to
be
added
to
the
board
"""
"""
labelIds
:
[
LabelID
!]
labelIds
:
[
LabelID
!]
...
@@ -22526,7 +22526,7 @@ input UpdateBoardInput {
...
@@ -22526,7 +22526,7 @@ input UpdateBoardInput {
labels
:
[
String
!]
labels
:
[
String
!]
"""
"""
The
id
of
milestone
to
be
assigned
to
the
board
.
The
id
of
milestone
to
be
assigned
to
the
board
"""
"""
milestoneId
:
MilestoneID
milestoneId
:
MilestoneID
...
@@ -22536,7 +22536,7 @@ input UpdateBoardInput {
...
@@ -22536,7 +22536,7 @@ input UpdateBoardInput {
name
:
String
name
:
String
"""
"""
The
weight
value
to
be
assigned
to
the
board
.
The
weight
value
to
be
assigned
to
the
board
"""
"""
weight
:
Int
weight
:
Int
}
}
...
@@ -22591,7 +22591,7 @@ Autogenerated return type of UpdateBoard
...
@@ -22591,7 +22591,7 @@ Autogenerated return type of UpdateBoard
"""
"""
type
UpdateBoardPayload
{
type
UpdateBoardPayload
{
"""
"""
The
board
after
mutation
.
The
board
after
mutation
"""
"""
board
:
Board
board
:
Board
...
...
doc/api/graphql/reference/gitlab_schema.json
View file @
850dae0f
...
@@ -65686,7 +65686,7 @@
...
@@ -65686,7 +65686,7 @@
"inputFields": [
"inputFields": [
{
{
"name": "id",
"name": "id",
"description": "The board global
id.
",
"description": "The board global
ID
",
"type": {
"type": {
"kind": "NON_NULL",
"kind": "NON_NULL",
"name": null,
"name": null,
...
@@ -65730,7 +65730,7 @@
...
@@ -65730,7 +65730,7 @@
},
},
{
{
"name": "assigneeId",
"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": {
"type": {
"kind": "SCALAR",
"kind": "SCALAR",
"name": "UserID",
"name": "UserID",
...
@@ -65740,7 +65740,7 @@
...
@@ -65740,7 +65740,7 @@
},
},
{
{
"name": "milestoneId",
"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": {
"type": {
"kind": "SCALAR",
"kind": "SCALAR",
"name": "MilestoneID",
"name": "MilestoneID",
...
@@ -65750,7 +65750,7 @@
...
@@ -65750,7 +65750,7 @@
},
},
{
{
"name": "weight",
"name": "weight",
"description": "The weight value to be assigned to the board
.
",
"description": "The weight value to be assigned to the board",
"type": {
"type": {
"kind": "SCALAR",
"kind": "SCALAR",
"name": "Int",
"name": "Int",
...
@@ -65778,7 +65778,7 @@
...
@@ -65778,7 +65778,7 @@
},
},
{
{
"name": "labelIds",
"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": {
"type": {
"kind": "LIST",
"kind": "LIST",
"name": null,
"name": null,
...
@@ -65938,7 +65938,7 @@
...
@@ -65938,7 +65938,7 @@
"fields": [
"fields": [
{
{
"name": "board",
"name": "board",
"description": "The board after mutation
.
",
"description": "The board after mutation",
"args": [
"args": [
],
],
doc/api/graphql/reference/index.md
View file @
850dae0f
...
@@ -3405,7 +3405,7 @@ Autogenerated return type of UpdateBoard.
...
@@ -3405,7 +3405,7 @@ Autogenerated return type of UpdateBoard.
| Field | Type | Description |
| 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. |
|
`clientMutationId`
| String | A unique identifier for the client performing the mutation. |
|
`errors`
| String! => Array | Errors encountered during execution of the mutation. |
|
`errors`
| String! => Array | Errors encountered during execution of the mutation. |
...
...
ee/app/graphql/mutations/boards/update.rb
View file @
850dae0f
...
@@ -8,7 +8,7 @@ module Mutations
...
@@ -8,7 +8,7 @@ module Mutations
argument
:id
,
argument
:id
,
::
Types
::
GlobalIDType
[
::
Board
],
::
Types
::
GlobalIDType
[
::
Board
],
required:
true
,
required:
true
,
description:
'The board global
id.
'
description:
'The board global
ID
'
argument
:name
,
argument
:name
,
GraphQL
::
STRING_TYPE
,
GraphQL
::
STRING_TYPE
,
...
@@ -29,17 +29,17 @@ module Mutations
...
@@ -29,17 +29,17 @@ module Mutations
::
Types
::
GlobalIDType
[
::
User
],
::
Types
::
GlobalIDType
[
::
User
],
required:
false
,
required:
false
,
loads:
::
Types
::
UserType
,
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
,
argument
:milestone_id
,
::
Types
::
GlobalIDType
[
::
Milestone
],
::
Types
::
GlobalIDType
[
::
Milestone
],
required:
false
,
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
,
argument
:weight
,
GraphQL
::
INT_TYPE
,
GraphQL
::
INT_TYPE
,
required:
false
,
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
],
argument
:labels
,
[
GraphQL
::
STRING_TYPE
],
required:
false
,
required:
false
,
...
@@ -47,12 +47,12 @@ module Mutations
...
@@ -47,12 +47,12 @@ module Mutations
argument
:label_ids
,
[
::
Types
::
GlobalIDType
[
::
Label
]],
argument
:label_ids
,
[
::
Types
::
GlobalIDType
[
::
Label
]],
required:
false
,
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
,
field
:board
,
Types
::
BoardType
,
Types
::
BoardType
,
null:
true
,
null:
true
,
description:
"The board after mutation
.
"
description:
"The board after mutation"
authorize
:admin_board
authorize
:admin_board
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment