Skip to content

Commit

Permalink
Merge branch 'main' into MR2011-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
MR2011 authored Jul 12, 2024
2 parents d5ebfde + a1ab4ed commit 4374f8f
Show file tree
Hide file tree
Showing 40 changed files with 4,588 additions and 248 deletions.
1,579 changes: 1,382 additions & 197 deletions internal/api/graphql/graph/generated.go

Large diffs are not rendered by default.

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

mutation ($activityId: ID!, $serviceId: ID!) {
addServiceToActivity (
activityId: $activityId,
serviceId: $serviceId
) {
id
services {
edges {
node {
id
name
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($activityId: ID!, $serviceId: ID!) {
removeServiceFromActivity (
serviceId: $serviceId,
activityId: $activityId
) {
id
services {
edges {
node {
id
name
}
}
}
}
}
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
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($serviceId: ID!, $issueRepositoryId: ID!, $priority: Int!) {
addIssueRepositoryToService (
serviceId: $serviceId,
issueRepositoryId: $issueRepositoryId,
priority: $priority
) {
id
name
issueRepositories {
edges {
node {
id
name
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($serviceId: ID!, $userId: ID!) {
addOwnerToService (
serviceId: $serviceId,
userId: $userId
) {
id
name
owners {
edges {
node {
id
name
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($serviceId: ID!, $issueRepositoryId: ID!) {
removeIssueRepositoryFromService (
serviceId: $serviceId,
issueRepositoryId: $issueRepositoryId
) {
id
name
issueRepositories {
edges {
node {
id
name
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($serviceId: ID!, $userId: ID!) {
removeOwnerFromService (
serviceId: $serviceId,
userId: $userId
) {
id
name
owners{
edges {
node {
id
name
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($supportGroupId: ID!, $serviceId: ID!) {
addServiceToSupportGroup (
supportGroupId: $supportGroupId,
serviceId: $serviceId
) {
id
name
services {
edges {
node {
id
name
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors
# SPDX-License-Identifier: Apache-2.0

mutation ($supportGroupId: ID!, $serviceId: ID!) {
removeServiceFromSupportGroup (
serviceId: $serviceId,
supportGroupId: $supportGroupId
) {
id
name
services {
edges {
node {
id
name
}
}
}
}
}
Loading

0 comments on commit 4374f8f

Please sign in to comment.