Skip to content

Commit

Permalink
feat(issueMatch): add add/remove evidence mutation (#68)
Browse files Browse the repository at this point in the history
* feat(issueMatch): add add/remove evidence mutation

* feat(issueMatch): add add/remove evidence mutation
  • Loading branch information
MR2011 authored Jul 12, 2024
1 parent 295d4c7 commit a1ab4ed
Show file tree
Hide file tree
Showing 14 changed files with 1,108 additions and 52 deletions.
264 changes: 264 additions & 0 deletions internal/api/graphql/graph/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($issueMatchId: ID!, $evidenceId: ID!) {
addEvidenceToIssueMatch (
issueMatchId: $issueMatchId,
evidenceId: $evidenceId
) {
id
evidences {
edges {
node {
id
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($issueMatchId: ID!, $evidenceId: ID!) {
removeEvidenceFromIssueMatch (
issueMatchId: $issueMatchId,
evidenceId: $evidenceId
) {
id
evidences {
edges {
node {
id
}
}
}
}
}
Loading

0 comments on commit a1ab4ed

Please sign in to comment.