generated from cloudoperators/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into MR2011-patch-1
- Loading branch information
Showing
40 changed files
with
4,588 additions
and
248 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
internal/api/graphql/graph/queryCollection/activity/addService.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
internal/api/graphql/graph/queryCollection/activity/removeService.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
internal/api/graphql/graph/queryCollection/issueMatch/addEvidence.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
internal/api/graphql/graph/queryCollection/issueMatch/removeEvidence.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
internal/api/graphql/graph/queryCollection/service/addIssueRepository.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
internal/api/graphql/graph/queryCollection/service/addOwner.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
internal/api/graphql/graph/queryCollection/service/removeIssueRepository.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
internal/api/graphql/graph/queryCollection/service/removeOwner.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
internal/api/graphql/graph/queryCollection/supportGroup/addService.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
internal/api/graphql/graph/queryCollection/supportGroup/removeService.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.