Commit e1186959 authored by charlieablett's avatar charlieablett

Make descriptions consistent

For boolean values, as much as possible, try to frame it as
'what does this field do?'

e.g. 'Indicates repository has a Git repository'
parent a5b6245d
...@@ -5,10 +5,9 @@ module Mutations ...@@ -5,10 +5,9 @@ module Mutations
class Toggle < Base class Toggle < Base
graphql_name 'ToggleAwardEmoji' graphql_name 'ToggleAwardEmoji'
field :toggledOn, field :toggledOn, GraphQL::BOOLEAN_TYPE, null: false,
GraphQL::BOOLEAN_TYPE, description: 'Indicates the status of the emoji. ' \
null: false, 'True if the toggle awarded the emoji, and false if the toggle removed the emoji.'
description: 'True when the emoji was awarded, false when it was removed'
def resolve(args) def resolve(args)
awardable = authorized_find!(id: args[:awardable_id]) awardable = authorized_find!(id: args[:awardable_id])
......
...@@ -69,7 +69,7 @@ module Types ...@@ -69,7 +69,7 @@ module Types
field :participants, Types::UserType.connection_type, null: true, complexity: 5, field :participants, Types::UserType.connection_type, null: true, complexity: 5,
description: 'List of participants in the issue' description: 'List of participants in the issue'
field :subscribed, GraphQL::BOOLEAN_TYPE, method: :subscribed?, null: false, complexity: 5, field :subscribed, GraphQL::BOOLEAN_TYPE, method: :subscribed?, null: false, complexity: 5,
description: 'Boolean flag for whether the currently logged in user is subscribed to this issue' description: 'Indicates the currently logged in user is subscribed to the issue'
field :time_estimate, GraphQL::INT_TYPE, null: false, field :time_estimate, GraphQL::INT_TYPE, null: false,
description: 'Time estimate of the issue' description: 'Time estimate of the issue'
field :total_time_spent, GraphQL::INT_TYPE, null: false, field :total_time_spent, GraphQL::INT_TYPE, null: false,
......
...@@ -25,7 +25,7 @@ module Types ...@@ -25,7 +25,7 @@ module Types
kword_args = kword_args.reverse_merge( kword_args = kword_args.reverse_merge(
name: name, name: name,
type: GraphQL::BOOLEAN_TYPE, type: GraphQL::BOOLEAN_TYPE,
description: "Whether or not a user can perform `#{name}` on this resource", description: "Indicates the user can perform `#{name}` on this resource",
null: false) null: false)
field(**kword_args) # rubocop:disable Graphql/Descriptions field(**kword_args) # rubocop:disable Graphql/Descriptions
......
...@@ -46,7 +46,7 @@ module Types ...@@ -46,7 +46,7 @@ module Types
description: 'Timestamp of the project last activity' description: 'Timestamp of the project last activity'
field :archived, GraphQL::BOOLEAN_TYPE, null: true, field :archived, GraphQL::BOOLEAN_TYPE, null: true,
description: 'Archived status of the project' description: 'Indicates the archived status of the project'
field :visibility, GraphQL::STRING_TYPE, null: true, field :visibility, GraphQL::STRING_TYPE, null: true,
description: 'Visibility of the project' description: 'Visibility of the project'
......
...@@ -1668,7 +1668,7 @@ type Epic implements Noteable { ...@@ -1668,7 +1668,7 @@ type Epic implements Noteable {
state: EpicState! state: EpicState!
""" """
Boolean flag for whether the currently logged in user is subscribed to this epic Indicates the currently logged in user is subscribed to the epic
""" """
subscribed: Boolean! subscribed: Boolean!
...@@ -1984,7 +1984,7 @@ type EpicIssue implements Noteable { ...@@ -1984,7 +1984,7 @@ type EpicIssue implements Noteable {
state: IssueState! state: IssueState!
""" """
Boolean flag for whether the currently logged in user is subscribed to this issue Indicates the currently logged in user is subscribed to the issue
""" """
subscribed: Boolean! subscribed: Boolean!
...@@ -2089,42 +2089,42 @@ Check permissions for the current user on an epic ...@@ -2089,42 +2089,42 @@ Check permissions for the current user on an epic
""" """
type EpicPermissions { type EpicPermissions {
""" """
Whether or not a user can perform `admin_epic` on this resource Indicates the user can perform `admin_epic` on this resource
""" """
adminEpic: Boolean! adminEpic: Boolean!
""" """
Whether or not a user can perform `award_emoji` on this resource Indicates the user can perform `award_emoji` on this resource
""" """
awardEmoji: Boolean! awardEmoji: Boolean!
""" """
Whether or not a user can perform `create_epic` on this resource Indicates the user can perform `create_epic` on this resource
""" """
createEpic: Boolean! createEpic: Boolean!
""" """
Whether or not a user can perform `create_note` on this resource Indicates the user can perform `create_note` on this resource
""" """
createNote: Boolean! createNote: Boolean!
""" """
Whether or not a user can perform `destroy_epic` on this resource Indicates the user can perform `destroy_epic` on this resource
""" """
destroyEpic: Boolean! destroyEpic: Boolean!
""" """
Whether or not a user can perform `read_epic` on this resource Indicates the user can perform `read_epic` on this resource
""" """
readEpic: Boolean! readEpic: Boolean!
""" """
Whether or not a user can perform `read_epic_iid` on this resource Indicates the user can perform `read_epic_iid` on this resource
""" """
readEpicIid: Boolean! readEpicIid: Boolean!
""" """
Whether or not a user can perform `update_epic` on this resource Indicates the user can perform `update_epic` on this resource
""" """
updateEpic: Boolean! updateEpic: Boolean!
} }
...@@ -2553,7 +2553,7 @@ type Group { ...@@ -2553,7 +2553,7 @@ type Group {
type GroupPermissions { type GroupPermissions {
""" """
Whether or not a user can perform `read_group` on this resource Indicates the user can perform `read_group` on this resource
""" """
readGroup: Boolean! readGroup: Boolean!
} }
...@@ -2784,7 +2784,7 @@ type Issue implements Noteable { ...@@ -2784,7 +2784,7 @@ type Issue implements Noteable {
state: IssueState! state: IssueState!
""" """
Boolean flag for whether the currently logged in user is subscribed to this issue Indicates the currently logged in user is subscribed to the issue
""" """
subscribed: Boolean! subscribed: Boolean!
...@@ -2889,42 +2889,42 @@ Check permissions for the current user on a issue ...@@ -2889,42 +2889,42 @@ Check permissions for the current user on a issue
""" """
type IssuePermissions { type IssuePermissions {
""" """
Whether or not a user can perform `admin_issue` on this resource Indicates the user can perform `admin_issue` on this resource
""" """
adminIssue: Boolean! adminIssue: Boolean!
""" """
Whether or not a user can perform `create_design` on this resource Indicates the user can perform `create_design` on this resource
""" """
createDesign: Boolean! createDesign: Boolean!
""" """
Whether or not a user can perform `create_note` on this resource Indicates the user can perform `create_note` on this resource
""" """
createNote: Boolean! createNote: Boolean!
""" """
Whether or not a user can perform `destroy_design` on this resource Indicates the user can perform `destroy_design` on this resource
""" """
destroyDesign: Boolean! destroyDesign: Boolean!
""" """
Whether or not a user can perform `read_design` on this resource Indicates the user can perform `read_design` on this resource
""" """
readDesign: Boolean! readDesign: Boolean!
""" """
Whether or not a user can perform `read_issue` on this resource Indicates the user can perform `read_issue` on this resource
""" """
readIssue: Boolean! readIssue: Boolean!
""" """
Whether or not a user can perform `reopen_issue` on this resource Indicates the user can perform `reopen_issue` on this resource
""" """
reopenIssue: Boolean! reopenIssue: Boolean!
""" """
Whether or not a user can perform `update_issue` on this resource Indicates the user can perform `update_issue` on this resource
""" """
updateIssue: Boolean! updateIssue: Boolean!
} }
...@@ -3682,42 +3682,42 @@ Check permissions for the current user on a merge request ...@@ -3682,42 +3682,42 @@ Check permissions for the current user on a merge request
""" """
type MergeRequestPermissions { type MergeRequestPermissions {
""" """
Whether or not a user can perform `admin_merge_request` on this resource Indicates the user can perform `admin_merge_request` on this resource
""" """
adminMergeRequest: Boolean! adminMergeRequest: Boolean!
""" """
Whether or not a user can perform `cherry_pick_on_current_merge_request` on this resource Indicates the user can perform `cherry_pick_on_current_merge_request` on this resource
""" """
cherryPickOnCurrentMergeRequest: Boolean! cherryPickOnCurrentMergeRequest: Boolean!
""" """
Whether or not a user can perform `create_note` on this resource Indicates the user can perform `create_note` on this resource
""" """
createNote: Boolean! createNote: Boolean!
""" """
Whether or not a user can perform `push_to_source_branch` on this resource Indicates the user can perform `push_to_source_branch` on this resource
""" """
pushToSourceBranch: Boolean! pushToSourceBranch: Boolean!
""" """
Whether or not a user can perform `read_merge_request` on this resource Indicates the user can perform `read_merge_request` on this resource
""" """
readMergeRequest: Boolean! readMergeRequest: Boolean!
""" """
Whether or not a user can perform `remove_source_branch` on this resource Indicates the user can perform `remove_source_branch` on this resource
""" """
removeSourceBranch: Boolean! removeSourceBranch: Boolean!
""" """
Whether or not a user can perform `revert_on_current_merge_request` on this resource Indicates the user can perform `revert_on_current_merge_request` on this resource
""" """
revertOnCurrentMergeRequest: Boolean! revertOnCurrentMergeRequest: Boolean!
""" """
Whether or not a user can perform `update_merge_request` on this resource Indicates the user can perform `update_merge_request` on this resource
""" """
updateMergeRequest: Boolean! updateMergeRequest: Boolean!
} }
...@@ -4330,27 +4330,27 @@ type NoteEdge { ...@@ -4330,27 +4330,27 @@ type NoteEdge {
type NotePermissions { type NotePermissions {
""" """
Whether or not a user can perform `admin_note` on this resource Indicates the user can perform `admin_note` on this resource
""" """
adminNote: Boolean! adminNote: Boolean!
""" """
Whether or not a user can perform `award_emoji` on this resource Indicates the user can perform `award_emoji` on this resource
""" """
awardEmoji: Boolean! awardEmoji: Boolean!
""" """
Whether or not a user can perform `create_note` on this resource Indicates the user can perform `create_note` on this resource
""" """
createNote: Boolean! createNote: Boolean!
""" """
Whether or not a user can perform `read_note` on this resource Indicates the user can perform `read_note` on this resource
""" """
readNote: Boolean! readNote: Boolean!
""" """
Whether or not a user can perform `resolve_note` on this resource Indicates the user can perform `resolve_note` on this resource
""" """
resolveNote: Boolean! resolveNote: Boolean!
} }
...@@ -4542,17 +4542,17 @@ type PipelineEdge { ...@@ -4542,17 +4542,17 @@ type PipelineEdge {
type PipelinePermissions { type PipelinePermissions {
""" """
Whether or not a user can perform `admin_pipeline` on this resource Indicates the user can perform `admin_pipeline` on this resource
""" """
adminPipeline: Boolean! adminPipeline: Boolean!
""" """
Whether or not a user can perform `destroy_pipeline` on this resource Indicates the user can perform `destroy_pipeline` on this resource
""" """
destroyPipeline: Boolean! destroyPipeline: Boolean!
""" """
Whether or not a user can perform `update_pipeline` on this resource Indicates the user can perform `update_pipeline` on this resource
""" """
updatePipeline: Boolean! updatePipeline: Boolean!
} }
...@@ -4573,7 +4573,7 @@ enum PipelineStatusEnum { ...@@ -4573,7 +4573,7 @@ enum PipelineStatusEnum {
type Project { type Project {
""" """
Archived status of the project Indicates the archived status of the project
""" """
archived: Boolean archived: Boolean
...@@ -5108,207 +5108,207 @@ type ProjectEdge { ...@@ -5108,207 +5108,207 @@ type ProjectEdge {
type ProjectPermissions { type ProjectPermissions {
""" """
Whether or not a user can perform `admin_operations` on this resource Indicates the user can perform `admin_operations` on this resource
""" """
adminOperations: Boolean! adminOperations: Boolean!
""" """
Whether or not a user can perform `admin_project` on this resource Indicates the user can perform `admin_project` on this resource
""" """
adminProject: Boolean! adminProject: Boolean!
""" """
Whether or not a user can perform `admin_remote_mirror` on this resource Indicates the user can perform `admin_remote_mirror` on this resource
""" """
adminRemoteMirror: Boolean! adminRemoteMirror: Boolean!
""" """
Whether or not a user can perform `admin_wiki` on this resource Indicates the user can perform `admin_wiki` on this resource
""" """
adminWiki: Boolean! adminWiki: Boolean!
""" """
Whether or not a user can perform `archive_project` on this resource Indicates the user can perform `archive_project` on this resource
""" """
archiveProject: Boolean! archiveProject: Boolean!
""" """
Whether or not a user can perform `change_namespace` on this resource Indicates the user can perform `change_namespace` on this resource
""" """
changeNamespace: Boolean! changeNamespace: Boolean!
""" """
Whether or not a user can perform `change_visibility_level` on this resource Indicates the user can perform `change_visibility_level` on this resource
""" """
changeVisibilityLevel: Boolean! changeVisibilityLevel: Boolean!
""" """
Whether or not a user can perform `create_deployment` on this resource Indicates the user can perform `create_deployment` on this resource
""" """
createDeployment: Boolean! createDeployment: Boolean!
""" """
Whether or not a user can perform `create_design` on this resource Indicates the user can perform `create_design` on this resource
""" """
createDesign: Boolean! createDesign: Boolean!
""" """
Whether or not a user can perform `create_issue` on this resource Indicates the user can perform `create_issue` on this resource
""" """
createIssue: Boolean! createIssue: Boolean!
""" """
Whether or not a user can perform `create_label` on this resource Indicates the user can perform `create_label` on this resource
""" """
createLabel: Boolean! createLabel: Boolean!
""" """
Whether or not a user can perform `create_merge_request_from` on this resource Indicates the user can perform `create_merge_request_from` on this resource
""" """
createMergeRequestFrom: Boolean! createMergeRequestFrom: Boolean!
""" """
Whether or not a user can perform `create_merge_request_in` on this resource Indicates the user can perform `create_merge_request_in` on this resource
""" """
createMergeRequestIn: Boolean! createMergeRequestIn: Boolean!
""" """
Whether or not a user can perform `create_pages` on this resource Indicates the user can perform `create_pages` on this resource
""" """
createPages: Boolean! createPages: Boolean!
""" """
Whether or not a user can perform `create_pipeline` on this resource Indicates the user can perform `create_pipeline` on this resource
""" """
createPipeline: Boolean! createPipeline: Boolean!
""" """
Whether or not a user can perform `create_pipeline_schedule` on this resource Indicates the user can perform `create_pipeline_schedule` on this resource
""" """
createPipelineSchedule: Boolean! createPipelineSchedule: Boolean!
""" """
Whether or not a user can perform `create_snippet` on this resource Indicates the user can perform `create_snippet` on this resource
""" """
createSnippet: Boolean! createSnippet: Boolean!
""" """
Whether or not a user can perform `create_wiki` on this resource Indicates the user can perform `create_wiki` on this resource
""" """
createWiki: Boolean! createWiki: Boolean!
""" """
Whether or not a user can perform `destroy_design` on this resource Indicates the user can perform `destroy_design` on this resource
""" """
destroyDesign: Boolean! destroyDesign: Boolean!
""" """
Whether or not a user can perform `destroy_pages` on this resource Indicates the user can perform `destroy_pages` on this resource
""" """
destroyPages: Boolean! destroyPages: Boolean!
""" """
Whether or not a user can perform `destroy_wiki` on this resource Indicates the user can perform `destroy_wiki` on this resource
""" """
destroyWiki: Boolean! destroyWiki: Boolean!
""" """
Whether or not a user can perform `download_code` on this resource Indicates the user can perform `download_code` on this resource
""" """
downloadCode: Boolean! downloadCode: Boolean!
""" """
Whether or not a user can perform `download_wiki_code` on this resource Indicates the user can perform `download_wiki_code` on this resource
""" """
downloadWikiCode: Boolean! downloadWikiCode: Boolean!
""" """
Whether or not a user can perform `fork_project` on this resource Indicates the user can perform `fork_project` on this resource
""" """
forkProject: Boolean! forkProject: Boolean!
""" """
Whether or not a user can perform `push_code` on this resource Indicates the user can perform `push_code` on this resource
""" """
pushCode: Boolean! pushCode: Boolean!
""" """
Whether or not a user can perform `push_to_delete_protected_branch` on this resource Indicates the user can perform `push_to_delete_protected_branch` on this resource
""" """
pushToDeleteProtectedBranch: Boolean! pushToDeleteProtectedBranch: Boolean!
""" """
Whether or not a user can perform `read_commit_status` on this resource Indicates the user can perform `read_commit_status` on this resource
""" """
readCommitStatus: Boolean! readCommitStatus: Boolean!
""" """
Whether or not a user can perform `read_cycle_analytics` on this resource Indicates the user can perform `read_cycle_analytics` on this resource
""" """
readCycleAnalytics: Boolean! readCycleAnalytics: Boolean!
""" """
Whether or not a user can perform `read_design` on this resource Indicates the user can perform `read_design` on this resource
""" """
readDesign: Boolean! readDesign: Boolean!
""" """
Whether or not a user can perform `read_pages_content` on this resource Indicates the user can perform `read_pages_content` on this resource
""" """
readPagesContent: Boolean! readPagesContent: Boolean!
""" """
Whether or not a user can perform `read_project` on this resource Indicates the user can perform `read_project` on this resource
""" """
readProject: Boolean! readProject: Boolean!
""" """
Whether or not a user can perform `read_project_member` on this resource Indicates the user can perform `read_project_member` on this resource
""" """
readProjectMember: Boolean! readProjectMember: Boolean!
""" """
Whether or not a user can perform `read_wiki` on this resource Indicates the user can perform `read_wiki` on this resource
""" """
readWiki: Boolean! readWiki: Boolean!
""" """
Whether or not a user can perform `remove_fork_project` on this resource Indicates the user can perform `remove_fork_project` on this resource
""" """
removeForkProject: Boolean! removeForkProject: Boolean!
""" """
Whether or not a user can perform `remove_pages` on this resource Indicates the user can perform `remove_pages` on this resource
""" """
removePages: Boolean! removePages: Boolean!
""" """
Whether or not a user can perform `remove_project` on this resource Indicates the user can perform `remove_project` on this resource
""" """
removeProject: Boolean! removeProject: Boolean!
""" """
Whether or not a user can perform `rename_project` on this resource Indicates the user can perform `rename_project` on this resource
""" """
renameProject: Boolean! renameProject: Boolean!
""" """
Whether or not a user can perform `request_access` on this resource Indicates the user can perform `request_access` on this resource
""" """
requestAccess: Boolean! requestAccess: Boolean!
""" """
Whether or not a user can perform `update_pages` on this resource Indicates the user can perform `update_pages` on this resource
""" """
updatePages: Boolean! updatePages: Boolean!
""" """
Whether or not a user can perform `update_wiki` on this resource Indicates the user can perform `update_wiki` on this resource
""" """
updateWiki: Boolean! updateWiki: Boolean!
""" """
Whether or not a user can perform `upload_file` on this resource Indicates the user can perform `upload_file` on this resource
""" """
uploadFile: Boolean! uploadFile: Boolean!
} }
...@@ -5872,32 +5872,32 @@ type SnippetEdge { ...@@ -5872,32 +5872,32 @@ type SnippetEdge {
type SnippetPermissions { type SnippetPermissions {
""" """
Whether or not a user can perform `admin_snippet` on this resource Indicates the user can perform `admin_snippet` on this resource
""" """
adminSnippet: Boolean! adminSnippet: Boolean!
""" """
Whether or not a user can perform `award_emoji` on this resource Indicates the user can perform `award_emoji` on this resource
""" """
awardEmoji: Boolean! awardEmoji: Boolean!
""" """
Whether or not a user can perform `create_note` on this resource Indicates the user can perform `create_note` on this resource
""" """
createNote: Boolean! createNote: Boolean!
""" """
Whether or not a user can perform `read_snippet` on this resource Indicates the user can perform `read_snippet` on this resource
""" """
readSnippet: Boolean! readSnippet: Boolean!
""" """
Whether or not a user can perform `report_snippet` on this resource Indicates the user can perform `report_snippet` on this resource
""" """
reportSnippet: Boolean! reportSnippet: Boolean!
""" """
Whether or not a user can perform `update_snippet` on this resource Indicates the user can perform `update_snippet` on this resource
""" """
updateSnippet: Boolean! updateSnippet: Boolean!
} }
...@@ -6323,7 +6323,7 @@ type ToggleAwardEmojiPayload { ...@@ -6323,7 +6323,7 @@ type ToggleAwardEmojiPayload {
errors: [String!]! errors: [String!]!
""" """
True when the emoji was awarded, false when it was removed Indicates the status of the emoji. True if the toggle awarded the emoji, and false if the toggle removed the emoji.
""" """
toggledOn: Boolean! toggledOn: Boolean!
} }
...@@ -6836,7 +6836,7 @@ type UserEdge { ...@@ -6836,7 +6836,7 @@ type UserEdge {
type UserPermissions { type UserPermissions {
""" """
Whether or not a user can perform `create_snippet` on this resource Indicates the user can perform `create_snippet` on this resource
""" """
createSnippet: Boolean! createSnippet: Boolean!
} }
......
...@@ -310,7 +310,7 @@ ...@@ -310,7 +310,7 @@
"fields": [ "fields": [
{ {
"name": "archived", "name": "archived",
"description": "Archived status of the project", "description": "Indicates the archived status of the project",
"args": [ "args": [
], ],
...@@ -1586,7 +1586,7 @@ ...@@ -1586,7 +1586,7 @@
"fields": [ "fields": [
{ {
"name": "adminOperations", "name": "adminOperations",
"description": "Whether or not a user can perform `admin_operations` on this resource", "description": "Indicates the user can perform `admin_operations` on this resource",
"args": [ "args": [
], ],
...@@ -1604,7 +1604,7 @@ ...@@ -1604,7 +1604,7 @@
}, },
{ {
"name": "adminProject", "name": "adminProject",
"description": "Whether or not a user can perform `admin_project` on this resource", "description": "Indicates the user can perform `admin_project` on this resource",
"args": [ "args": [
], ],
...@@ -1622,7 +1622,7 @@ ...@@ -1622,7 +1622,7 @@
}, },
{ {
"name": "adminRemoteMirror", "name": "adminRemoteMirror",
"description": "Whether or not a user can perform `admin_remote_mirror` on this resource", "description": "Indicates the user can perform `admin_remote_mirror` on this resource",
"args": [ "args": [
], ],
...@@ -1640,7 +1640,7 @@ ...@@ -1640,7 +1640,7 @@
}, },
{ {
"name": "adminWiki", "name": "adminWiki",
"description": "Whether or not a user can perform `admin_wiki` on this resource", "description": "Indicates the user can perform `admin_wiki` on this resource",
"args": [ "args": [
], ],
...@@ -1658,7 +1658,7 @@ ...@@ -1658,7 +1658,7 @@
}, },
{ {
"name": "archiveProject", "name": "archiveProject",
"description": "Whether or not a user can perform `archive_project` on this resource", "description": "Indicates the user can perform `archive_project` on this resource",
"args": [ "args": [
], ],
...@@ -1676,7 +1676,7 @@ ...@@ -1676,7 +1676,7 @@
}, },
{ {
"name": "changeNamespace", "name": "changeNamespace",
"description": "Whether or not a user can perform `change_namespace` on this resource", "description": "Indicates the user can perform `change_namespace` on this resource",
"args": [ "args": [
], ],
...@@ -1694,7 +1694,7 @@ ...@@ -1694,7 +1694,7 @@
}, },
{ {
"name": "changeVisibilityLevel", "name": "changeVisibilityLevel",
"description": "Whether or not a user can perform `change_visibility_level` on this resource", "description": "Indicates the user can perform `change_visibility_level` on this resource",
"args": [ "args": [
], ],
...@@ -1712,7 +1712,7 @@ ...@@ -1712,7 +1712,7 @@
}, },
{ {
"name": "createDeployment", "name": "createDeployment",
"description": "Whether or not a user can perform `create_deployment` on this resource", "description": "Indicates the user can perform `create_deployment` on this resource",
"args": [ "args": [
], ],
...@@ -1730,7 +1730,7 @@ ...@@ -1730,7 +1730,7 @@
}, },
{ {
"name": "createDesign", "name": "createDesign",
"description": "Whether or not a user can perform `create_design` on this resource", "description": "Indicates the user can perform `create_design` on this resource",
"args": [ "args": [
], ],
...@@ -1748,7 +1748,7 @@ ...@@ -1748,7 +1748,7 @@
}, },
{ {
"name": "createIssue", "name": "createIssue",
"description": "Whether or not a user can perform `create_issue` on this resource", "description": "Indicates the user can perform `create_issue` on this resource",
"args": [ "args": [
], ],
...@@ -1766,7 +1766,7 @@ ...@@ -1766,7 +1766,7 @@
}, },
{ {
"name": "createLabel", "name": "createLabel",
"description": "Whether or not a user can perform `create_label` on this resource", "description": "Indicates the user can perform `create_label` on this resource",
"args": [ "args": [
], ],
...@@ -1784,7 +1784,7 @@ ...@@ -1784,7 +1784,7 @@
}, },
{ {
"name": "createMergeRequestFrom", "name": "createMergeRequestFrom",
"description": "Whether or not a user can perform `create_merge_request_from` on this resource", "description": "Indicates the user can perform `create_merge_request_from` on this resource",
"args": [ "args": [
], ],
...@@ -1802,7 +1802,7 @@ ...@@ -1802,7 +1802,7 @@
}, },
{ {
"name": "createMergeRequestIn", "name": "createMergeRequestIn",
"description": "Whether or not a user can perform `create_merge_request_in` on this resource", "description": "Indicates the user can perform `create_merge_request_in` on this resource",
"args": [ "args": [
], ],
...@@ -1820,7 +1820,7 @@ ...@@ -1820,7 +1820,7 @@
}, },
{ {
"name": "createPages", "name": "createPages",
"description": "Whether or not a user can perform `create_pages` on this resource", "description": "Indicates the user can perform `create_pages` on this resource",
"args": [ "args": [
], ],
...@@ -1838,7 +1838,7 @@ ...@@ -1838,7 +1838,7 @@
}, },
{ {
"name": "createPipeline", "name": "createPipeline",
"description": "Whether or not a user can perform `create_pipeline` on this resource", "description": "Indicates the user can perform `create_pipeline` on this resource",
"args": [ "args": [
], ],
...@@ -1856,7 +1856,7 @@ ...@@ -1856,7 +1856,7 @@
}, },
{ {
"name": "createPipelineSchedule", "name": "createPipelineSchedule",
"description": "Whether or not a user can perform `create_pipeline_schedule` on this resource", "description": "Indicates the user can perform `create_pipeline_schedule` on this resource",
"args": [ "args": [
], ],
...@@ -1874,7 +1874,7 @@ ...@@ -1874,7 +1874,7 @@
}, },
{ {
"name": "createSnippet", "name": "createSnippet",
"description": "Whether or not a user can perform `create_snippet` on this resource", "description": "Indicates the user can perform `create_snippet` on this resource",
"args": [ "args": [
], ],
...@@ -1892,7 +1892,7 @@ ...@@ -1892,7 +1892,7 @@
}, },
{ {
"name": "createWiki", "name": "createWiki",
"description": "Whether or not a user can perform `create_wiki` on this resource", "description": "Indicates the user can perform `create_wiki` on this resource",
"args": [ "args": [
], ],
...@@ -1910,7 +1910,7 @@ ...@@ -1910,7 +1910,7 @@
}, },
{ {
"name": "destroyDesign", "name": "destroyDesign",
"description": "Whether or not a user can perform `destroy_design` on this resource", "description": "Indicates the user can perform `destroy_design` on this resource",
"args": [ "args": [
], ],
...@@ -1928,7 +1928,7 @@ ...@@ -1928,7 +1928,7 @@
}, },
{ {
"name": "destroyPages", "name": "destroyPages",
"description": "Whether or not a user can perform `destroy_pages` on this resource", "description": "Indicates the user can perform `destroy_pages` on this resource",
"args": [ "args": [
], ],
...@@ -1946,7 +1946,7 @@ ...@@ -1946,7 +1946,7 @@
}, },
{ {
"name": "destroyWiki", "name": "destroyWiki",
"description": "Whether or not a user can perform `destroy_wiki` on this resource", "description": "Indicates the user can perform `destroy_wiki` on this resource",
"args": [ "args": [
], ],
...@@ -1964,7 +1964,7 @@ ...@@ -1964,7 +1964,7 @@
}, },
{ {
"name": "downloadCode", "name": "downloadCode",
"description": "Whether or not a user can perform `download_code` on this resource", "description": "Indicates the user can perform `download_code` on this resource",
"args": [ "args": [
], ],
...@@ -1982,7 +1982,7 @@ ...@@ -1982,7 +1982,7 @@
}, },
{ {
"name": "downloadWikiCode", "name": "downloadWikiCode",
"description": "Whether or not a user can perform `download_wiki_code` on this resource", "description": "Indicates the user can perform `download_wiki_code` on this resource",
"args": [ "args": [
], ],
...@@ -2000,7 +2000,7 @@ ...@@ -2000,7 +2000,7 @@
}, },
{ {
"name": "forkProject", "name": "forkProject",
"description": "Whether or not a user can perform `fork_project` on this resource", "description": "Indicates the user can perform `fork_project` on this resource",
"args": [ "args": [
], ],
...@@ -2018,7 +2018,7 @@ ...@@ -2018,7 +2018,7 @@
}, },
{ {
"name": "pushCode", "name": "pushCode",
"description": "Whether or not a user can perform `push_code` on this resource", "description": "Indicates the user can perform `push_code` on this resource",
"args": [ "args": [
], ],
...@@ -2036,7 +2036,7 @@ ...@@ -2036,7 +2036,7 @@
}, },
{ {
"name": "pushToDeleteProtectedBranch", "name": "pushToDeleteProtectedBranch",
"description": "Whether or not a user can perform `push_to_delete_protected_branch` on this resource", "description": "Indicates the user can perform `push_to_delete_protected_branch` on this resource",
"args": [ "args": [
], ],
...@@ -2054,7 +2054,7 @@ ...@@ -2054,7 +2054,7 @@
}, },
{ {
"name": "readCommitStatus", "name": "readCommitStatus",
"description": "Whether or not a user can perform `read_commit_status` on this resource", "description": "Indicates the user can perform `read_commit_status` on this resource",
"args": [ "args": [
], ],
...@@ -2072,7 +2072,7 @@ ...@@ -2072,7 +2072,7 @@
}, },
{ {
"name": "readCycleAnalytics", "name": "readCycleAnalytics",
"description": "Whether or not a user can perform `read_cycle_analytics` on this resource", "description": "Indicates the user can perform `read_cycle_analytics` on this resource",
"args": [ "args": [
], ],
...@@ -2090,7 +2090,7 @@ ...@@ -2090,7 +2090,7 @@
}, },
{ {
"name": "readDesign", "name": "readDesign",
"description": "Whether or not a user can perform `read_design` on this resource", "description": "Indicates the user can perform `read_design` on this resource",
"args": [ "args": [
], ],
...@@ -2108,7 +2108,7 @@ ...@@ -2108,7 +2108,7 @@
}, },
{ {
"name": "readPagesContent", "name": "readPagesContent",
"description": "Whether or not a user can perform `read_pages_content` on this resource", "description": "Indicates the user can perform `read_pages_content` on this resource",
"args": [ "args": [
], ],
...@@ -2126,7 +2126,7 @@ ...@@ -2126,7 +2126,7 @@
}, },
{ {
"name": "readProject", "name": "readProject",
"description": "Whether or not a user can perform `read_project` on this resource", "description": "Indicates the user can perform `read_project` on this resource",
"args": [ "args": [
], ],
...@@ -2144,7 +2144,7 @@ ...@@ -2144,7 +2144,7 @@
}, },
{ {
"name": "readProjectMember", "name": "readProjectMember",
"description": "Whether or not a user can perform `read_project_member` on this resource", "description": "Indicates the user can perform `read_project_member` on this resource",
"args": [ "args": [
], ],
...@@ -2162,7 +2162,7 @@ ...@@ -2162,7 +2162,7 @@
}, },
{ {
"name": "readWiki", "name": "readWiki",
"description": "Whether or not a user can perform `read_wiki` on this resource", "description": "Indicates the user can perform `read_wiki` on this resource",
"args": [ "args": [
], ],
...@@ -2180,7 +2180,7 @@ ...@@ -2180,7 +2180,7 @@
}, },
{ {
"name": "removeForkProject", "name": "removeForkProject",
"description": "Whether or not a user can perform `remove_fork_project` on this resource", "description": "Indicates the user can perform `remove_fork_project` on this resource",
"args": [ "args": [
], ],
...@@ -2198,7 +2198,7 @@ ...@@ -2198,7 +2198,7 @@
}, },
{ {
"name": "removePages", "name": "removePages",
"description": "Whether or not a user can perform `remove_pages` on this resource", "description": "Indicates the user can perform `remove_pages` on this resource",
"args": [ "args": [
], ],
...@@ -2216,7 +2216,7 @@ ...@@ -2216,7 +2216,7 @@
}, },
{ {
"name": "removeProject", "name": "removeProject",
"description": "Whether or not a user can perform `remove_project` on this resource", "description": "Indicates the user can perform `remove_project` on this resource",
"args": [ "args": [
], ],
...@@ -2234,7 +2234,7 @@ ...@@ -2234,7 +2234,7 @@
}, },
{ {
"name": "renameProject", "name": "renameProject",
"description": "Whether or not a user can perform `rename_project` on this resource", "description": "Indicates the user can perform `rename_project` on this resource",
"args": [ "args": [
], ],
...@@ -2252,7 +2252,7 @@ ...@@ -2252,7 +2252,7 @@
}, },
{ {
"name": "requestAccess", "name": "requestAccess",
"description": "Whether or not a user can perform `request_access` on this resource", "description": "Indicates the user can perform `request_access` on this resource",
"args": [ "args": [
], ],
...@@ -2270,7 +2270,7 @@ ...@@ -2270,7 +2270,7 @@
}, },
{ {
"name": "updatePages", "name": "updatePages",
"description": "Whether or not a user can perform `update_pages` on this resource", "description": "Indicates the user can perform `update_pages` on this resource",
"args": [ "args": [
], ],
...@@ -2288,7 +2288,7 @@ ...@@ -2288,7 +2288,7 @@
}, },
{ {
"name": "updateWiki", "name": "updateWiki",
"description": "Whether or not a user can perform `update_wiki` on this resource", "description": "Indicates the user can perform `update_wiki` on this resource",
"args": [ "args": [
], ],
...@@ -2306,7 +2306,7 @@ ...@@ -2306,7 +2306,7 @@
}, },
{ {
"name": "uploadFile", "name": "uploadFile",
"description": "Whether or not a user can perform `upload_file` on this resource", "description": "Indicates the user can perform `upload_file` on this resource",
"args": [ "args": [
], ],
...@@ -3640,7 +3640,7 @@ ...@@ -3640,7 +3640,7 @@
"fields": [ "fields": [
{ {
"name": "readGroup", "name": "readGroup",
"description": "Whether or not a user can perform `read_group` on this resource", "description": "Indicates the user can perform `read_group` on this resource",
"args": [ "args": [
], ],
...@@ -4484,7 +4484,7 @@ ...@@ -4484,7 +4484,7 @@
}, },
{ {
"name": "subscribed", "name": "subscribed",
"description": "Boolean flag for whether the currently logged in user is subscribed to this epic", "description": "Indicates the currently logged in user is subscribed to the epic",
"args": [ "args": [
], ],
...@@ -5128,7 +5128,7 @@ ...@@ -5128,7 +5128,7 @@
"fields": [ "fields": [
{ {
"name": "adminNote", "name": "adminNote",
"description": "Whether or not a user can perform `admin_note` on this resource", "description": "Indicates the user can perform `admin_note` on this resource",
"args": [ "args": [
], ],
...@@ -5146,7 +5146,7 @@ ...@@ -5146,7 +5146,7 @@
}, },
{ {
"name": "awardEmoji", "name": "awardEmoji",
"description": "Whether or not a user can perform `award_emoji` on this resource", "description": "Indicates the user can perform `award_emoji` on this resource",
"args": [ "args": [
], ],
...@@ -5164,7 +5164,7 @@ ...@@ -5164,7 +5164,7 @@
}, },
{ {
"name": "createNote", "name": "createNote",
"description": "Whether or not a user can perform `create_note` on this resource", "description": "Indicates the user can perform `create_note` on this resource",
"args": [ "args": [
], ],
...@@ -5182,7 +5182,7 @@ ...@@ -5182,7 +5182,7 @@
}, },
{ {
"name": "readNote", "name": "readNote",
"description": "Whether or not a user can perform `read_note` on this resource", "description": "Indicates the user can perform `read_note` on this resource",
"args": [ "args": [
], ],
...@@ -5200,7 +5200,7 @@ ...@@ -5200,7 +5200,7 @@
}, },
{ {
"name": "resolveNote", "name": "resolveNote",
"description": "Whether or not a user can perform `resolve_note` on this resource", "description": "Indicates the user can perform `resolve_note` on this resource",
"args": [ "args": [
], ],
...@@ -5590,7 +5590,7 @@ ...@@ -5590,7 +5590,7 @@
"fields": [ "fields": [
{ {
"name": "createSnippet", "name": "createSnippet",
"description": "Whether or not a user can perform `create_snippet` on this resource", "description": "Indicates the user can perform `create_snippet` on this resource",
"args": [ "args": [
], ],
...@@ -6732,7 +6732,7 @@ ...@@ -6732,7 +6732,7 @@
"fields": [ "fields": [
{ {
"name": "adminSnippet", "name": "adminSnippet",
"description": "Whether or not a user can perform `admin_snippet` on this resource", "description": "Indicates the user can perform `admin_snippet` on this resource",
"args": [ "args": [
], ],
...@@ -6750,7 +6750,7 @@ ...@@ -6750,7 +6750,7 @@
}, },
{ {
"name": "awardEmoji", "name": "awardEmoji",
"description": "Whether or not a user can perform `award_emoji` on this resource", "description": "Indicates the user can perform `award_emoji` on this resource",
"args": [ "args": [
], ],
...@@ -6768,7 +6768,7 @@ ...@@ -6768,7 +6768,7 @@
}, },
{ {
"name": "createNote", "name": "createNote",
"description": "Whether or not a user can perform `create_note` on this resource", "description": "Indicates the user can perform `create_note` on this resource",
"args": [ "args": [
], ],
...@@ -6786,7 +6786,7 @@ ...@@ -6786,7 +6786,7 @@
}, },
{ {
"name": "readSnippet", "name": "readSnippet",
"description": "Whether or not a user can perform `read_snippet` on this resource", "description": "Indicates the user can perform `read_snippet` on this resource",
"args": [ "args": [
], ],
...@@ -6804,7 +6804,7 @@ ...@@ -6804,7 +6804,7 @@
}, },
{ {
"name": "reportSnippet", "name": "reportSnippet",
"description": "Whether or not a user can perform `report_snippet` on this resource", "description": "Indicates the user can perform `report_snippet` on this resource",
"args": [ "args": [
], ],
...@@ -6822,7 +6822,7 @@ ...@@ -6822,7 +6822,7 @@
}, },
{ {
"name": "updateSnippet", "name": "updateSnippet",
"description": "Whether or not a user can perform `update_snippet` on this resource", "description": "Indicates the user can perform `update_snippet` on this resource",
"args": [ "args": [
], ],
...@@ -7203,7 +7203,7 @@ ...@@ -7203,7 +7203,7 @@
"fields": [ "fields": [
{ {
"name": "adminEpic", "name": "adminEpic",
"description": "Whether or not a user can perform `admin_epic` on this resource", "description": "Indicates the user can perform `admin_epic` on this resource",
"args": [ "args": [
], ],
...@@ -7221,7 +7221,7 @@ ...@@ -7221,7 +7221,7 @@
}, },
{ {
"name": "awardEmoji", "name": "awardEmoji",
"description": "Whether or not a user can perform `award_emoji` on this resource", "description": "Indicates the user can perform `award_emoji` on this resource",
"args": [ "args": [
], ],
...@@ -7239,7 +7239,7 @@ ...@@ -7239,7 +7239,7 @@
}, },
{ {
"name": "createEpic", "name": "createEpic",
"description": "Whether or not a user can perform `create_epic` on this resource", "description": "Indicates the user can perform `create_epic` on this resource",
"args": [ "args": [
], ],
...@@ -7257,7 +7257,7 @@ ...@@ -7257,7 +7257,7 @@
}, },
{ {
"name": "createNote", "name": "createNote",
"description": "Whether or not a user can perform `create_note` on this resource", "description": "Indicates the user can perform `create_note` on this resource",
"args": [ "args": [
], ],
...@@ -7275,7 +7275,7 @@ ...@@ -7275,7 +7275,7 @@
}, },
{ {
"name": "destroyEpic", "name": "destroyEpic",
"description": "Whether or not a user can perform `destroy_epic` on this resource", "description": "Indicates the user can perform `destroy_epic` on this resource",
"args": [ "args": [
], ],
...@@ -7293,7 +7293,7 @@ ...@@ -7293,7 +7293,7 @@
}, },
{ {
"name": "readEpic", "name": "readEpic",
"description": "Whether or not a user can perform `read_epic` on this resource", "description": "Indicates the user can perform `read_epic` on this resource",
"args": [ "args": [
], ],
...@@ -7311,7 +7311,7 @@ ...@@ -7311,7 +7311,7 @@
}, },
{ {
"name": "readEpicIid", "name": "readEpicIid",
"description": "Whether or not a user can perform `read_epic_iid` on this resource", "description": "Indicates the user can perform `read_epic_iid` on this resource",
"args": [ "args": [
], ],
...@@ -7329,7 +7329,7 @@ ...@@ -7329,7 +7329,7 @@
}, },
{ {
"name": "updateEpic", "name": "updateEpic",
"description": "Whether or not a user can perform `update_epic` on this resource", "description": "Indicates the user can perform `update_epic` on this resource",
"args": [ "args": [
], ],
...@@ -8583,7 +8583,7 @@ ...@@ -8583,7 +8583,7 @@
}, },
{ {
"name": "subscribed", "name": "subscribed",
"description": "Boolean flag for whether the currently logged in user is subscribed to this issue", "description": "Indicates the currently logged in user is subscribed to the issue",
"args": [ "args": [
], ],
...@@ -8826,7 +8826,7 @@ ...@@ -8826,7 +8826,7 @@
"fields": [ "fields": [
{ {
"name": "adminIssue", "name": "adminIssue",
"description": "Whether or not a user can perform `admin_issue` on this resource", "description": "Indicates the user can perform `admin_issue` on this resource",
"args": [ "args": [
], ],
...@@ -8844,7 +8844,7 @@ ...@@ -8844,7 +8844,7 @@
}, },
{ {
"name": "createDesign", "name": "createDesign",
"description": "Whether or not a user can perform `create_design` on this resource", "description": "Indicates the user can perform `create_design` on this resource",
"args": [ "args": [
], ],
...@@ -8862,7 +8862,7 @@ ...@@ -8862,7 +8862,7 @@
}, },
{ {
"name": "createNote", "name": "createNote",
"description": "Whether or not a user can perform `create_note` on this resource", "description": "Indicates the user can perform `create_note` on this resource",
"args": [ "args": [
], ],
...@@ -8880,7 +8880,7 @@ ...@@ -8880,7 +8880,7 @@
}, },
{ {
"name": "destroyDesign", "name": "destroyDesign",
"description": "Whether or not a user can perform `destroy_design` on this resource", "description": "Indicates the user can perform `destroy_design` on this resource",
"args": [ "args": [
], ],
...@@ -8898,7 +8898,7 @@ ...@@ -8898,7 +8898,7 @@
}, },
{ {
"name": "readDesign", "name": "readDesign",
"description": "Whether or not a user can perform `read_design` on this resource", "description": "Indicates the user can perform `read_design` on this resource",
"args": [ "args": [
], ],
...@@ -8916,7 +8916,7 @@ ...@@ -8916,7 +8916,7 @@
}, },
{ {
"name": "readIssue", "name": "readIssue",
"description": "Whether or not a user can perform `read_issue` on this resource", "description": "Indicates the user can perform `read_issue` on this resource",
"args": [ "args": [
], ],
...@@ -8934,7 +8934,7 @@ ...@@ -8934,7 +8934,7 @@
}, },
{ {
"name": "reopenIssue", "name": "reopenIssue",
"description": "Whether or not a user can perform `reopen_issue` on this resource", "description": "Indicates the user can perform `reopen_issue` on this resource",
"args": [ "args": [
], ],
...@@ -8952,7 +8952,7 @@ ...@@ -8952,7 +8952,7 @@
}, },
{ {
"name": "updateIssue", "name": "updateIssue",
"description": "Whether or not a user can perform `update_issue` on this resource", "description": "Indicates the user can perform `update_issue` on this resource",
"args": [ "args": [
], ],
...@@ -9967,7 +9967,7 @@ ...@@ -9967,7 +9967,7 @@
}, },
{ {
"name": "subscribed", "name": "subscribed",
"description": "Boolean flag for whether the currently logged in user is subscribed to this issue", "description": "Indicates the currently logged in user is subscribed to the issue",
"args": [ "args": [
], ],
...@@ -12270,7 +12270,7 @@ ...@@ -12270,7 +12270,7 @@
"fields": [ "fields": [
{ {
"name": "adminPipeline", "name": "adminPipeline",
"description": "Whether or not a user can perform `admin_pipeline` on this resource", "description": "Indicates the user can perform `admin_pipeline` on this resource",
"args": [ "args": [
], ],
...@@ -12288,7 +12288,7 @@ ...@@ -12288,7 +12288,7 @@
}, },
{ {
"name": "destroyPipeline", "name": "destroyPipeline",
"description": "Whether or not a user can perform `destroy_pipeline` on this resource", "description": "Indicates the user can perform `destroy_pipeline` on this resource",
"args": [ "args": [
], ],
...@@ -12306,7 +12306,7 @@ ...@@ -12306,7 +12306,7 @@
}, },
{ {
"name": "updatePipeline", "name": "updatePipeline",
"description": "Whether or not a user can perform `update_pipeline` on this resource", "description": "Indicates the user can perform `update_pipeline` on this resource",
"args": [ "args": [
], ],
...@@ -14814,7 +14814,7 @@ ...@@ -14814,7 +14814,7 @@
"fields": [ "fields": [
{ {
"name": "adminMergeRequest", "name": "adminMergeRequest",
"description": "Whether or not a user can perform `admin_merge_request` on this resource", "description": "Indicates the user can perform `admin_merge_request` on this resource",
"args": [ "args": [
], ],
...@@ -14832,7 +14832,7 @@ ...@@ -14832,7 +14832,7 @@
}, },
{ {
"name": "cherryPickOnCurrentMergeRequest", "name": "cherryPickOnCurrentMergeRequest",
"description": "Whether or not a user can perform `cherry_pick_on_current_merge_request` on this resource", "description": "Indicates the user can perform `cherry_pick_on_current_merge_request` on this resource",
"args": [ "args": [
], ],
...@@ -14850,7 +14850,7 @@ ...@@ -14850,7 +14850,7 @@
}, },
{ {
"name": "createNote", "name": "createNote",
"description": "Whether or not a user can perform `create_note` on this resource", "description": "Indicates the user can perform `create_note` on this resource",
"args": [ "args": [
], ],
...@@ -14868,7 +14868,7 @@ ...@@ -14868,7 +14868,7 @@
}, },
{ {
"name": "pushToSourceBranch", "name": "pushToSourceBranch",
"description": "Whether or not a user can perform `push_to_source_branch` on this resource", "description": "Indicates the user can perform `push_to_source_branch` on this resource",
"args": [ "args": [
], ],
...@@ -14886,7 +14886,7 @@ ...@@ -14886,7 +14886,7 @@
}, },
{ {
"name": "readMergeRequest", "name": "readMergeRequest",
"description": "Whether or not a user can perform `read_merge_request` on this resource", "description": "Indicates the user can perform `read_merge_request` on this resource",
"args": [ "args": [
], ],
...@@ -14904,7 +14904,7 @@ ...@@ -14904,7 +14904,7 @@
}, },
{ {
"name": "removeSourceBranch", "name": "removeSourceBranch",
"description": "Whether or not a user can perform `remove_source_branch` on this resource", "description": "Indicates the user can perform `remove_source_branch` on this resource",
"args": [ "args": [
], ],
...@@ -14922,7 +14922,7 @@ ...@@ -14922,7 +14922,7 @@
}, },
{ {
"name": "revertOnCurrentMergeRequest", "name": "revertOnCurrentMergeRequest",
"description": "Whether or not a user can perform `revert_on_current_merge_request` on this resource", "description": "Indicates the user can perform `revert_on_current_merge_request` on this resource",
"args": [ "args": [
], ],
...@@ -14940,7 +14940,7 @@ ...@@ -14940,7 +14940,7 @@
}, },
{ {
"name": "updateMergeRequest", "name": "updateMergeRequest",
"description": "Whether or not a user can perform `update_merge_request` on this resource", "description": "Indicates the user can perform `update_merge_request` on this resource",
"args": [ "args": [
], ],
...@@ -16954,7 +16954,7 @@ ...@@ -16954,7 +16954,7 @@
}, },
{ {
"name": "toggledOn", "name": "toggledOn",
"description": "True when the emoji was awarded, false when it was removed", "description": "Indicates the status of the emoji. True if the toggle awarded the emoji, and false if the toggle removed the emoji.",
"args": [ "args": [
], ],
......
...@@ -239,7 +239,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -239,7 +239,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| `relativePosition` | Int | The relative position of the epic in the epic tree | | `relativePosition` | Int | The relative position of the epic in the epic tree |
| `relationPath` | String | | | `relationPath` | String | |
| `reference` | String! | | | `reference` | String! | |
| `subscribed` | Boolean! | Boolean flag for whether the currently logged in user is subscribed to this epic | | `subscribed` | Boolean! | Indicates the currently logged in user is subscribed to the epic |
| `descendantCounts` | EpicDescendantCount | Number of open and closed descendant epics and issues | | `descendantCounts` | EpicDescendantCount | Number of open and closed descendant epics and issues |
### EpicDescendantCount ### EpicDescendantCount
...@@ -274,7 +274,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -274,7 +274,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| `webPath` | String! | Web path of the issue | | `webPath` | String! | Web path of the issue |
| `webUrl` | String! | Web URL of the issue | | `webUrl` | String! | Web URL of the issue |
| `relativePosition` | Int | Relative position of the issue (used for positioning in epic tree and issue boards) | | `relativePosition` | Int | Relative position of the issue (used for positioning in epic tree and issue boards) |
| `subscribed` | Boolean! | Boolean flag for whether the currently logged in user is subscribed to this issue | | `subscribed` | Boolean! | Indicates the currently logged in user is subscribed to the issue |
| `timeEstimate` | Int! | Time estimate of the issue | | `timeEstimate` | Int! | Time estimate of the issue |
| `totalTimeSpent` | Int! | Total time reported as spent on the issue | | `totalTimeSpent` | Int! | Total time reported as spent on the issue |
| `closedAt` | Time | Timestamp of when the issue was closed | | `closedAt` | Time | Timestamp of when the issue was closed |
...@@ -293,14 +293,14 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -293,14 +293,14 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `readEpic` | Boolean! | Whether or not a user can perform `read_epic` on this resource | | `readEpic` | Boolean! | Indicates the user can perform `read_epic` on this resource |
| `readEpicIid` | Boolean! | Whether or not a user can perform `read_epic_iid` on this resource | | `readEpicIid` | Boolean! | Indicates the user can perform `read_epic_iid` on this resource |
| `updateEpic` | Boolean! | Whether or not a user can perform `update_epic` on this resource | | `updateEpic` | Boolean! | Indicates the user can perform `update_epic` on this resource |
| `destroyEpic` | Boolean! | Whether or not a user can perform `destroy_epic` on this resource | | `destroyEpic` | Boolean! | Indicates the user can perform `destroy_epic` on this resource |
| `adminEpic` | Boolean! | Whether or not a user can perform `admin_epic` on this resource | | `adminEpic` | Boolean! | Indicates the user can perform `admin_epic` on this resource |
| `createEpic` | Boolean! | Whether or not a user can perform `create_epic` on this resource | | `createEpic` | Boolean! | Indicates the user can perform `create_epic` on this resource |
| `createNote` | Boolean! | Whether or not a user can perform `create_note` on this resource | | `createNote` | Boolean! | Indicates the user can perform `create_note` on this resource |
| `awardEmoji` | Boolean! | Whether or not a user can perform `award_emoji` on this resource | | `awardEmoji` | Boolean! | Indicates the user can perform `award_emoji` on this resource |
### EpicSetSubscriptionPayload ### EpicSetSubscriptionPayload
...@@ -344,7 +344,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -344,7 +344,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `readGroup` | Boolean! | Whether or not a user can perform `read_group` on this resource | | `readGroup` | Boolean! | Indicates the user can perform `read_group` on this resource |
### Issue ### Issue
...@@ -369,7 +369,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -369,7 +369,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| `webPath` | String! | Web path of the issue | | `webPath` | String! | Web path of the issue |
| `webUrl` | String! | Web URL of the issue | | `webUrl` | String! | Web URL of the issue |
| `relativePosition` | Int | Relative position of the issue (used for positioning in epic tree and issue boards) | | `relativePosition` | Int | Relative position of the issue (used for positioning in epic tree and issue boards) |
| `subscribed` | Boolean! | Boolean flag for whether the currently logged in user is subscribed to this issue | | `subscribed` | Boolean! | Indicates the currently logged in user is subscribed to the issue |
| `timeEstimate` | Int! | Time estimate of the issue | | `timeEstimate` | Int! | Time estimate of the issue |
| `totalTimeSpent` | Int! | Total time reported as spent on the issue | | `totalTimeSpent` | Int! | Total time reported as spent on the issue |
| `closedAt` | Time | Timestamp of when the issue was closed | | `closedAt` | Time | Timestamp of when the issue was closed |
...@@ -385,14 +385,14 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -385,14 +385,14 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `readIssue` | Boolean! | Whether or not a user can perform `read_issue` on this resource | | `readIssue` | Boolean! | Indicates the user can perform `read_issue` on this resource |
| `adminIssue` | Boolean! | Whether or not a user can perform `admin_issue` on this resource | | `adminIssue` | Boolean! | Indicates the user can perform `admin_issue` on this resource |
| `updateIssue` | Boolean! | Whether or not a user can perform `update_issue` on this resource | | `updateIssue` | Boolean! | Indicates the user can perform `update_issue` on this resource |
| `createNote` | Boolean! | Whether or not a user can perform `create_note` on this resource | | `createNote` | Boolean! | Indicates the user can perform `create_note` on this resource |
| `reopenIssue` | Boolean! | Whether or not a user can perform `reopen_issue` on this resource | | `reopenIssue` | Boolean! | Indicates the user can perform `reopen_issue` on this resource |
| `readDesign` | Boolean! | Whether or not a user can perform `read_design` on this resource | | `readDesign` | Boolean! | Indicates the user can perform `read_design` on this resource |
| `createDesign` | Boolean! | Whether or not a user can perform `create_design` on this resource | | `createDesign` | Boolean! | Indicates the user can perform `create_design` on this resource |
| `destroyDesign` | Boolean! | Whether or not a user can perform `destroy_design` on this resource | | `destroyDesign` | Boolean! | Indicates the user can perform `destroy_design` on this resource |
### IssueSetConfidentialPayload ### IssueSetConfidentialPayload
...@@ -495,14 +495,14 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -495,14 +495,14 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `readMergeRequest` | Boolean! | Whether or not a user can perform `read_merge_request` on this resource | | `readMergeRequest` | Boolean! | Indicates the user can perform `read_merge_request` on this resource |
| `adminMergeRequest` | Boolean! | Whether or not a user can perform `admin_merge_request` on this resource | | `adminMergeRequest` | Boolean! | Indicates the user can perform `admin_merge_request` on this resource |
| `updateMergeRequest` | Boolean! | Whether or not a user can perform `update_merge_request` on this resource | | `updateMergeRequest` | Boolean! | Indicates the user can perform `update_merge_request` on this resource |
| `createNote` | Boolean! | Whether or not a user can perform `create_note` on this resource | | `createNote` | Boolean! | Indicates the user can perform `create_note` on this resource |
| `pushToSourceBranch` | Boolean! | Whether or not a user can perform `push_to_source_branch` on this resource | | `pushToSourceBranch` | Boolean! | Indicates the user can perform `push_to_source_branch` on this resource |
| `removeSourceBranch` | Boolean! | Whether or not a user can perform `remove_source_branch` on this resource | | `removeSourceBranch` | Boolean! | Indicates the user can perform `remove_source_branch` on this resource |
| `cherryPickOnCurrentMergeRequest` | Boolean! | Whether or not a user can perform `cherry_pick_on_current_merge_request` on this resource | | `cherryPickOnCurrentMergeRequest` | Boolean! | Indicates the user can perform `cherry_pick_on_current_merge_request` on this resource |
| `revertOnCurrentMergeRequest` | Boolean! | Whether or not a user can perform `revert_on_current_merge_request` on this resource | | `revertOnCurrentMergeRequest` | Boolean! | Indicates the user can perform `revert_on_current_merge_request` on this resource |
### MergeRequestSetAssigneesPayload ### MergeRequestSetAssigneesPayload
...@@ -611,11 +611,11 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -611,11 +611,11 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `readNote` | Boolean! | Whether or not a user can perform `read_note` on this resource | | `readNote` | Boolean! | Indicates the user can perform `read_note` on this resource |
| `createNote` | Boolean! | Whether or not a user can perform `create_note` on this resource | | `createNote` | Boolean! | Indicates the user can perform `create_note` on this resource |
| `adminNote` | Boolean! | Whether or not a user can perform `admin_note` on this resource | | `adminNote` | Boolean! | Indicates the user can perform `admin_note` on this resource |
| `resolveNote` | Boolean! | Whether or not a user can perform `resolve_note` on this resource | | `resolveNote` | Boolean! | Indicates the user can perform `resolve_note` on this resource |
| `awardEmoji` | Boolean! | Whether or not a user can perform `award_emoji` on this resource | | `awardEmoji` | Boolean! | Indicates the user can perform `award_emoji` on this resource |
### PageInfo ### PageInfo
...@@ -649,9 +649,9 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -649,9 +649,9 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `updatePipeline` | Boolean! | Whether or not a user can perform `update_pipeline` on this resource | | `updatePipeline` | Boolean! | Indicates the user can perform `update_pipeline` on this resource |
| `adminPipeline` | Boolean! | Whether or not a user can perform `admin_pipeline` on this resource | | `adminPipeline` | Boolean! | Indicates the user can perform `admin_pipeline` on this resource |
| `destroyPipeline` | Boolean! | Whether or not a user can perform `destroy_pipeline` on this resource | | `destroyPipeline` | Boolean! | Indicates the user can perform `destroy_pipeline` on this resource |
### Project ### Project
...@@ -673,7 +673,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -673,7 +673,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| `forksCount` | Int! | Number of times the project has been forked | | `forksCount` | Int! | Number of times the project has been forked |
| `createdAt` | Time | Timestamp of the project creation | | `createdAt` | Time | Timestamp of the project creation |
| `lastActivityAt` | Time | Timestamp of the project last activity | | `lastActivityAt` | Time | Timestamp of the project last activity |
| `archived` | Boolean | Archived status of the project | | `archived` | Boolean | Indicates the archived status of the project |
| `visibility` | String | Visibility of the project | | `visibility` | String | Visibility of the project |
| `containerRegistryEnabled` | Boolean | Indicates if the project stores Docker container images in a container registry | | `containerRegistryEnabled` | Boolean | Indicates if the project stores Docker container images in a container registry |
| `sharedRunnersEnabled` | Boolean | Indicates if shared runners are enabled on the project | | `sharedRunnersEnabled` | Boolean | Indicates if shared runners are enabled on the project |
...@@ -707,47 +707,47 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -707,47 +707,47 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `changeNamespace` | Boolean! | Whether or not a user can perform `change_namespace` on this resource | | `changeNamespace` | Boolean! | Indicates the user can perform `change_namespace` on this resource |
| `changeVisibilityLevel` | Boolean! | Whether or not a user can perform `change_visibility_level` on this resource | | `changeVisibilityLevel` | Boolean! | Indicates the user can perform `change_visibility_level` on this resource |
| `renameProject` | Boolean! | Whether or not a user can perform `rename_project` on this resource | | `renameProject` | Boolean! | Indicates the user can perform `rename_project` on this resource |
| `removeProject` | Boolean! | Whether or not a user can perform `remove_project` on this resource | | `removeProject` | Boolean! | Indicates the user can perform `remove_project` on this resource |
| `archiveProject` | Boolean! | Whether or not a user can perform `archive_project` on this resource | | `archiveProject` | Boolean! | Indicates the user can perform `archive_project` on this resource |
| `removeForkProject` | Boolean! | Whether or not a user can perform `remove_fork_project` on this resource | | `removeForkProject` | Boolean! | Indicates the user can perform `remove_fork_project` on this resource |
| `removePages` | Boolean! | Whether or not a user can perform `remove_pages` on this resource | | `removePages` | Boolean! | Indicates the user can perform `remove_pages` on this resource |
| `readProject` | Boolean! | Whether or not a user can perform `read_project` on this resource | | `readProject` | Boolean! | Indicates the user can perform `read_project` on this resource |
| `createMergeRequestIn` | Boolean! | Whether or not a user can perform `create_merge_request_in` on this resource | | `createMergeRequestIn` | Boolean! | Indicates the user can perform `create_merge_request_in` on this resource |
| `readWiki` | Boolean! | Whether or not a user can perform `read_wiki` on this resource | | `readWiki` | Boolean! | Indicates the user can perform `read_wiki` on this resource |
| `readProjectMember` | Boolean! | Whether or not a user can perform `read_project_member` on this resource | | `readProjectMember` | Boolean! | Indicates the user can perform `read_project_member` on this resource |
| `createIssue` | Boolean! | Whether or not a user can perform `create_issue` on this resource | | `createIssue` | Boolean! | Indicates the user can perform `create_issue` on this resource |
| `uploadFile` | Boolean! | Whether or not a user can perform `upload_file` on this resource | | `uploadFile` | Boolean! | Indicates the user can perform `upload_file` on this resource |
| `readCycleAnalytics` | Boolean! | Whether or not a user can perform `read_cycle_analytics` on this resource | | `readCycleAnalytics` | Boolean! | Indicates the user can perform `read_cycle_analytics` on this resource |
| `downloadCode` | Boolean! | Whether or not a user can perform `download_code` on this resource | | `downloadCode` | Boolean! | Indicates the user can perform `download_code` on this resource |
| `downloadWikiCode` | Boolean! | Whether or not a user can perform `download_wiki_code` on this resource | | `downloadWikiCode` | Boolean! | Indicates the user can perform `download_wiki_code` on this resource |
| `forkProject` | Boolean! | Whether or not a user can perform `fork_project` on this resource | | `forkProject` | Boolean! | Indicates the user can perform `fork_project` on this resource |
| `readCommitStatus` | Boolean! | Whether or not a user can perform `read_commit_status` on this resource | | `readCommitStatus` | Boolean! | Indicates the user can perform `read_commit_status` on this resource |
| `requestAccess` | Boolean! | Whether or not a user can perform `request_access` on this resource | | `requestAccess` | Boolean! | Indicates the user can perform `request_access` on this resource |
| `createPipeline` | Boolean! | Whether or not a user can perform `create_pipeline` on this resource | | `createPipeline` | Boolean! | Indicates the user can perform `create_pipeline` on this resource |
| `createPipelineSchedule` | Boolean! | Whether or not a user can perform `create_pipeline_schedule` on this resource | | `createPipelineSchedule` | Boolean! | Indicates the user can perform `create_pipeline_schedule` on this resource |
| `createMergeRequestFrom` | Boolean! | Whether or not a user can perform `create_merge_request_from` on this resource | | `createMergeRequestFrom` | Boolean! | Indicates the user can perform `create_merge_request_from` on this resource |
| `createWiki` | Boolean! | Whether or not a user can perform `create_wiki` on this resource | | `createWiki` | Boolean! | Indicates the user can perform `create_wiki` on this resource |
| `pushCode` | Boolean! | Whether or not a user can perform `push_code` on this resource | | `pushCode` | Boolean! | Indicates the user can perform `push_code` on this resource |
| `createDeployment` | Boolean! | Whether or not a user can perform `create_deployment` on this resource | | `createDeployment` | Boolean! | Indicates the user can perform `create_deployment` on this resource |
| `pushToDeleteProtectedBranch` | Boolean! | Whether or not a user can perform `push_to_delete_protected_branch` on this resource | | `pushToDeleteProtectedBranch` | Boolean! | Indicates the user can perform `push_to_delete_protected_branch` on this resource |
| `adminWiki` | Boolean! | Whether or not a user can perform `admin_wiki` on this resource | | `adminWiki` | Boolean! | Indicates the user can perform `admin_wiki` on this resource |
| `adminProject` | Boolean! | Whether or not a user can perform `admin_project` on this resource | | `adminProject` | Boolean! | Indicates the user can perform `admin_project` on this resource |
| `updatePages` | Boolean! | Whether or not a user can perform `update_pages` on this resource | | `updatePages` | Boolean! | Indicates the user can perform `update_pages` on this resource |
| `adminRemoteMirror` | Boolean! | Whether or not a user can perform `admin_remote_mirror` on this resource | | `adminRemoteMirror` | Boolean! | Indicates the user can perform `admin_remote_mirror` on this resource |
| `createLabel` | Boolean! | Whether or not a user can perform `create_label` on this resource | | `createLabel` | Boolean! | Indicates the user can perform `create_label` on this resource |
| `updateWiki` | Boolean! | Whether or not a user can perform `update_wiki` on this resource | | `updateWiki` | Boolean! | Indicates the user can perform `update_wiki` on this resource |
| `destroyWiki` | Boolean! | Whether or not a user can perform `destroy_wiki` on this resource | | `destroyWiki` | Boolean! | Indicates the user can perform `destroy_wiki` on this resource |
| `createPages` | Boolean! | Whether or not a user can perform `create_pages` on this resource | | `createPages` | Boolean! | Indicates the user can perform `create_pages` on this resource |
| `destroyPages` | Boolean! | Whether or not a user can perform `destroy_pages` on this resource | | `destroyPages` | Boolean! | Indicates the user can perform `destroy_pages` on this resource |
| `readPagesContent` | Boolean! | Whether or not a user can perform `read_pages_content` on this resource | | `readPagesContent` | Boolean! | Indicates the user can perform `read_pages_content` on this resource |
| `adminOperations` | Boolean! | Whether or not a user can perform `admin_operations` on this resource | | `adminOperations` | Boolean! | Indicates the user can perform `admin_operations` on this resource |
| `createSnippet` | Boolean! | Whether or not a user can perform `create_snippet` on this resource | | `createSnippet` | Boolean! | Indicates the user can perform `create_snippet` on this resource |
| `readDesign` | Boolean! | Whether or not a user can perform `read_design` on this resource | | `readDesign` | Boolean! | Indicates the user can perform `read_design` on this resource |
| `createDesign` | Boolean! | Whether or not a user can perform `create_design` on this resource | | `createDesign` | Boolean! | Indicates the user can perform `create_design` on this resource |
| `destroyDesign` | Boolean! | Whether or not a user can perform `destroy_design` on this resource | | `destroyDesign` | Boolean! | Indicates the user can perform `destroy_design` on this resource |
### ProjectStatistics ### ProjectStatistics
...@@ -845,12 +845,12 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -845,12 +845,12 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `createNote` | Boolean! | Whether or not a user can perform `create_note` on this resource | | `createNote` | Boolean! | Indicates the user can perform `create_note` on this resource |
| `awardEmoji` | Boolean! | Whether or not a user can perform `award_emoji` on this resource | | `awardEmoji` | Boolean! | Indicates the user can perform `award_emoji` on this resource |
| `readSnippet` | Boolean! | Whether or not a user can perform `read_snippet` on this resource | | `readSnippet` | Boolean! | Indicates the user can perform `read_snippet` on this resource |
| `updateSnippet` | Boolean! | Whether or not a user can perform `update_snippet` on this resource | | `updateSnippet` | Boolean! | Indicates the user can perform `update_snippet` on this resource |
| `adminSnippet` | Boolean! | Whether or not a user can perform `admin_snippet` on this resource | | `adminSnippet` | Boolean! | Indicates the user can perform `admin_snippet` on this resource |
| `reportSnippet` | Boolean! | Whether or not a user can perform `report_snippet` on this resource | | `reportSnippet` | Boolean! | Indicates the user can perform `report_snippet` on this resource |
### Submodule ### Submodule
...@@ -926,7 +926,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -926,7 +926,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| `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 | Reasons why the mutation failed. | | `errors` | String! => Array | Reasons why the mutation failed. |
| `awardEmoji` | AwardEmoji | The award emoji after mutation | | `awardEmoji` | AwardEmoji | The award emoji after mutation |
| `toggledOn` | Boolean! | True when the emoji was awarded, false when it was removed | | `toggledOn` | Boolean! | Indicates the status of the emoji. True if the toggle awarded the emoji, and false if the toggle removed the emoji. |
### Tree ### Tree
...@@ -984,4 +984,4 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph ...@@ -984,4 +984,4 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| Name | Type | Description | | Name | Type | Description |
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `createSnippet` | Boolean! | Whether or not a user can perform `create_snippet` on this resource | | `createSnippet` | Boolean! | Indicates the user can perform `create_snippet` on this resource |
...@@ -210,7 +210,7 @@ class MergeRequestPermissionsType < BasePermissionType ...@@ -210,7 +210,7 @@ class MergeRequestPermissionsType < BasePermissionType
abilities :admin_merge_request, :update_merge_request, :create_note abilities :admin_merge_request, :update_merge_request, :create_note
ability_field :resolve_note, ability_field :resolve_note,
description: 'Whether or not the user can resolve disussions on the merge request' description: 'Indicates the user can resolve discussions on the merge request'
permission_field :push_to_source_branch, method: :can_push_to_source_branch? permission_field :push_to_source_branch, method: :can_push_to_source_branch?
end end
``` ```
......
...@@ -98,7 +98,7 @@ module Types ...@@ -98,7 +98,7 @@ module Types
method: :subscribed?, method: :subscribed?,
null: false, null: false,
complexity: 5, complexity: 5,
description: 'Boolean flag for whether the currently logged in user is subscribed to this epic' description: 'Indicates the currently logged in user is subscribed to the epic'
field :issues, field :issues,
Types::EpicIssueType.connection_type, Types::EpicIssueType.connection_type,
......
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