suppressIssueForTeam
Mutation:suppressIssueForTeam
Suppress an issue from an analyzer on the team level, affecting all repositories. Only users with ADMIN
permission on the repository can trigger this mutation.
Arguments
Sample Request
mutation ($input: SuppressIssueForTeamInput!) {
suppressIssueForTeam(input: $input) {
ok
}
}
{
"input": {
"issueShortcode": "PYL-E0712",
"login": "deepsourcelabs",
"vcsProvider": "GITHUB"
}
}
Sample Response
{
"data": {
"suppressIssueForTeam": {
"ok": true
}
}
}
unsuppressIssueForTeam
Mutation:unsuppressIssueForTeam
Remove a suppressed issue from an analyzer on the team level, affecting all repositories. Only users with ADMIN
permission on the repository can trigger this mutation.
Arguments
Sample Request
mutation ($input: UnsuppressIssueForTeamInput!) {
unsuppressIssueForTeam(input: $input) {
ok
}
}
{
"input": {
"issueShortcode": "PYL-E0712",
"login": "deepsourcelabs",
"vcsProvider": "GITHUB"
}
}
Sample Response
{
"data": {
"unsuppressIssueForTeam": {
"ok": true
}
}
}
Objects
TeamMember
Represents a user within a team.
Field | Type | Description |
---|
id | ID! | The ID of the object. |
user | User! | The User instance. |
role | TeamMemberRole! | The role this user has in the team. |
isOwner | Boolean! | Whether this user is the owner of the team. |
joinedAt | DateTime! | The time when this user joined the team. |
TeamMemberConnection
Field | Type | Description |
---|
pageInfo | PageInfo! | Pagination data for this connection. |
edges | TeamMemberEdge! | Contains the nodes in this connection. |
totalCount | Int | |
TeamMemberEdge
A Relay edge containing a TeamMember
and its cursor.
Field | Type | Description |
---|
node | TeamMember | The item at the end of the edge. |
cursor | String! | A cursor for use in pagination. |
Input for suppressIssueForTeam
mutation.
Field | Type | Description |
---|
issueShortcode | String! | The issue’s shortcode. |
login | String! | The login or username of the account/team. |
vcsProvider | VCSProvider! | The VCS provider of the account/team. |
Input for unsuppressIssueForTeam
mutation.
Field | Type | Description |
---|
issueShortcode | String! | The issue’s shortcode. |
login | String! | The login or username of the account/team. |
vcsProvider | VCSProvider! | The VCS provider of the account/team. |
Responses are generated using AI and may contain mistakes.