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
0b15f2c5
Commit
0b15f2c5
authored
Dec 03, 2020
by
charlie ablett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove fullstops from graphql descriptions
- update generated docs
parent
ab6a20b5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
30 deletions
+30
-30
doc/api/graphql/reference/gitlab_schema.graphql
doc/api/graphql/reference/gitlab_schema.graphql
+9
-9
doc/api/graphql/reference/gitlab_schema.json
doc/api/graphql/reference/gitlab_schema.json
+9
-9
doc/api/graphql/reference/index.md
doc/api/graphql/reference/index.md
+6
-6
ee/app/graphql/ee/types/board_type.rb
ee/app/graphql/ee/types/board_type.rb
+6
-6
No files found.
doc/api/graphql/reference/gitlab_schema.graphql
View file @
0b15f2c5
...
...
@@ -1230,12 +1230,12 @@ Represents a project or group board
"""
type
Board
{
"""
The
board
assignee
.
The
board
assignee
"""
assignee
:
User
"""
Epics
associated
with
board
issues
.
Epics
associated
with
board
issues
"""
epics
(
"""
...
...
@@ -1265,12 +1265,12 @@ type Board {
):
BoardEpicConnection
"""
Whether
or
not
backlog
list
is
hidden
.
Whether
or
not
backlog
list
is
hidden
"""
hideBacklogList
:
Boolean
"""
Whether
or
not
closed
list
is
hidden
.
Whether
or
not
closed
list
is
hidden
"""
hideClosedList
:
Boolean
...
...
@@ -1340,7 +1340,7 @@ type Board {
):
BoardListConnection
"""
The
board
milestone
.
The
board
milestone
"""
milestone
:
Milestone
...
...
@@ -1350,7 +1350,7 @@ type Board {
name
:
String
"""
Weight
of
the
board
.
Weight
of
the
board
"""
weight
:
Int
}
...
...
@@ -22576,12 +22576,12 @@ input UpdateBoardInput {
clientMutationId
:
String
"""
Whether
or
not
backlog
list
is
hidden
.
Whether
or
not
backlog
list
is
hidden
"""
hideBacklogList
:
Boolean
"""
Whether
or
not
closed
list
is
hidden
.
Whether
or
not
closed
list
is
hidden
"""
hideClosedList
:
Boolean
...
...
@@ -24822,4 +24822,4 @@ type VulnerableProjectsByGrade {
"""
last
:
Int
):
ProjectConnection
!
}
\ No newline at end of file
}
doc/api/graphql/reference/gitlab_schema.json
View file @
0b15f2c5
...
...
@@ -3305,7 +3305,7 @@
"fields": [
{
"name": "assignee",
"description": "The board assignee
.
",
"description": "The board assignee",
"args": [
],
...
...
@@ -3319,7 +3319,7 @@
},
{
"name": "epics",
"description": "Epics associated with board issues
.
",
"description": "Epics associated with board issues",
"args": [
{
"name": "issueFilters",
...
...
@@ -3382,7 +3382,7 @@
},
{
"name": "hideBacklogList",
"description": "Whether or not backlog list is hidden
.
",
"description": "Whether or not backlog list is hidden",
"args": [
],
...
...
@@ -3396,7 +3396,7 @@
},
{
"name": "hideClosedList",
"description": "Whether or not closed list is hidden
.
",
"description": "Whether or not closed list is hidden",
"args": [
],
...
...
@@ -3554,7 +3554,7 @@
},
{
"name": "milestone",
"description": "The board milestone
.
",
"description": "The board milestone",
"args": [
],
...
...
@@ -3582,7 +3582,7 @@
},
{
"name": "weight",
"description": "Weight of the board
.
",
"description": "Weight of the board",
"args": [
],
...
...
@@ -65924,7 +65924,7 @@
},
{
"name": "hideBacklogList",
"description": "Whether or not backlog list is hidden
.
",
"description": "Whether or not backlog list is hidden",
"type": {
"kind": "SCALAR",
"name": "Boolean",
...
...
@@ -65934,7 +65934,7 @@
},
{
"name": "hideClosedList",
"description": "Whether or not closed list is hidden
.
",
"description": "Whether or not closed list is hidden",
"type": {
"kind": "SCALAR",
"name": "Boolean",
...
...
@@ -73147,4 +73147,4 @@
]
}
}
}
\ No newline at end of file
}
doc/api/graphql/reference/index.md
View file @
0b15f2c5
...
...
@@ -236,16 +236,16 @@ Represents a project or group board.
| Field | Type | Description |
| ----- | ---- | ----------- |
|
`assignee`
| User | The board assignee
.
|
|
`epics`
| BoardEpicConnection | Epics associated with board issues
.
|
|
`hideBacklogList`
| Boolean | Whether or not backlog list is hidden
.
|
|
`hideClosedList`
| Boolean | Whether or not closed list is hidden
.
|
|
`assignee`
| User | The board assignee |
|
`epics`
| BoardEpicConnection | Epics associated with board issues |
|
`hideBacklogList`
| Boolean | Whether or not backlog list is hidden |
|
`hideClosedList`
| Boolean | Whether or not closed list is hidden |
|
`id`
| ID! | ID (global ID) of the board |
|
`labels`
| LabelConnection | Labels of the board |
|
`lists`
| BoardListConnection | Lists of the board |
|
`milestone`
| Milestone | The board milestone
.
|
|
`milestone`
| Milestone | The board milestone |
|
`name`
| String | Name of the board |
|
`weight`
| Int | Weight of the board
.
|
|
`weight`
| Int | Weight of the board |
### BoardEpic
...
...
ee/app/graphql/ee/types/board_type.rb
View file @
0b15f2c5
...
...
@@ -7,27 +7,27 @@ module EE
prepended
do
field
:assignee
,
type:
::
Types
::
UserType
,
null:
true
,
description:
'The board assignee
.
'
description:
'The board assignee'
field
:epics
,
::
Types
::
Boards
::
BoardEpicType
.
connection_type
,
null:
true
,
description:
'Epics associated with board issues
.
'
,
description:
'Epics associated with board issues'
,
resolver:
::
Resolvers
::
BoardGroupings
::
EpicsResolver
,
complexity:
5
field
:hide_backlog_list
,
type:
GraphQL
::
BOOLEAN_TYPE
,
null:
true
,
description:
'Whether or not backlog list is hidden
.
'
description:
'Whether or not backlog list is hidden'
field
:hide_closed_list
,
type:
GraphQL
::
BOOLEAN_TYPE
,
null:
true
,
description:
'Whether or not closed list is hidden
.
'
description:
'Whether or not closed list is hidden'
field
:labels
,
::
Types
::
LabelType
.
connection_type
,
null:
true
,
description:
'Labels of the board'
field
:milestone
,
type:
::
Types
::
MilestoneType
,
null:
true
,
description:
'The board milestone
.
'
description:
'The board milestone'
field
:weight
,
type:
GraphQL
::
INT_TYPE
,
null:
true
,
description:
'Weight of the board
.
'
description:
'Weight of the board'
end
end
end
...
...
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