suppressIssueForTeam
Mutation:suppressIssueForTeamSuppress 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
| Field | Type | Description |
|---|---|---|
| input | SuppressIssueForTeamInput! | Input for suppressIssueForTeam mutation. |
Sample Request
Sample Response
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
| Field | Type | Description |
|---|---|---|
| input | UnsuppressIssueForTeamInput! | Input for unsuppressIssueForTeam mutation. |
Sample Request
Sample Response
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 aTeamMember and its cursor.
| Field | Type | Description |
|---|---|---|
| node | TeamMember | The item at the end of the edge. |
| cursor | String! | A cursor for use in pagination. |
SuppressIssueForTeamInput
Input forsuppressIssueForTeam 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. |
UnsuppressIssueForTeamInput
Input forunsuppressIssueForTeam 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. |