Commit c15078ae authored by Nick Thomas's avatar Nick Thomas

Merge branch 'cablett-graphl-fullstops' into 'master'

Remove fullstops (periods) from graphql descriptions

See merge request gitlab-org/gitlab!49069
parents c8202729 aa8db60c
...@@ -1230,12 +1230,12 @@ Represents a project or group board ...@@ -1230,12 +1230,12 @@ Represents a project or group board
""" """
type Board { type Board {
""" """
The board assignee. The board assignee
""" """
assignee: User assignee: User
""" """
Epics associated with board issues. Epics associated with board issues
""" """
epics( epics(
""" """
...@@ -1265,12 +1265,12 @@ type Board { ...@@ -1265,12 +1265,12 @@ type Board {
): BoardEpicConnection ): BoardEpicConnection
""" """
Whether or not backlog list is hidden. Whether or not backlog list is hidden
""" """
hideBacklogList: Boolean hideBacklogList: Boolean
""" """
Whether or not closed list is hidden. Whether or not closed list is hidden
""" """
hideClosedList: Boolean hideClosedList: Boolean
...@@ -1340,7 +1340,7 @@ type Board { ...@@ -1340,7 +1340,7 @@ type Board {
): BoardListConnection ): BoardListConnection
""" """
The board milestone. The board milestone
""" """
milestone: Milestone milestone: Milestone
...@@ -1350,7 +1350,7 @@ type Board { ...@@ -1350,7 +1350,7 @@ type Board {
name: String name: String
""" """
Weight of the board. Weight of the board
""" """
weight: Int weight: Int
} }
...@@ -22658,12 +22658,12 @@ input UpdateBoardInput { ...@@ -22658,12 +22658,12 @@ input UpdateBoardInput {
clientMutationId: String clientMutationId: String
""" """
Whether or not backlog list is hidden. Whether or not backlog list is hidden
""" """
hideBacklogList: Boolean hideBacklogList: Boolean
""" """
Whether or not closed list is hidden. Whether or not closed list is hidden
""" """
hideClosedList: Boolean hideClosedList: Boolean
......
...@@ -3305,7 +3305,7 @@ ...@@ -3305,7 +3305,7 @@
"fields": [ "fields": [
{ {
"name": "assignee", "name": "assignee",
"description": "The board assignee.", "description": "The board assignee",
"args": [ "args": [
], ],
...@@ -3319,7 +3319,7 @@ ...@@ -3319,7 +3319,7 @@
}, },
{ {
"name": "epics", "name": "epics",
"description": "Epics associated with board issues.", "description": "Epics associated with board issues",
"args": [ "args": [
{ {
"name": "issueFilters", "name": "issueFilters",
...@@ -3382,7 +3382,7 @@ ...@@ -3382,7 +3382,7 @@
}, },
{ {
"name": "hideBacklogList", "name": "hideBacklogList",
"description": "Whether or not backlog list is hidden.", "description": "Whether or not backlog list is hidden",
"args": [ "args": [
], ],
...@@ -3396,7 +3396,7 @@ ...@@ -3396,7 +3396,7 @@
}, },
{ {
"name": "hideClosedList", "name": "hideClosedList",
"description": "Whether or not closed list is hidden.", "description": "Whether or not closed list is hidden",
"args": [ "args": [
], ],
...@@ -3554,7 +3554,7 @@ ...@@ -3554,7 +3554,7 @@
}, },
{ {
"name": "milestone", "name": "milestone",
"description": "The board milestone.", "description": "The board milestone",
"args": [ "args": [
], ],
...@@ -3582,7 +3582,7 @@ ...@@ -3582,7 +3582,7 @@
}, },
{ {
"name": "weight", "name": "weight",
"description": "Weight of the board.", "description": "Weight of the board",
"args": [ "args": [
], ],
...@@ -66126,7 +66126,7 @@ ...@@ -66126,7 +66126,7 @@
}, },
{ {
"name": "hideBacklogList", "name": "hideBacklogList",
"description": "Whether or not backlog list is hidden.", "description": "Whether or not backlog list is hidden",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "Boolean", "name": "Boolean",
...@@ -66136,7 +66136,7 @@ ...@@ -66136,7 +66136,7 @@
}, },
{ {
"name": "hideClosedList", "name": "hideClosedList",
"description": "Whether or not closed list is hidden.", "description": "Whether or not closed list is hidden",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "Boolean", "name": "Boolean",
...@@ -236,16 +236,16 @@ Represents a project or group board. ...@@ -236,16 +236,16 @@ Represents a project or group board.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
| `assignee` | User | The board assignee. | | `assignee` | User | The board assignee |
| `epics` | BoardEpicConnection | Epics associated with board issues. | | `epics` | BoardEpicConnection | Epics associated with board issues |
| `hideBacklogList` | Boolean | Whether or not backlog list is hidden. | | `hideBacklogList` | Boolean | Whether or not backlog list is hidden |
| `hideClosedList` | Boolean | Whether or not closed list is hidden. | | `hideClosedList` | Boolean | Whether or not closed list is hidden |
| `id` | ID! | ID (global ID) of the board | | `id` | ID! | ID (global ID) of the board |
| `labels` | LabelConnection | Labels of the board | | `labels` | LabelConnection | Labels of the board |
| `lists` | BoardListConnection | Lists 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 | | `name` | String | Name of the board |
| `weight` | Int | Weight of the board. | | `weight` | Int | Weight of the board |
### BoardEpic ### BoardEpic
......
...@@ -7,27 +7,27 @@ module EE ...@@ -7,27 +7,27 @@ module EE
prepended do prepended do
field :assignee, type: ::Types::UserType, null: true, field :assignee, type: ::Types::UserType, null: true,
description: 'The board assignee.' description: 'The board assignee'
field :epics, ::Types::Boards::BoardEpicType.connection_type, null: true, 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, resolver: ::Resolvers::BoardGroupings::EpicsResolver,
complexity: 5 complexity: 5
field :hide_backlog_list, type: GraphQL::BOOLEAN_TYPE, null: true, 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, 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, field :labels, ::Types::LabelType.connection_type, null: true,
description: 'Labels of the board' description: 'Labels of the board'
field :milestone, type: ::Types::MilestoneType, null: true, field :milestone, type: ::Types::MilestoneType, null: true,
description: 'The board milestone.' description: 'The board milestone'
field :weight, type: GraphQL::INT_TYPE, null: true, field :weight, type: GraphQL::INT_TYPE, null: true,
description: 'Weight of the board.' description: 'Weight of the board'
end end
end end
end end
......
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