From 09986b78f430f5bd385bb655f38299ef96905340 Mon Sep 17 00:00:00 2001 From: dustindemmerle <62643485+dustindemmerle@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:34:41 +0200 Subject: [PATCH] chore(housekeeping): rename module name (#208) * feat: add service wild card search added wild card search for services * feat(Service): add service wild card search * remove issue_match_test for PR * git * chore(housekeeping): rename module name * chore(housekeeping): rename module name * chore(housekeeping): rename module name * rename module names --------- Co-authored-by: David Rochow --- .mockery.yaml | 4 +- cmd/heureka/main.go | 8 +- go.mod | 2 +- internal/api/graphql/access/auth.go | 2 +- internal/api/graphql/access/test/util.go | 2 +- internal/api/graphql/access/token_auth.go | 2 +- .../api/graphql/access/token_auth_test.go | 8 +- internal/api/graphql/gqlgen.yml | 2 +- .../graphql/graph/baseResolver/activity.go | 6 +- .../api/graphql/graph/baseResolver/common.go | 2 +- .../graphql/graph/baseResolver/component.go | 6 +- .../graph/baseResolver/component_instance.go | 6 +- .../graph/baseResolver/component_version.go | 6 +- .../graphql/graph/baseResolver/evidence.go | 6 +- .../api/graphql/graph/baseResolver/issue.go | 6 +- .../graphql/graph/baseResolver/issue_match.go | 6 +- .../graph/baseResolver/issue_match_change.go | 6 +- .../graph/baseResolver/issue_repository.go | 6 +- .../graph/baseResolver/issue_variant.go | 6 +- .../api/graphql/graph/baseResolver/service.go | 6 +- .../graph/baseResolver/support_group.go | 8 +- .../api/graphql/graph/baseResolver/user.go | 6 +- internal/api/graphql/graph/generated.go | 812 +++++++++--------- internal/api/graphql/graph/model/models.go | 4 +- .../api/graphql/graph/resolver/activity.go | 6 +- .../api/graphql/graph/resolver/component.go | 6 +- .../graph/resolver/component_instance.go | 8 +- .../graph/resolver/component_version.go | 8 +- .../api/graphql/graph/resolver/evidence.go | 8 +- internal/api/graphql/graph/resolver/issue.go | 6 +- .../api/graphql/graph/resolver/issue_match.go | 10 +- .../graph/resolver/issue_match_change.go | 8 +- .../resolver/issue_match_filter_value.go | 6 +- .../graph/resolver/issue_repository.go | 6 +- .../graphql/graph/resolver/issue_variant.go | 8 +- .../api/graphql/graph/resolver/mutation.go | 6 +- internal/api/graphql/graph/resolver/query.go | 6 +- .../api/graphql/graph/resolver/resolver.go | 4 +- .../api/graphql/graph/resolver/service.go | 6 +- .../graphql/graph/resolver/service_filter.go | 6 +- .../graphql/graph/resolver/support_group.go | 6 +- internal/api/graphql/graph/resolver/user.go | 6 +- internal/api/graphql/server.go | 10 +- internal/app/activity/activity_handler.go | 9 +- .../app/activity/activity_handler_events.go | 4 +- .../activity/activity_handler_interface.go | 2 +- .../app/activity/activity_handler_test.go | 13 +- internal/app/common/pagination_helpers.go | 5 +- internal/app/component/component_handler.go | 9 +- .../app/component/component_handler_events.go | 4 +- .../component/component_handler_interface.go | 2 +- .../app/component/component_handler_test.go | 11 +- .../component_instance_handler.go | 9 +- .../component_instance_handler_events.go | 4 +- .../component_instance_handler_interface.go | 2 +- .../component_instance_handler_test.go | 15 +- .../component_version_handler.go | 9 +- .../component_version_handler_events.go | 4 +- .../component_version_handler_interface.go | 2 +- .../component_version_handler_test.go | 15 +- internal/app/evidence/evidence_handler.go | 9 +- .../app/evidence/evidence_handler_events.go | 4 +- .../evidence/evidence_handler_interface.go | 2 +- .../app/evidence/evidence_handler_test.go | 15 +- internal/app/heureka.go | 32 +- internal/app/interface.go | 28 +- internal/app/issue/issue_handler.go | 11 +- internal/app/issue/issue_handler_events.go | 4 +- internal/app/issue/issue_handler_interface.go | 2 +- internal/app/issue/issue_handler_test.go | 11 +- .../app/issue_match/issue_match_handler.go | 13 +- .../issue_match/issue_match_handler_events.go | 4 +- .../issue_match/issue_match_handler_test.go | 17 +- .../app/issue_match/issue_match_interface.go | 2 +- .../issue_match_change_handler.go | 11 +- .../issue_match_change_handler_test.go | 15 +- .../issue_match_handler_events.go | 4 +- .../issue_match_handler_interface.go | 2 +- .../issue_repository_handler.go | 9 +- .../issue_repository_handler_events.go | 4 +- .../issue_repository_handler_interface.go | 2 +- .../issue_repository_handler_test.go | 15 +- .../issue_variant/issue_variant_handler.go | 11 +- .../issue_variant_handler_events.go | 4 +- .../issue_variant_handler_interface.go | 2 +- .../issue_variant_handler_test.go | 17 +- internal/app/service/service_handler.go | 9 +- .../app/service/service_handler_events.go | 4 +- .../app/service/service_handler_interface.go | 2 +- internal/app/service/service_handler_test.go | 11 +- internal/app/severity/severity_handler.go | 8 +- .../app/severity/severity_handler_events.go | 4 +- .../severity/severity_handler_interface.go | 2 +- .../app/severity/severity_handler_test.go | 17 +- .../support_group/support_group_handler.go | 9 +- .../support_group_handler_events.go | 4 +- .../support_group_handler_interface.go | 2 +- .../support_group_handler_test.go | 15 +- internal/app/user/user_handler.go | 9 +- internal/app/user/user_handler_events.go | 4 +- internal/app/user/user_handler_interface.go | 2 +- internal/app/user/user_handler_test.go | 15 +- internal/database/interface.go | 2 +- internal/database/mariadb/activity.go | 2 +- internal/database/mariadb/activity_test.go | 6 +- internal/database/mariadb/component.go | 2 +- .../database/mariadb/component_instance.go | 2 +- .../mariadb/component_instance_test.go | 6 +- internal/database/mariadb/component_test.go | 8 +- .../database/mariadb/component_version.go | 2 +- .../mariadb/component_version_test.go | 6 +- internal/database/mariadb/database.go | 6 +- internal/database/mariadb/entity.go | 2 +- internal/database/mariadb/evidence.go | 2 +- internal/database/mariadb/evidence_test.go | 6 +- .../mariadb/internal/mocks/mock_Database.go | 2 +- .../mariadb/internal/mocks/mock_Heureka.go | 2 +- internal/database/mariadb/issue.go | 2 +- internal/database/mariadb/issue_match.go | 2 +- .../database/mariadb/issue_match_change.go | 2 +- .../mariadb/issue_match_change_test.go | 6 +- internal/database/mariadb/issue_match_test.go | 6 +- internal/database/mariadb/issue_repository.go | 2 +- .../database/mariadb/issue_repository_test.go | 6 +- internal/database/mariadb/issue_test.go | 8 +- internal/database/mariadb/issue_variant.go | 2 +- .../database/mariadb/issue_variant_test.go | 6 +- .../database/mariadb/mariadb_suite_test.go | 11 +- internal/database/mariadb/service.go | 2 +- internal/database/mariadb/service_test.go | 10 +- internal/database/mariadb/support_group.go | 2 +- .../database/mariadb/support_group_test.go | 6 +- internal/database/mariadb/test/common.go | 2 +- .../database/mariadb/test/database_manager.go | 6 +- internal/database/mariadb/test/fixture.go | 6 +- internal/database/mariadb/user.go | 2 +- internal/database/mariadb/user_test.go | 6 +- internal/e2e/activity_query_test.go | 18 +- internal/e2e/component_instance_query_test.go | 16 +- internal/e2e/component_query_test.go | 16 +- internal/e2e/component_version_query_test.go | 16 +- internal/e2e/e2e_suite_test.go | 13 +- internal/e2e/evidence_query_test.go | 18 +- internal/e2e/issue_match_change_test.go | 16 +- internal/e2e/issue_match_query_test.go | 18 +- internal/e2e/issue_query_test.go | 16 +- internal/e2e/issue_repository_query_test.go | 18 +- internal/e2e/issue_variant_query_test.go | 16 +- internal/e2e/service_filter_query_test.go | 12 +- internal/e2e/service_query_test.go | 16 +- internal/e2e/support_group_query_test.go | 18 +- internal/e2e/token_auth_test.go | 8 +- internal/e2e/user_query_test.go | 16 +- internal/entity/common.go | 3 +- internal/entity/test/activity.go | 2 +- internal/entity/test/component.go | 2 +- internal/entity/test/component_instance.go | 2 +- internal/entity/test/component_version.go | 2 +- internal/entity/test/evidence.go | 4 +- internal/entity/test/issue.go | 2 +- internal/entity/test/issue_match.go | 4 +- internal/entity/test/issue_match_change.go | 2 +- internal/entity/test/issue_repository.go | 2 +- internal/entity/test/issue_variant.go | 4 +- internal/entity/test/service.go | 2 +- internal/entity/test/support_group.go | 2 +- internal/entity/test/user.go | 2 +- internal/mocks/mock_Database.go | 4 +- internal/mocks/mock_Heureka.go | 168 ++-- internal/server/server.go | 9 +- 170 files changed, 1096 insertions(+), 1066 deletions(-) diff --git a/.mockery.yaml b/.mockery.yaml index 680540d3..879ea21f 100644 --- a/.mockery.yaml +++ b/.mockery.yaml @@ -6,9 +6,9 @@ dir: ./internal/mocks filename: "mock_{{.InterfaceName}}.go" outpkg: "mocks" packages: - github.wdf.sap.corp/cc/heureka/internal/database: + github.com/cloudoperators/heureka/internal/database: interfaces: Database: - github.wdf.sap.corp/cc/heureka/internal/app: + github.com/cloudoperators/heureka/internal/app: interfaces: Heureka: \ No newline at end of file diff --git a/cmd/heureka/main.go b/cmd/heureka/main.go index 82d94027..6240434e 100644 --- a/cmd/heureka/main.go +++ b/cmd/heureka/main.go @@ -6,12 +6,12 @@ package main import ( "fmt" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/util" + "github.com/cloudoperators/heureka/pkg/log" "github.com/kelseyhightower/envconfig" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/server" - "github.wdf.sap.corp/cc/heureka/internal/util" - "github.wdf.sap.corp/cc/heureka/pkg/log" ) var ( diff --git a/go.mod b/go.mod index e71a4ba2..f47e913c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.wdf.sap.corp/cc/heureka +module github.com/cloudoperators/heureka go 1.22.6 diff --git a/internal/api/graphql/access/auth.go b/internal/api/graphql/access/auth.go index 1006c884..4df956d1 100644 --- a/internal/api/graphql/access/auth.go +++ b/internal/api/graphql/access/auth.go @@ -9,7 +9,7 @@ import ( "github.com/gin-gonic/gin" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/util" + "github.com/cloudoperators/heureka/internal/util" ) type Logger interface { diff --git a/internal/api/graphql/access/test/util.go b/internal/api/graphql/access/test/util.go index 01c926c5..51ad46ae 100644 --- a/internal/api/graphql/access/test/util.go +++ b/internal/api/graphql/access/test/util.go @@ -11,7 +11,7 @@ import ( "net/http" "time" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/access" + "github.com/cloudoperators/heureka/internal/api/graphql/access" "github.com/golang-jwt/jwt/v5" diff --git a/internal/api/graphql/access/token_auth.go b/internal/api/graphql/access/token_auth.go index 0890e350..d661c598 100644 --- a/internal/api/graphql/access/token_auth.go +++ b/internal/api/graphql/access/token_auth.go @@ -12,7 +12,7 @@ import ( "github.com/gin-gonic/gin" "github.com/golang-jwt/jwt/v5" - "github.wdf.sap.corp/cc/heureka/internal/util" + "github.com/cloudoperators/heureka/internal/util" ) const ( diff --git a/internal/api/graphql/access/token_auth_test.go b/internal/api/graphql/access/token_auth_test.go index 8192ad8c..5a2b6cff 100644 --- a/internal/api/graphql/access/token_auth_test.go +++ b/internal/api/graphql/access/token_auth_test.go @@ -13,13 +13,13 @@ import ( . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - . "github.wdf.sap.corp/cc/heureka/internal/api/graphql/access/test" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + . "github.com/cloudoperators/heureka/internal/api/graphql/access/test" + util2 "github.com/cloudoperators/heureka/pkg/util" "github.com/gin-gonic/gin" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/access" - "github.wdf.sap.corp/cc/heureka/internal/util" + "github.com/cloudoperators/heureka/internal/api/graphql/access" + "github.com/cloudoperators/heureka/internal/util" ) const ( diff --git a/internal/api/graphql/gqlgen.yml b/internal/api/graphql/gqlgen.yml index a9d55b18..72a7cc00 100644 --- a/internal/api/graphql/gqlgen.yml +++ b/internal/api/graphql/gqlgen.yml @@ -66,7 +66,7 @@ resolver: # gqlgen will search for any type names in the schema in these go packages # if they match it will use them, otherwise it will generate them. autobind: - - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + - "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" # This section declares type mapping between the GraphQL and go type systems # diff --git a/internal/api/graphql/graph/baseResolver/activity.go b/internal/api/graphql/graph/baseResolver/activity.go index 4474a83c..c078e632 100644 --- a/internal/api/graphql/graph/baseResolver/activity.go +++ b/internal/api/graphql/graph/baseResolver/activity.go @@ -6,10 +6,10 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleActivityBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.Activity, error) { diff --git a/internal/api/graphql/graph/baseResolver/common.go b/internal/api/graphql/graph/baseResolver/common.go index 0696d1e0..dddee8c9 100644 --- a/internal/api/graphql/graph/baseResolver/common.go +++ b/internal/api/graphql/graph/baseResolver/common.go @@ -9,8 +9,8 @@ import ( "strconv" "github.com/99designs/gqlgen/graphql" + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var ( diff --git a/internal/api/graphql/graph/baseResolver/component.go b/internal/api/graphql/graph/baseResolver/component.go index 40460e31..8d0d5204 100644 --- a/internal/api/graphql/graph/baseResolver/component.go +++ b/internal/api/graphql/graph/baseResolver/component.go @@ -6,10 +6,10 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleComponentBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.Component, error) { diff --git a/internal/api/graphql/graph/baseResolver/component_instance.go b/internal/api/graphql/graph/baseResolver/component_instance.go index fd6c1fe6..55ee124c 100644 --- a/internal/api/graphql/graph/baseResolver/component_instance.go +++ b/internal/api/graphql/graph/baseResolver/component_instance.go @@ -6,10 +6,10 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleComponentInstanceBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.ComponentInstance, error) { diff --git a/internal/api/graphql/graph/baseResolver/component_version.go b/internal/api/graphql/graph/baseResolver/component_version.go index 8b08978d..541fae2f 100644 --- a/internal/api/graphql/graph/baseResolver/component_version.go +++ b/internal/api/graphql/graph/baseResolver/component_version.go @@ -6,10 +6,10 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleComponentVersionBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.ComponentVersion, error) { diff --git a/internal/api/graphql/graph/baseResolver/evidence.go b/internal/api/graphql/graph/baseResolver/evidence.go index ae885c49..3bc0b2bf 100644 --- a/internal/api/graphql/graph/baseResolver/evidence.go +++ b/internal/api/graphql/graph/baseResolver/evidence.go @@ -6,10 +6,10 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func EvidenceBaseResolver(app app.Heureka, ctx context.Context, filter *model.EvidenceFilter, first *int, after *string, parent *model.NodeParent) (*model.EvidenceConnection, error) { diff --git a/internal/api/graphql/graph/baseResolver/issue.go b/internal/api/graphql/graph/baseResolver/issue.go index d07a11d0..9cc8b6df 100644 --- a/internal/api/graphql/graph/baseResolver/issue.go +++ b/internal/api/graphql/graph/baseResolver/issue.go @@ -6,11 +6,11 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" "k8s.io/utils/pointer" ) diff --git a/internal/api/graphql/graph/baseResolver/issue_match.go b/internal/api/graphql/graph/baseResolver/issue_match.go index 9f582fab..2d59b5f9 100644 --- a/internal/api/graphql/graph/baseResolver/issue_match.go +++ b/internal/api/graphql/graph/baseResolver/issue_match.go @@ -6,11 +6,11 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" "k8s.io/utils/pointer" ) diff --git a/internal/api/graphql/graph/baseResolver/issue_match_change.go b/internal/api/graphql/graph/baseResolver/issue_match_change.go index 246b294a..9e97c867 100644 --- a/internal/api/graphql/graph/baseResolver/issue_match_change.go +++ b/internal/api/graphql/graph/baseResolver/issue_match_change.go @@ -6,11 +6,11 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" "k8s.io/utils/pointer" ) diff --git a/internal/api/graphql/graph/baseResolver/issue_repository.go b/internal/api/graphql/graph/baseResolver/issue_repository.go index 87d731bc..3d346f1c 100644 --- a/internal/api/graphql/graph/baseResolver/issue_repository.go +++ b/internal/api/graphql/graph/baseResolver/issue_repository.go @@ -6,11 +6,11 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleIssueRepositoryBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.IssueRepository, error) { diff --git a/internal/api/graphql/graph/baseResolver/issue_variant.go b/internal/api/graphql/graph/baseResolver/issue_variant.go index 2679911b..27ac6af8 100644 --- a/internal/api/graphql/graph/baseResolver/issue_variant.go +++ b/internal/api/graphql/graph/baseResolver/issue_variant.go @@ -6,10 +6,10 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleIssueVariantBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.IssueVariant, error) { diff --git a/internal/api/graphql/graph/baseResolver/service.go b/internal/api/graphql/graph/baseResolver/service.go index 88a2a959..5542352f 100644 --- a/internal/api/graphql/graph/baseResolver/service.go +++ b/internal/api/graphql/graph/baseResolver/service.go @@ -6,11 +6,11 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleServiceBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.Service, error) { diff --git a/internal/api/graphql/graph/baseResolver/support_group.go b/internal/api/graphql/graph/baseResolver/support_group.go index e2318226..649271e6 100644 --- a/internal/api/graphql/graph/baseResolver/support_group.go +++ b/internal/api/graphql/graph/baseResolver/support_group.go @@ -6,11 +6,11 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/util" ) func SupportGroupBaseResolver(app app.Heureka, ctx context.Context, filter *model.SupportGroupFilter, first *int, after *string, parent *model.NodeParent) (*model.SupportGroupConnection, error) { diff --git a/internal/api/graphql/graph/baseResolver/user.go b/internal/api/graphql/graph/baseResolver/user.go index e0889010..09079a38 100644 --- a/internal/api/graphql/graph/baseResolver/user.go +++ b/internal/api/graphql/graph/baseResolver/user.go @@ -6,10 +6,10 @@ package baseResolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func SingleUserBaseResolver(app app.Heureka, ctx context.Context, parent *model.NodeParent) (*model.User, error) { diff --git a/internal/api/graphql/graph/generated.go b/internal/api/graphql/graph/generated.go index 2322d77a..f7fba360 100644 --- a/internal/api/graphql/graph/generated.go +++ b/internal/api/graphql/graph/generated.go @@ -17,14 +17,12 @@ import ( "github.com/99designs/gqlgen/graphql" "github.com/99designs/gqlgen/graphql/introspection" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" gqlparser "github.com/vektah/gqlparser/v2" "github.com/vektah/gqlparser/v2/ast" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" ) -// region ************************** generated!.gotpl ************************** - -// NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface. +// region ************************** generated!.gotpl *******github.com/cloudoperatorsewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface. func NewExecutableSchema(cfg Config) graphql.ExecutableSchema { return &executableSchema{ schema: cfg.Schema, @@ -3572,7 +3570,7 @@ func (ec *executionContext) field_Activity_evidences_args(ctx context.Context, r var arg0 *model.EvidenceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOEvidenceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx, tmp) + arg0, err = ec.unmarshalOEvidenceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx, tmp) if err != nil { return nil, err } @@ -3605,7 +3603,7 @@ func (ec *executionContext) field_Activity_issueMatchChanges_args(ctx context.Co var arg0 *model.IssueMatchChangeFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueMatchChangeFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueMatchChangeFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx, tmp) if err != nil { return nil, err } @@ -3638,7 +3636,7 @@ func (ec *executionContext) field_Activity_issues_args(ctx context.Context, rawA var arg0 *model.IssueFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx, tmp) if err != nil { return nil, err } @@ -3671,7 +3669,7 @@ func (ec *executionContext) field_Activity_services_args(ctx context.Context, ra var arg0 *model.ServiceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) + arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) if err != nil { return nil, err } @@ -3704,7 +3702,7 @@ func (ec *executionContext) field_ComponentInstance_issueMatches_args(ctx contex var arg0 *model.IssueMatchFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) if err != nil { return nil, err } @@ -3785,7 +3783,7 @@ func (ec *executionContext) field_Component_componentVersions_args(ctx context.C var arg0 *model.ComponentVersionFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOComponentVersionFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx, tmp) + arg0, err = ec.unmarshalOComponentVersionFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx, tmp) if err != nil { return nil, err } @@ -3818,7 +3816,7 @@ func (ec *executionContext) field_Evidence_issueMatches_args(ctx context.Context var arg0 *model.IssueMatchFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) if err != nil { return nil, err } @@ -3851,7 +3849,7 @@ func (ec *executionContext) field_IssueMatchFilterValue_affectedService_args(ctx var arg0 *model.ServiceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) + arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) if err != nil { return nil, err } @@ -3866,7 +3864,7 @@ func (ec *executionContext) field_IssueMatchFilterValue_componentName_args(ctx c var arg0 *model.ComponentFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOComponentFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentFilter(ctx, tmp) + arg0, err = ec.unmarshalOComponentFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentFilter(ctx, tmp) if err != nil { return nil, err } @@ -3881,7 +3879,7 @@ func (ec *executionContext) field_IssueMatchFilterValue_primaryName_args(ctx con var arg0 *model.IssueFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx, tmp) if err != nil { return nil, err } @@ -3896,7 +3894,7 @@ func (ec *executionContext) field_IssueMatchFilterValue_supportGroupName_args(ct var arg0 *model.SupportGroupFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) + arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) if err != nil { return nil, err } @@ -3911,7 +3909,7 @@ func (ec *executionContext) field_IssueMatch_effectiveIssueVariants_args(ctx con var arg0 *model.IssueVariantFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) if err != nil { return nil, err } @@ -3944,7 +3942,7 @@ func (ec *executionContext) field_IssueMatch_evidences_args(ctx context.Context, var arg0 *model.EvidenceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOEvidenceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx, tmp) + arg0, err = ec.unmarshalOEvidenceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx, tmp) if err != nil { return nil, err } @@ -3977,7 +3975,7 @@ func (ec *executionContext) field_IssueMatch_issueMatchChanges_args(ctx context. var arg0 *model.IssueMatchChangeFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueMatchChangeFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueMatchChangeFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx, tmp) if err != nil { return nil, err } @@ -4010,7 +4008,7 @@ func (ec *executionContext) field_IssueRepository_issueVariants_args(ctx context var arg0 *model.IssueVariantFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) if err != nil { return nil, err } @@ -4043,7 +4041,7 @@ func (ec *executionContext) field_IssueRepository_services_args(ctx context.Cont var arg0 *model.ServiceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) + arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) if err != nil { return nil, err } @@ -4076,7 +4074,7 @@ func (ec *executionContext) field_Issue_activities_args(ctx context.Context, raw var arg0 *model.ActivityFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOActivityFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx, tmp) + arg0, err = ec.unmarshalOActivityFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx, tmp) if err != nil { return nil, err } @@ -4109,7 +4107,7 @@ func (ec *executionContext) field_Issue_componentVersions_args(ctx context.Conte var arg0 *model.ComponentVersionFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOComponentVersionFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx, tmp) + arg0, err = ec.unmarshalOComponentVersionFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx, tmp) if err != nil { return nil, err } @@ -4142,7 +4140,7 @@ func (ec *executionContext) field_Issue_issueMatches_args(ctx context.Context, r var arg0 *model.IssueMatchFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) if err != nil { return nil, err } @@ -4175,7 +4173,7 @@ func (ec *executionContext) field_Issue_issueVariants_args(ctx context.Context, var arg0 *model.IssueVariantFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) if err != nil { return nil, err } @@ -4409,7 +4407,7 @@ func (ec *executionContext) field_Mutation_createActivity_args(ctx context.Conte var arg0 model.ActivityInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNActivityInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityInput(ctx, tmp) + arg0, err = ec.unmarshalNActivityInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityInput(ctx, tmp) if err != nil { return nil, err } @@ -4424,7 +4422,7 @@ func (ec *executionContext) field_Mutation_createComponentInstance_args(ctx cont var arg0 model.ComponentInstanceInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNComponentInstanceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceInput(ctx, tmp) + arg0, err = ec.unmarshalNComponentInstanceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceInput(ctx, tmp) if err != nil { return nil, err } @@ -4439,7 +4437,7 @@ func (ec *executionContext) field_Mutation_createComponentVersion_args(ctx conte var arg0 model.ComponentVersionInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNComponentVersionInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionInput(ctx, tmp) + arg0, err = ec.unmarshalNComponentVersionInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionInput(ctx, tmp) if err != nil { return nil, err } @@ -4454,7 +4452,7 @@ func (ec *executionContext) field_Mutation_createComponent_args(ctx context.Cont var arg0 model.ComponentInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNComponentInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInput(ctx, tmp) + arg0, err = ec.unmarshalNComponentInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInput(ctx, tmp) if err != nil { return nil, err } @@ -4469,7 +4467,7 @@ func (ec *executionContext) field_Mutation_createEvidence_args(ctx context.Conte var arg0 model.EvidenceInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNEvidenceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceInput(ctx, tmp) + arg0, err = ec.unmarshalNEvidenceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceInput(ctx, tmp) if err != nil { return nil, err } @@ -4484,7 +4482,7 @@ func (ec *executionContext) field_Mutation_createIssueMatchChange_args(ctx conte var arg0 model.IssueMatchChangeInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNIssueMatchChangeInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeInput(ctx, tmp) + arg0, err = ec.unmarshalNIssueMatchChangeInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeInput(ctx, tmp) if err != nil { return nil, err } @@ -4499,7 +4497,7 @@ func (ec *executionContext) field_Mutation_createIssueMatch_args(ctx context.Con var arg0 model.IssueMatchInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNIssueMatchInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchInput(ctx, tmp) + arg0, err = ec.unmarshalNIssueMatchInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchInput(ctx, tmp) if err != nil { return nil, err } @@ -4514,7 +4512,7 @@ func (ec *executionContext) field_Mutation_createIssueRepository_args(ctx contex var arg0 model.IssueRepositoryInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNIssueRepositoryInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryInput(ctx, tmp) + arg0, err = ec.unmarshalNIssueRepositoryInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryInput(ctx, tmp) if err != nil { return nil, err } @@ -4529,7 +4527,7 @@ func (ec *executionContext) field_Mutation_createIssueVariant_args(ctx context.C var arg0 model.IssueVariantInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNIssueVariantInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantInput(ctx, tmp) + arg0, err = ec.unmarshalNIssueVariantInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantInput(ctx, tmp) if err != nil { return nil, err } @@ -4544,7 +4542,7 @@ func (ec *executionContext) field_Mutation_createIssue_args(ctx context.Context, var arg0 model.IssueInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNIssueInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueInput(ctx, tmp) + arg0, err = ec.unmarshalNIssueInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueInput(ctx, tmp) if err != nil { return nil, err } @@ -4559,7 +4557,7 @@ func (ec *executionContext) field_Mutation_createService_args(ctx context.Contex var arg0 model.ServiceInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNServiceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceInput(ctx, tmp) + arg0, err = ec.unmarshalNServiceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceInput(ctx, tmp) if err != nil { return nil, err } @@ -4574,7 +4572,7 @@ func (ec *executionContext) field_Mutation_createSupportGroup_args(ctx context.C var arg0 model.SupportGroupInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNSupportGroupInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupInput(ctx, tmp) + arg0, err = ec.unmarshalNSupportGroupInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupInput(ctx, tmp) if err != nil { return nil, err } @@ -4589,7 +4587,7 @@ func (ec *executionContext) field_Mutation_createUser_args(ctx context.Context, var arg0 model.UserInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg0, err = ec.unmarshalNUserInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserInput(ctx, tmp) + arg0, err = ec.unmarshalNUserInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserInput(ctx, tmp) if err != nil { return nil, err } @@ -5000,7 +4998,7 @@ func (ec *executionContext) field_Mutation_updateActivity_args(ctx context.Conte var arg1 model.ActivityInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNActivityInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityInput(ctx, tmp) + arg1, err = ec.unmarshalNActivityInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityInput(ctx, tmp) if err != nil { return nil, err } @@ -5024,7 +5022,7 @@ func (ec *executionContext) field_Mutation_updateComponentInstance_args(ctx cont var arg1 model.ComponentInstanceInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNComponentInstanceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceInput(ctx, tmp) + arg1, err = ec.unmarshalNComponentInstanceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceInput(ctx, tmp) if err != nil { return nil, err } @@ -5048,7 +5046,7 @@ func (ec *executionContext) field_Mutation_updateComponentVersion_args(ctx conte var arg1 model.ComponentVersionInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNComponentVersionInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionInput(ctx, tmp) + arg1, err = ec.unmarshalNComponentVersionInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionInput(ctx, tmp) if err != nil { return nil, err } @@ -5072,7 +5070,7 @@ func (ec *executionContext) field_Mutation_updateComponent_args(ctx context.Cont var arg1 model.ComponentInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNComponentInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInput(ctx, tmp) + arg1, err = ec.unmarshalNComponentInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInput(ctx, tmp) if err != nil { return nil, err } @@ -5096,7 +5094,7 @@ func (ec *executionContext) field_Mutation_updateEvidence_args(ctx context.Conte var arg1 model.EvidenceInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNEvidenceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceInput(ctx, tmp) + arg1, err = ec.unmarshalNEvidenceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceInput(ctx, tmp) if err != nil { return nil, err } @@ -5120,7 +5118,7 @@ func (ec *executionContext) field_Mutation_updateIssueMatchChange_args(ctx conte var arg1 model.IssueMatchChangeInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNIssueMatchChangeInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeInput(ctx, tmp) + arg1, err = ec.unmarshalNIssueMatchChangeInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeInput(ctx, tmp) if err != nil { return nil, err } @@ -5144,7 +5142,7 @@ func (ec *executionContext) field_Mutation_updateIssueMatch_args(ctx context.Con var arg1 model.IssueMatchInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNIssueMatchInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchInput(ctx, tmp) + arg1, err = ec.unmarshalNIssueMatchInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchInput(ctx, tmp) if err != nil { return nil, err } @@ -5168,7 +5166,7 @@ func (ec *executionContext) field_Mutation_updateIssueRepository_args(ctx contex var arg1 model.IssueRepositoryInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNIssueRepositoryInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryInput(ctx, tmp) + arg1, err = ec.unmarshalNIssueRepositoryInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryInput(ctx, tmp) if err != nil { return nil, err } @@ -5192,7 +5190,7 @@ func (ec *executionContext) field_Mutation_updateIssueVariant_args(ctx context.C var arg1 model.IssueVariantInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNIssueVariantInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantInput(ctx, tmp) + arg1, err = ec.unmarshalNIssueVariantInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantInput(ctx, tmp) if err != nil { return nil, err } @@ -5216,7 +5214,7 @@ func (ec *executionContext) field_Mutation_updateIssue_args(ctx context.Context, var arg1 model.IssueInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNIssueInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueInput(ctx, tmp) + arg1, err = ec.unmarshalNIssueInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueInput(ctx, tmp) if err != nil { return nil, err } @@ -5240,7 +5238,7 @@ func (ec *executionContext) field_Mutation_updateService_args(ctx context.Contex var arg1 model.ServiceInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNServiceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceInput(ctx, tmp) + arg1, err = ec.unmarshalNServiceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceInput(ctx, tmp) if err != nil { return nil, err } @@ -5264,7 +5262,7 @@ func (ec *executionContext) field_Mutation_updateSupportGroup_args(ctx context.C var arg1 model.SupportGroupInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNSupportGroupInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupInput(ctx, tmp) + arg1, err = ec.unmarshalNSupportGroupInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupInput(ctx, tmp) if err != nil { return nil, err } @@ -5288,7 +5286,7 @@ func (ec *executionContext) field_Mutation_updateUser_args(ctx context.Context, var arg1 model.UserInput if tmp, ok := rawArgs["input"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input")) - arg1, err = ec.unmarshalNUserInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserInput(ctx, tmp) + arg1, err = ec.unmarshalNUserInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserInput(ctx, tmp) if err != nil { return nil, err } @@ -5303,7 +5301,7 @@ func (ec *executionContext) field_Query_Activities_args(ctx context.Context, raw var arg0 *model.ActivityFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOActivityFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx, tmp) + arg0, err = ec.unmarshalOActivityFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx, tmp) if err != nil { return nil, err } @@ -5336,7 +5334,7 @@ func (ec *executionContext) field_Query_ComponentInstances_args(ctx context.Cont var arg0 *model.ComponentInstanceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOComponentInstanceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceFilter(ctx, tmp) + arg0, err = ec.unmarshalOComponentInstanceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceFilter(ctx, tmp) if err != nil { return nil, err } @@ -5369,7 +5367,7 @@ func (ec *executionContext) field_Query_ComponentVersions_args(ctx context.Conte var arg0 *model.ComponentVersionFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOComponentVersionFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx, tmp) + arg0, err = ec.unmarshalOComponentVersionFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx, tmp) if err != nil { return nil, err } @@ -5402,7 +5400,7 @@ func (ec *executionContext) field_Query_Components_args(ctx context.Context, raw var arg0 *model.ComponentFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOComponentFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentFilter(ctx, tmp) + arg0, err = ec.unmarshalOComponentFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentFilter(ctx, tmp) if err != nil { return nil, err } @@ -5435,7 +5433,7 @@ func (ec *executionContext) field_Query_Evidences_args(ctx context.Context, rawA var arg0 *model.EvidenceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOEvidenceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx, tmp) + arg0, err = ec.unmarshalOEvidenceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx, tmp) if err != nil { return nil, err } @@ -5468,7 +5466,7 @@ func (ec *executionContext) field_Query_IssueMatchChanges_args(ctx context.Conte var arg0 *model.IssueMatchChangeFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueMatchChangeFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueMatchChangeFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx, tmp) if err != nil { return nil, err } @@ -5501,7 +5499,7 @@ func (ec *executionContext) field_Query_IssueMatches_args(ctx context.Context, r var arg0 *model.IssueMatchFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueMatchFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx, tmp) if err != nil { return nil, err } @@ -5534,7 +5532,7 @@ func (ec *executionContext) field_Query_IssueRepositories_args(ctx context.Conte var arg0 *model.IssueRepositoryFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueRepositoryFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueRepositoryFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryFilter(ctx, tmp) if err != nil { return nil, err } @@ -5567,7 +5565,7 @@ func (ec *executionContext) field_Query_IssueVariants_args(ctx context.Context, var arg0 *model.IssueVariantFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueVariantFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx, tmp) if err != nil { return nil, err } @@ -5600,7 +5598,7 @@ func (ec *executionContext) field_Query_Issues_args(ctx context.Context, rawArgs var arg0 *model.IssueFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx, tmp) if err != nil { return nil, err } @@ -5633,7 +5631,7 @@ func (ec *executionContext) field_Query_Services_args(ctx context.Context, rawAr var arg0 *model.ServiceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) + arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) if err != nil { return nil, err } @@ -5666,7 +5664,7 @@ func (ec *executionContext) field_Query_SupportGroups_args(ctx context.Context, var arg0 *model.SupportGroupFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) + arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) if err != nil { return nil, err } @@ -5699,7 +5697,7 @@ func (ec *executionContext) field_Query_Users_args(ctx context.Context, rawArgs var arg0 *model.UserFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) + arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) if err != nil { return nil, err } @@ -5747,7 +5745,7 @@ func (ec *executionContext) field_ServiceFilterValue_serviceName_args(ctx contex var arg0 *model.ServiceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) + arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) if err != nil { return nil, err } @@ -5762,7 +5760,7 @@ func (ec *executionContext) field_ServiceFilterValue_supportGroupName_args(ctx c var arg0 *model.SupportGroupFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) + arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) if err != nil { return nil, err } @@ -5777,7 +5775,7 @@ func (ec *executionContext) field_ServiceFilterValue_uniqueUserId_args(ctx conte var arg0 *model.UserFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) + arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) if err != nil { return nil, err } @@ -5792,7 +5790,7 @@ func (ec *executionContext) field_ServiceFilterValue_userName_args(ctx context.C var arg0 *model.UserFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) + arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) if err != nil { return nil, err } @@ -5807,7 +5805,7 @@ func (ec *executionContext) field_Service_activities_args(ctx context.Context, r var arg0 *model.ActivityFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOActivityFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx, tmp) + arg0, err = ec.unmarshalOActivityFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx, tmp) if err != nil { return nil, err } @@ -5840,7 +5838,7 @@ func (ec *executionContext) field_Service_componentInstances_args(ctx context.Co var arg0 *model.ComponentInstanceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOComponentInstanceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceFilter(ctx, tmp) + arg0, err = ec.unmarshalOComponentInstanceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceFilter(ctx, tmp) if err != nil { return nil, err } @@ -5873,7 +5871,7 @@ func (ec *executionContext) field_Service_issueRepositories_args(ctx context.Con var arg0 *model.IssueRepositoryFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOIssueRepositoryFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryFilter(ctx, tmp) + arg0, err = ec.unmarshalOIssueRepositoryFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryFilter(ctx, tmp) if err != nil { return nil, err } @@ -5906,7 +5904,7 @@ func (ec *executionContext) field_Service_owners_args(ctx context.Context, rawAr var arg0 *model.UserFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) + arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) if err != nil { return nil, err } @@ -5939,7 +5937,7 @@ func (ec *executionContext) field_Service_supportGroups_args(ctx context.Context var arg0 *model.SupportGroupFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) + arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) if err != nil { return nil, err } @@ -5972,7 +5970,7 @@ func (ec *executionContext) field_SupportGroup_services_args(ctx context.Context var arg0 *model.ServiceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) + arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) if err != nil { return nil, err } @@ -6005,7 +6003,7 @@ func (ec *executionContext) field_SupportGroup_users_args(ctx context.Context, r var arg0 *model.UserFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) + arg0, err = ec.unmarshalOUserFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx, tmp) if err != nil { return nil, err } @@ -6038,7 +6036,7 @@ func (ec *executionContext) field_User_services_args(ctx context.Context, rawArg var arg0 *model.ServiceFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) + arg0, err = ec.unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx, tmp) if err != nil { return nil, err } @@ -6071,7 +6069,7 @@ func (ec *executionContext) field_User_supportGroups_args(ctx context.Context, r var arg0 *model.SupportGroupFilter if tmp, ok := rawArgs["filter"]; ok { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("filter")) - arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) + arg0, err = ec.unmarshalOSupportGroupFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx, tmp) if err != nil { return nil, err } @@ -6205,7 +6203,7 @@ func (ec *executionContext) _Activity_status(ctx context.Context, field graphql. } res := resTmp.(*model.ActivityStatusValues) fc.Result = res - return ec.marshalOActivityStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, field.Selections, res) + return ec.marshalOActivityStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Activity_status(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6246,7 +6244,7 @@ func (ec *executionContext) _Activity_services(ctx context.Context, field graphq } res := resTmp.(*model.ServiceConnection) fc.Result = res - return ec.marshalOServiceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) + return ec.marshalOServiceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Activity_services(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6306,7 +6304,7 @@ func (ec *executionContext) _Activity_issues(ctx context.Context, field graphql. } res := resTmp.(*model.IssueConnection) fc.Result = res - return ec.marshalOIssueConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx, field.Selections, res) + return ec.marshalOIssueConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Activity_issues(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6372,7 +6370,7 @@ func (ec *executionContext) _Activity_evidences(ctx context.Context, field graph } res := resTmp.(*model.EvidenceConnection) fc.Result = res - return ec.marshalOEvidenceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx, field.Selections, res) + return ec.marshalOEvidenceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Activity_evidences(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6432,7 +6430,7 @@ func (ec *executionContext) _Activity_issueMatchChanges(ctx context.Context, fie } res := resTmp.(*model.IssueMatchChangeConnection) fc.Result = res - return ec.marshalOIssueMatchChangeConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx, field.Selections, res) + return ec.marshalOIssueMatchChangeConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Activity_issueMatchChanges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6536,7 +6534,7 @@ func (ec *executionContext) _ActivityConnection_edges(ctx context.Context, field } res := resTmp.([]*model.ActivityEdge) fc.Result = res - return ec.marshalOActivityEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx, field.Selections, res) + return ec.marshalOActivityEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ActivityConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6583,7 +6581,7 @@ func (ec *executionContext) _ActivityConnection_pageInfo(ctx context.Context, fi } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ActivityConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6641,7 +6639,7 @@ func (ec *executionContext) _ActivityEdge_node(ctx context.Context, field graphq } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ActivityEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6778,7 +6776,7 @@ func (ec *executionContext) _CVSS_base(ctx context.Context, field graphql.Collec } res := resTmp.(*model.CVSSBase) fc.Result = res - return ec.marshalOCVSSBase2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSBase(ctx, field.Selections, res) + return ec.marshalOCVSSBase2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSBase(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_CVSS_base(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6839,7 +6837,7 @@ func (ec *executionContext) _CVSS_temporal(ctx context.Context, field graphql.Co } res := resTmp.(*model.CVSSTemporal) fc.Result = res - return ec.marshalOCVSSTemporal2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSTemporal(ctx, field.Selections, res) + return ec.marshalOCVSSTemporal2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSTemporal(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_CVSS_temporal(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -6890,7 +6888,7 @@ func (ec *executionContext) _CVSS_environmental(ctx context.Context, field graph } res := resTmp.(*model.CVSSEnvironmental) fc.Result = res - return ec.marshalOCVSSEnvironmental2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSEnvironmental(ctx, field.Selections, res) + return ec.marshalOCVSSEnvironmental2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSEnvironmental(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_CVSS_environmental(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8149,7 +8147,7 @@ func (ec *executionContext) _Component_type(ctx context.Context, field graphql.C } res := resTmp.(*model.ComponentTypeValues) fc.Result = res - return ec.marshalOComponentTypeValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx, field.Selections, res) + return ec.marshalOComponentTypeValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Component_type(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8190,7 +8188,7 @@ func (ec *executionContext) _Component_componentVersions(ctx context.Context, fi } res := resTmp.(*model.ComponentVersionConnection) fc.Result = res - return ec.marshalOComponentVersionConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx, field.Selections, res) + return ec.marshalOComponentVersionConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Component_componentVersions(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8294,7 +8292,7 @@ func (ec *executionContext) _ComponentConnection_edges(ctx context.Context, fiel } res := resTmp.([]*model.ComponentEdge) fc.Result = res - return ec.marshalOComponentEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx, field.Selections, res) + return ec.marshalOComponentEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8341,7 +8339,7 @@ func (ec *executionContext) _ComponentConnection_pageInfo(ctx context.Context, f } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8399,7 +8397,7 @@ func (ec *executionContext) _ComponentEdge_node(ctx context.Context, field graph } res := resTmp.(*model.Component) fc.Result = res - return ec.marshalNComponent2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) + return ec.marshalNComponent2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8658,7 +8656,7 @@ func (ec *executionContext) _ComponentInstance_componentVersion(ctx context.Cont } res := resTmp.(*model.ComponentVersion) fc.Result = res - return ec.marshalOComponentVersion2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) + return ec.marshalOComponentVersion2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentInstance_componentVersion(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8713,7 +8711,7 @@ func (ec *executionContext) _ComponentInstance_issueMatches(ctx context.Context, } res := resTmp.(*model.IssueMatchConnection) fc.Result = res - return ec.marshalOIssueMatchConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) + return ec.marshalOIssueMatchConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentInstance_issueMatches(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -8814,7 +8812,7 @@ func (ec *executionContext) _ComponentInstance_service(ctx context.Context, fiel } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalOService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalOService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentInstance_service(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9000,7 +8998,7 @@ func (ec *executionContext) _ComponentInstanceConnection_edges(ctx context.Conte } res := resTmp.([]*model.ComponentInstanceEdge) fc.Result = res - return ec.marshalNComponentInstanceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx, field.Selections, res) + return ec.marshalNComponentInstanceEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentInstanceConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9047,7 +9045,7 @@ func (ec *executionContext) _ComponentInstanceConnection_pageInfo(ctx context.Co } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentInstanceConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9105,7 +9103,7 @@ func (ec *executionContext) _ComponentInstanceEdge_node(ctx context.Context, fie } res := resTmp.(*model.ComponentInstance) fc.Result = res - return ec.marshalNComponentInstance2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) + return ec.marshalNComponentInstance2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentInstanceEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9335,7 +9333,7 @@ func (ec *executionContext) _ComponentVersion_component(ctx context.Context, fie } res := resTmp.(*model.Component) fc.Result = res - return ec.marshalOComponent2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) + return ec.marshalOComponent2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentVersion_component(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9386,7 +9384,7 @@ func (ec *executionContext) _ComponentVersion_issues(ctx context.Context, field } res := resTmp.(*model.IssueConnection) fc.Result = res - return ec.marshalOIssueConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx, field.Selections, res) + return ec.marshalOIssueConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentVersion_issues(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9452,7 +9450,7 @@ func (ec *executionContext) _ComponentVersion_componentInstances(ctx context.Con } res := resTmp.(*model.ComponentInstanceConnection) fc.Result = res - return ec.marshalOComponentInstanceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx, field.Selections, res) + return ec.marshalOComponentInstanceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentVersion_componentInstances(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9559,7 +9557,7 @@ func (ec *executionContext) _ComponentVersionConnection_edges(ctx context.Contex } res := resTmp.([]*model.ComponentVersionEdge) fc.Result = res - return ec.marshalNComponentVersionEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx, field.Selections, res) + return ec.marshalNComponentVersionEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentVersionConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9606,7 +9604,7 @@ func (ec *executionContext) _ComponentVersionConnection_pageInfo(ctx context.Con } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentVersionConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -9664,7 +9662,7 @@ func (ec *executionContext) _ComponentVersionEdge_node(ctx context.Context, fiel } res := resTmp.(*model.ComponentVersion) fc.Result = res - return ec.marshalNComponentVersion2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) + return ec.marshalNComponentVersion2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ComponentVersionEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10009,7 +10007,7 @@ func (ec *executionContext) _Evidence_author(ctx context.Context, field graphql. } res := resTmp.(*model.User) fc.Result = res - return ec.marshalOUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) + return ec.marshalOUser2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Evidence_author(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10105,7 +10103,7 @@ func (ec *executionContext) _Evidence_activity(ctx context.Context, field graphq } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalOActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalOActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Evidence_activity(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10160,7 +10158,7 @@ func (ec *executionContext) _Evidence_issueMatches(ctx context.Context, field gr } res := resTmp.(*model.IssueMatchConnection) fc.Result = res - return ec.marshalOIssueMatchConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) + return ec.marshalOIssueMatchConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Evidence_issueMatches(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10264,7 +10262,7 @@ func (ec *executionContext) _EvidenceConnection_edges(ctx context.Context, field } res := resTmp.([]*model.EvidenceEdge) fc.Result = res - return ec.marshalOEvidenceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx, field.Selections, res) + return ec.marshalOEvidenceEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_EvidenceConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10311,7 +10309,7 @@ func (ec *executionContext) _EvidenceConnection_pageInfo(ctx context.Context, fi } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_EvidenceConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10369,7 +10367,7 @@ func (ec *executionContext) _EvidenceEdge_node(ctx context.Context, field graphq } res := resTmp.(*model.Evidence) fc.Result = res - return ec.marshalNEvidence2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx, field.Selections, res) + return ec.marshalNEvidence2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_EvidenceEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10640,7 +10638,7 @@ func (ec *executionContext) _Issue_type(ctx context.Context, field graphql.Colle } res := resTmp.(*model.IssueTypes) fc.Result = res - return ec.marshalOIssueTypes2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, field.Selections, res) + return ec.marshalOIssueTypes2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Issue_type(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10804,7 +10802,7 @@ func (ec *executionContext) _Issue_issueVariants(ctx context.Context, field grap } res := resTmp.(*model.IssueVariantConnection) fc.Result = res - return ec.marshalOIssueVariantConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) + return ec.marshalOIssueVariantConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Issue_issueVariants(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10864,7 +10862,7 @@ func (ec *executionContext) _Issue_activities(ctx context.Context, field graphql } res := resTmp.(*model.ActivityConnection) fc.Result = res - return ec.marshalOActivityConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx, field.Selections, res) + return ec.marshalOActivityConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Issue_activities(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10924,7 +10922,7 @@ func (ec *executionContext) _Issue_issueMatches(ctx context.Context, field graph } res := resTmp.(*model.IssueMatchConnection) fc.Result = res - return ec.marshalOIssueMatchConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) + return ec.marshalOIssueMatchConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Issue_issueMatches(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -10984,7 +10982,7 @@ func (ec *executionContext) _Issue_componentVersions(ctx context.Context, field } res := resTmp.(*model.ComponentVersionConnection) fc.Result = res - return ec.marshalOComponentVersionConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx, field.Selections, res) + return ec.marshalOComponentVersionConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Issue_componentVersions(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11044,7 +11042,7 @@ func (ec *executionContext) _Issue_metadata(ctx context.Context, field graphql.C } res := resTmp.(*model.IssueMetadata) fc.Result = res - return ec.marshalOIssueMetadata2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMetadata(ctx, field.Selections, res) + return ec.marshalOIssueMetadata2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMetadata(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Issue_metadata(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11280,7 +11278,7 @@ func (ec *executionContext) _IssueConnection_edges(ctx context.Context, field gr } res := resTmp.([]*model.IssueEdge) fc.Result = res - return ec.marshalNIssueEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx, field.Selections, res) + return ec.marshalNIssueEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11327,7 +11325,7 @@ func (ec *executionContext) _IssueConnection_pageInfo(ctx context.Context, field } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11385,7 +11383,7 @@ func (ec *executionContext) _IssueEdge_node(ctx context.Context, field graphql.C } res := resTmp.(*model.Issue) fc.Result = res - return ec.marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) + return ec.marshalNIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11533,7 +11531,7 @@ func (ec *executionContext) _IssueMatch_status(ctx context.Context, field graphq } res := resTmp.(*model.IssueMatchStatusValues) fc.Result = res - return ec.marshalOIssueMatchStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, field.Selections, res) + return ec.marshalOIssueMatchStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_status(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11697,7 +11695,7 @@ func (ec *executionContext) _IssueMatch_severity(ctx context.Context, field grap } res := resTmp.(*model.Severity) fc.Result = res - return ec.marshalOSeverity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverity(ctx, field.Selections, res) + return ec.marshalOSeverity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_severity(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11746,7 +11744,7 @@ func (ec *executionContext) _IssueMatch_effectiveIssueVariants(ctx context.Conte } res := resTmp.(*model.IssueVariantConnection) fc.Result = res - return ec.marshalOIssueVariantConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) + return ec.marshalOIssueVariantConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_effectiveIssueVariants(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11806,7 +11804,7 @@ func (ec *executionContext) _IssueMatch_evidences(ctx context.Context, field gra } res := resTmp.(*model.EvidenceConnection) fc.Result = res - return ec.marshalOEvidenceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx, field.Selections, res) + return ec.marshalOEvidenceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_evidences(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -11910,7 +11908,7 @@ func (ec *executionContext) _IssueMatch_issue(ctx context.Context, field graphql } res := resTmp.(*model.Issue) fc.Result = res - return ec.marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) + return ec.marshalNIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_issue(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12014,7 +12012,7 @@ func (ec *executionContext) _IssueMatch_user(ctx context.Context, field graphql. } res := resTmp.(*model.User) fc.Result = res - return ec.marshalOUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) + return ec.marshalOUser2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_user(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12113,7 +12111,7 @@ func (ec *executionContext) _IssueMatch_componentInstance(ctx context.Context, f } res := resTmp.(*model.ComponentInstance) fc.Result = res - return ec.marshalNComponentInstance2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) + return ec.marshalNComponentInstance2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_componentInstance(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12176,7 +12174,7 @@ func (ec *executionContext) _IssueMatch_issueMatchChanges(ctx context.Context, f } res := resTmp.(*model.IssueMatchChangeConnection) fc.Result = res - return ec.marshalOIssueMatchChangeConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx, field.Selections, res) + return ec.marshalOIssueMatchChangeConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatch_issueMatchChanges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12280,7 +12278,7 @@ func (ec *executionContext) _IssueMatchChange_action(ctx context.Context, field } res := resTmp.(*model.IssueMatchChangeActions) fc.Result = res - return ec.marshalOIssueMatchChangeActions2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, field.Selections, res) + return ec.marshalOIssueMatchChangeActions2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchChange_action(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12365,7 +12363,7 @@ func (ec *executionContext) _IssueMatchChange_issueMatch(ctx context.Context, fi } res := resTmp.(*model.IssueMatch) fc.Result = res - return ec.marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) + return ec.marshalNIssueMatch2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchChange_issueMatch(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12482,7 +12480,7 @@ func (ec *executionContext) _IssueMatchChange_activity(ctx context.Context, fiel } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchChange_activity(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12581,7 +12579,7 @@ func (ec *executionContext) _IssueMatchChangeConnection_edges(ctx context.Contex } res := resTmp.([]*model.IssueMatchChangeEdge) fc.Result = res - return ec.marshalOIssueMatchChangeEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx, field.Selections, res) + return ec.marshalOIssueMatchChangeEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchChangeConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12628,7 +12626,7 @@ func (ec *executionContext) _IssueMatchChangeConnection_pageInfo(ctx context.Con } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchChangeConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12686,7 +12684,7 @@ func (ec *executionContext) _IssueMatchChangeEdge_node(ctx context.Context, fiel } res := resTmp.(*model.IssueMatchChange) fc.Result = res - return ec.marshalNIssueMatchChange2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx, field.Selections, res) + return ec.marshalNIssueMatchChange2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchChangeEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12826,7 +12824,7 @@ func (ec *executionContext) _IssueMatchConnection_edges(ctx context.Context, fie } res := resTmp.([]*model.IssueMatchEdge) fc.Result = res - return ec.marshalOIssueMatchEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx, field.Selections, res) + return ec.marshalOIssueMatchEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12873,7 +12871,7 @@ func (ec *executionContext) _IssueMatchConnection_pageInfo(ctx context.Context, } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -12931,7 +12929,7 @@ func (ec *executionContext) _IssueMatchEdge_node(ctx context.Context, field grap } res := resTmp.(*model.IssueMatch) fc.Result = res - return ec.marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) + return ec.marshalNIssueMatch2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13045,7 +13043,7 @@ func (ec *executionContext) _IssueMatchFilterValue_status(ctx context.Context, f } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchFilterValue_status(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13094,7 +13092,7 @@ func (ec *executionContext) _IssueMatchFilterValue_severity(ctx context.Context, } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchFilterValue_severity(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13143,7 +13141,7 @@ func (ec *executionContext) _IssueMatchFilterValue_issueType(ctx context.Context } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchFilterValue_issueType(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13192,7 +13190,7 @@ func (ec *executionContext) _IssueMatchFilterValue_primaryName(ctx context.Conte } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchFilterValue_primaryName(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13252,7 +13250,7 @@ func (ec *executionContext) _IssueMatchFilterValue_affectedService(ctx context.C } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchFilterValue_affectedService(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13312,7 +13310,7 @@ func (ec *executionContext) _IssueMatchFilterValue_componentName(ctx context.Con } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchFilterValue_componentName(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13372,7 +13370,7 @@ func (ec *executionContext) _IssueMatchFilterValue_supportGroupName(ctx context. } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueMatchFilterValue_supportGroupName(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13866,7 +13864,7 @@ func (ec *executionContext) _IssueRepository_issueVariants(ctx context.Context, } res := resTmp.(*model.IssueVariantConnection) fc.Result = res - return ec.marshalOIssueVariantConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) + return ec.marshalOIssueVariantConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueRepository_issueVariants(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -13926,7 +13924,7 @@ func (ec *executionContext) _IssueRepository_services(ctx context.Context, field } res := resTmp.(*model.ServiceConnection) fc.Result = res - return ec.marshalOServiceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) + return ec.marshalOServiceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueRepository_services(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14112,7 +14110,7 @@ func (ec *executionContext) _IssueRepositoryConnection_edges(ctx context.Context } res := resTmp.([]*model.IssueRepositoryEdge) fc.Result = res - return ec.marshalOIssueRepositoryEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx, field.Selections, res) + return ec.marshalOIssueRepositoryEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueRepositoryConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14165,7 +14163,7 @@ func (ec *executionContext) _IssueRepositoryConnection_pageInfo(ctx context.Cont } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueRepositoryConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14223,7 +14221,7 @@ func (ec *executionContext) _IssueRepositoryEdge_node(ctx context.Context, field } res := resTmp.(*model.IssueRepository) fc.Result = res - return ec.marshalNIssueRepository2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) + return ec.marshalNIssueRepository2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueRepositoryEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14570,7 +14568,7 @@ func (ec *executionContext) _IssueVariant_severity(ctx context.Context, field gr } res := resTmp.(*model.Severity) fc.Result = res - return ec.marshalOSeverity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverity(ctx, field.Selections, res) + return ec.marshalOSeverity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueVariant_severity(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14660,7 +14658,7 @@ func (ec *executionContext) _IssueVariant_issueRepository(ctx context.Context, f } res := resTmp.(*model.IssueRepository) fc.Result = res - return ec.marshalOIssueRepository2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) + return ec.marshalOIssueRepository2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueVariant_issueRepository(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14758,7 +14756,7 @@ func (ec *executionContext) _IssueVariant_issue(ctx context.Context, field graph } res := resTmp.(*model.Issue) fc.Result = res - return ec.marshalOIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) + return ec.marshalOIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueVariant_issue(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14947,7 +14945,7 @@ func (ec *executionContext) _IssueVariantConnection_edges(ctx context.Context, f } res := resTmp.([]*model.IssueVariantEdge) fc.Result = res - return ec.marshalOIssueVariantEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx, field.Selections, res) + return ec.marshalOIssueVariantEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueVariantConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -14998,7 +14996,7 @@ func (ec *executionContext) _IssueVariantConnection_pageInfo(ctx context.Context } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueVariantConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15056,7 +15054,7 @@ func (ec *executionContext) _IssueVariantEdge_node(ctx context.Context, field gr } res := resTmp.(*model.IssueVariant) fc.Result = res - return ec.marshalNIssueVariant2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx, field.Selections, res) + return ec.marshalNIssueVariant2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_IssueVariantEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15245,7 +15243,7 @@ func (ec *executionContext) _Mutation_createUser(ctx context.Context, field grap } res := resTmp.(*model.User) fc.Result = res - return ec.marshalNUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) + return ec.marshalNUser2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createUser(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15314,7 +15312,7 @@ func (ec *executionContext) _Mutation_updateUser(ctx context.Context, field grap } res := resTmp.(*model.User) fc.Result = res - return ec.marshalNUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) + return ec.marshalNUser2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateUser(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15438,7 +15436,7 @@ func (ec *executionContext) _Mutation_createSupportGroup(ctx context.Context, fi } res := resTmp.(*model.SupportGroup) fc.Result = res - return ec.marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) + return ec.marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createSupportGroup(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15503,7 +15501,7 @@ func (ec *executionContext) _Mutation_updateSupportGroup(ctx context.Context, fi } res := resTmp.(*model.SupportGroup) fc.Result = res - return ec.marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) + return ec.marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateSupportGroup(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15623,7 +15621,7 @@ func (ec *executionContext) _Mutation_addServiceToSupportGroup(ctx context.Conte } res := resTmp.(*model.SupportGroup) fc.Result = res - return ec.marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) + return ec.marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addServiceToSupportGroup(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15688,7 +15686,7 @@ func (ec *executionContext) _Mutation_removeServiceFromSupportGroup(ctx context. } res := resTmp.(*model.SupportGroup) fc.Result = res - return ec.marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) + return ec.marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeServiceFromSupportGroup(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15753,7 +15751,7 @@ func (ec *executionContext) _Mutation_addUserToSupportGroup(ctx context.Context, } res := resTmp.(*model.SupportGroup) fc.Result = res - return ec.marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) + return ec.marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addUserToSupportGroup(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15818,7 +15816,7 @@ func (ec *executionContext) _Mutation_removeUserFromSupportGroup(ctx context.Con } res := resTmp.(*model.SupportGroup) fc.Result = res - return ec.marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) + return ec.marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeUserFromSupportGroup(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15883,7 +15881,7 @@ func (ec *executionContext) _Mutation_createComponent(ctx context.Context, field } res := resTmp.(*model.Component) fc.Result = res - return ec.marshalNComponent2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) + return ec.marshalNComponent2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createComponent(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -15948,7 +15946,7 @@ func (ec *executionContext) _Mutation_updateComponent(ctx context.Context, field } res := resTmp.(*model.Component) fc.Result = res - return ec.marshalNComponent2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) + return ec.marshalNComponent2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateComponent(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16068,7 +16066,7 @@ func (ec *executionContext) _Mutation_createComponentInstance(ctx context.Contex } res := resTmp.(*model.ComponentInstance) fc.Result = res - return ec.marshalNComponentInstance2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) + return ec.marshalNComponentInstance2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createComponentInstance(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16145,7 +16143,7 @@ func (ec *executionContext) _Mutation_updateComponentInstance(ctx context.Contex } res := resTmp.(*model.ComponentInstance) fc.Result = res - return ec.marshalNComponentInstance2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) + return ec.marshalNComponentInstance2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateComponentInstance(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16277,7 +16275,7 @@ func (ec *executionContext) _Mutation_createComponentVersion(ctx context.Context } res := resTmp.(*model.ComponentVersion) fc.Result = res - return ec.marshalNComponentVersion2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) + return ec.marshalNComponentVersion2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createComponentVersion(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16346,7 +16344,7 @@ func (ec *executionContext) _Mutation_updateComponentVersion(ctx context.Context } res := resTmp.(*model.ComponentVersion) fc.Result = res - return ec.marshalNComponentVersion2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) + return ec.marshalNComponentVersion2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateComponentVersion(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16470,7 +16468,7 @@ func (ec *executionContext) _Mutation_createService(ctx context.Context, field g } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createService(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16541,7 +16539,7 @@ func (ec *executionContext) _Mutation_updateService(ctx context.Context, field g } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateService(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16667,7 +16665,7 @@ func (ec *executionContext) _Mutation_addOwnerToService(ctx context.Context, fie } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addOwnerToService(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16738,7 +16736,7 @@ func (ec *executionContext) _Mutation_removeOwnerFromService(ctx context.Context } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeOwnerFromService(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16809,7 +16807,7 @@ func (ec *executionContext) _Mutation_addIssueRepositoryToService(ctx context.Co } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addIssueRepositoryToService(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16880,7 +16878,7 @@ func (ec *executionContext) _Mutation_removeIssueRepositoryFromService(ctx conte } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeIssueRepositoryFromService(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -16951,7 +16949,7 @@ func (ec *executionContext) _Mutation_createIssueRepository(ctx context.Context, } res := resTmp.(*model.IssueRepository) fc.Result = res - return ec.marshalNIssueRepository2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) + return ec.marshalNIssueRepository2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createIssueRepository(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17022,7 +17020,7 @@ func (ec *executionContext) _Mutation_updateIssueRepository(ctx context.Context, } res := resTmp.(*model.IssueRepository) fc.Result = res - return ec.marshalNIssueRepository2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) + return ec.marshalNIssueRepository2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateIssueRepository(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17148,7 +17146,7 @@ func (ec *executionContext) _Mutation_createIssue(ctx context.Context, field gra } res := resTmp.(*model.Issue) fc.Result = res - return ec.marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) + return ec.marshalNIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createIssue(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17225,7 +17223,7 @@ func (ec *executionContext) _Mutation_updateIssue(ctx context.Context, field gra } res := resTmp.(*model.Issue) fc.Result = res - return ec.marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) + return ec.marshalNIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateIssue(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17357,7 +17355,7 @@ func (ec *executionContext) _Mutation_addComponentVersionToIssue(ctx context.Con } res := resTmp.(*model.Issue) fc.Result = res - return ec.marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) + return ec.marshalNIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addComponentVersionToIssue(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17434,7 +17432,7 @@ func (ec *executionContext) _Mutation_removeComponentVersionFromIssue(ctx contex } res := resTmp.(*model.Issue) fc.Result = res - return ec.marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) + return ec.marshalNIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeComponentVersionFromIssue(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17511,7 +17509,7 @@ func (ec *executionContext) _Mutation_createIssueVariant(ctx context.Context, fi } res := resTmp.(*model.IssueVariant) fc.Result = res - return ec.marshalNIssueVariant2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx, field.Selections, res) + return ec.marshalNIssueVariant2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createIssueVariant(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17588,7 +17586,7 @@ func (ec *executionContext) _Mutation_updateIssueVariant(ctx context.Context, fi } res := resTmp.(*model.IssueVariant) fc.Result = res - return ec.marshalNIssueVariant2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx, field.Selections, res) + return ec.marshalNIssueVariant2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateIssueVariant(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17720,7 +17718,7 @@ func (ec *executionContext) _Mutation_createEvidence(ctx context.Context, field } res := resTmp.(*model.Evidence) fc.Result = res - return ec.marshalNEvidence2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx, field.Selections, res) + return ec.marshalNEvidence2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createEvidence(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17797,7 +17795,7 @@ func (ec *executionContext) _Mutation_updateEvidence(ctx context.Context, field } res := resTmp.(*model.Evidence) fc.Result = res - return ec.marshalNEvidence2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx, field.Selections, res) + return ec.marshalNEvidence2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateEvidence(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -17929,7 +17927,7 @@ func (ec *executionContext) _Mutation_createIssueMatch(ctx context.Context, fiel } res := resTmp.(*model.IssueMatch) fc.Result = res - return ec.marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) + return ec.marshalNIssueMatch2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createIssueMatch(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18016,7 +18014,7 @@ func (ec *executionContext) _Mutation_updateIssueMatch(ctx context.Context, fiel } res := resTmp.(*model.IssueMatch) fc.Result = res - return ec.marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) + return ec.marshalNIssueMatch2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateIssueMatch(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18158,7 +18156,7 @@ func (ec *executionContext) _Mutation_addEvidenceToIssueMatch(ctx context.Contex } res := resTmp.(*model.IssueMatch) fc.Result = res - return ec.marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) + return ec.marshalNIssueMatch2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addEvidenceToIssueMatch(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18245,7 +18243,7 @@ func (ec *executionContext) _Mutation_removeEvidenceFromIssueMatch(ctx context.C } res := resTmp.(*model.IssueMatch) fc.Result = res - return ec.marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) + return ec.marshalNIssueMatch2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeEvidenceFromIssueMatch(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18332,7 +18330,7 @@ func (ec *executionContext) _Mutation_createIssueMatchChange(ctx context.Context } res := resTmp.(*model.IssueMatchChange) fc.Result = res - return ec.marshalNIssueMatchChange2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx, field.Selections, res) + return ec.marshalNIssueMatchChange2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createIssueMatchChange(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18401,7 +18399,7 @@ func (ec *executionContext) _Mutation_updateIssueMatchChange(ctx context.Context } res := resTmp.(*model.IssueMatchChange) fc.Result = res - return ec.marshalNIssueMatchChange2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx, field.Selections, res) + return ec.marshalNIssueMatchChange2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateIssueMatchChange(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18525,7 +18523,7 @@ func (ec *executionContext) _Mutation_createActivity(ctx context.Context, field } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_createActivity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18594,7 +18592,7 @@ func (ec *executionContext) _Mutation_updateActivity(ctx context.Context, field } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_updateActivity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18718,7 +18716,7 @@ func (ec *executionContext) _Mutation_addServiceToActivity(ctx context.Context, } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addServiceToActivity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18787,7 +18785,7 @@ func (ec *executionContext) _Mutation_removeServiceFromActivity(ctx context.Cont } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeServiceFromActivity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18856,7 +18854,7 @@ func (ec *executionContext) _Mutation_addIssueToActivity(ctx context.Context, fi } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_addIssueToActivity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -18925,7 +18923,7 @@ func (ec *executionContext) _Mutation_removeIssueFromActivity(ctx context.Contex } res := resTmp.(*model.Activity) fc.Result = res - return ec.marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) + return ec.marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Mutation_removeIssueFromActivity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19360,7 +19358,7 @@ func (ec *executionContext) _PageInfo_pages(ctx context.Context, field graphql.C } res := resTmp.([]*model.Page) fc.Result = res - return ec.marshalOPage2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx, field.Selections, res) + return ec.marshalOPage2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_PageInfo_pages(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19411,7 +19409,7 @@ func (ec *executionContext) _Query_Issues(ctx context.Context, field graphql.Col } res := resTmp.(*model.IssueConnection) fc.Result = res - return ec.marshalOIssueConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx, field.Selections, res) + return ec.marshalOIssueConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_Issues(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19477,7 +19475,7 @@ func (ec *executionContext) _Query_IssueMatches(ctx context.Context, field graph } res := resTmp.(*model.IssueMatchConnection) fc.Result = res - return ec.marshalOIssueMatchConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) + return ec.marshalOIssueMatchConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_IssueMatches(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19537,7 +19535,7 @@ func (ec *executionContext) _Query_IssueMatchChanges(ctx context.Context, field } res := resTmp.(*model.IssueMatchChangeConnection) fc.Result = res - return ec.marshalOIssueMatchChangeConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx, field.Selections, res) + return ec.marshalOIssueMatchChangeConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_IssueMatchChanges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19597,7 +19595,7 @@ func (ec *executionContext) _Query_Services(ctx context.Context, field graphql.C } res := resTmp.(*model.ServiceConnection) fc.Result = res - return ec.marshalOServiceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) + return ec.marshalOServiceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_Services(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19657,7 +19655,7 @@ func (ec *executionContext) _Query_Components(ctx context.Context, field graphql } res := resTmp.(*model.ComponentConnection) fc.Result = res - return ec.marshalOComponentConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentConnection(ctx, field.Selections, res) + return ec.marshalOComponentConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_Components(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19717,7 +19715,7 @@ func (ec *executionContext) _Query_ComponentVersions(ctx context.Context, field } res := resTmp.(*model.ComponentVersionConnection) fc.Result = res - return ec.marshalOComponentVersionConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx, field.Selections, res) + return ec.marshalOComponentVersionConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_ComponentVersions(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19777,7 +19775,7 @@ func (ec *executionContext) _Query_ComponentInstances(ctx context.Context, field } res := resTmp.(*model.ComponentInstanceConnection) fc.Result = res - return ec.marshalOComponentInstanceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx, field.Selections, res) + return ec.marshalOComponentInstanceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_ComponentInstances(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19837,7 +19835,7 @@ func (ec *executionContext) _Query_Activities(ctx context.Context, field graphql } res := resTmp.(*model.ActivityConnection) fc.Result = res - return ec.marshalOActivityConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx, field.Selections, res) + return ec.marshalOActivityConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_Activities(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19897,7 +19895,7 @@ func (ec *executionContext) _Query_IssueVariants(ctx context.Context, field grap } res := resTmp.(*model.IssueVariantConnection) fc.Result = res - return ec.marshalOIssueVariantConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) + return ec.marshalOIssueVariantConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_IssueVariants(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -19957,7 +19955,7 @@ func (ec *executionContext) _Query_IssueRepositories(ctx context.Context, field } res := resTmp.(*model.IssueRepositoryConnection) fc.Result = res - return ec.marshalOIssueRepositoryConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryConnection(ctx, field.Selections, res) + return ec.marshalOIssueRepositoryConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_IssueRepositories(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20017,7 +20015,7 @@ func (ec *executionContext) _Query_Evidences(ctx context.Context, field graphql. } res := resTmp.(*model.EvidenceConnection) fc.Result = res - return ec.marshalOEvidenceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx, field.Selections, res) + return ec.marshalOEvidenceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_Evidences(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20077,7 +20075,7 @@ func (ec *executionContext) _Query_SupportGroups(ctx context.Context, field grap } res := resTmp.(*model.SupportGroupConnection) fc.Result = res - return ec.marshalOSupportGroupConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx, field.Selections, res) + return ec.marshalOSupportGroupConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_SupportGroups(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20137,7 +20135,7 @@ func (ec *executionContext) _Query_Users(ctx context.Context, field graphql.Coll } res := resTmp.(*model.UserConnection) fc.Result = res - return ec.marshalOUserConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx, field.Selections, res) + return ec.marshalOUserConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_Users(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20197,7 +20195,7 @@ func (ec *executionContext) _Query_ServiceFilterValues(ctx context.Context, fiel } res := resTmp.(*model.ServiceFilterValue) fc.Result = res - return ec.marshalOServiceFilterValue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilterValue(ctx, field.Selections, res) + return ec.marshalOServiceFilterValue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilterValue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_ServiceFilterValues(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20248,7 +20246,7 @@ func (ec *executionContext) _Query_IssueMatchFilterValues(ctx context.Context, f } res := resTmp.(*model.IssueMatchFilterValue) fc.Result = res - return ec.marshalOIssueMatchFilterValue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilterValue(ctx, field.Selections, res) + return ec.marshalOIssueMatchFilterValue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilterValue(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Query_IssueMatchFilterValues(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20519,7 +20517,7 @@ func (ec *executionContext) _Service_owners(ctx context.Context, field graphql.C } res := resTmp.(*model.UserConnection) fc.Result = res - return ec.marshalOUserConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx, field.Selections, res) + return ec.marshalOUserConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Service_owners(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20579,7 +20577,7 @@ func (ec *executionContext) _Service_supportGroups(ctx context.Context, field gr } res := resTmp.(*model.SupportGroupConnection) fc.Result = res - return ec.marshalOSupportGroupConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx, field.Selections, res) + return ec.marshalOSupportGroupConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Service_supportGroups(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20639,7 +20637,7 @@ func (ec *executionContext) _Service_activities(ctx context.Context, field graph } res := resTmp.(*model.ActivityConnection) fc.Result = res - return ec.marshalOActivityConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx, field.Selections, res) + return ec.marshalOActivityConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Service_activities(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20699,7 +20697,7 @@ func (ec *executionContext) _Service_issueRepositories(ctx context.Context, fiel } res := resTmp.(*model.IssueRepositoryConnection) fc.Result = res - return ec.marshalOIssueRepositoryConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryConnection(ctx, field.Selections, res) + return ec.marshalOIssueRepositoryConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Service_issueRepositories(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20759,7 +20757,7 @@ func (ec *executionContext) _Service_componentInstances(ctx context.Context, fie } res := resTmp.(*model.ComponentInstanceConnection) fc.Result = res - return ec.marshalOComponentInstanceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx, field.Selections, res) + return ec.marshalOComponentInstanceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Service_componentInstances(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20863,7 +20861,7 @@ func (ec *executionContext) _ServiceConnection_edges(ctx context.Context, field } res := resTmp.([]*model.ServiceEdge) fc.Result = res - return ec.marshalOServiceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx, field.Selections, res) + return ec.marshalOServiceEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ServiceConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20912,7 +20910,7 @@ func (ec *executionContext) _ServiceConnection_pageInfo(ctx context.Context, fie } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ServiceConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -20970,7 +20968,7 @@ func (ec *executionContext) _ServiceEdge_node(ctx context.Context, field graphql } res := resTmp.(*model.Service) fc.Result = res - return ec.marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) + return ec.marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ServiceEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21109,7 +21107,7 @@ func (ec *executionContext) _ServiceFilterValue_serviceName(ctx context.Context, } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ServiceFilterValue_serviceName(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21169,7 +21167,7 @@ func (ec *executionContext) _ServiceFilterValue_uniqueUserId(ctx context.Context } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ServiceFilterValue_uniqueUserId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21229,7 +21227,7 @@ func (ec *executionContext) _ServiceFilterValue_userName(ctx context.Context, fi } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ServiceFilterValue_userName(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21289,7 +21287,7 @@ func (ec *executionContext) _ServiceFilterValue_supportGroupName(ctx context.Con } res := resTmp.(*model.FilterItem) fc.Result = res - return ec.marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) + return ec.marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_ServiceFilterValue_supportGroupName(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21349,7 +21347,7 @@ func (ec *executionContext) _Severity_value(ctx context.Context, field graphql.C } res := resTmp.(*model.SeverityValues) fc.Result = res - return ec.marshalOSeverityValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, field.Selections, res) + return ec.marshalOSeverityValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Severity_value(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21431,7 +21429,7 @@ func (ec *executionContext) _Severity_cvss(ctx context.Context, field graphql.Co } res := resTmp.(*model.Cvss) fc.Result = res - return ec.marshalOCVSS2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCvss(ctx, field.Selections, res) + return ec.marshalOCVSS2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCvss(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_Severity_cvss(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21567,7 +21565,7 @@ func (ec *executionContext) _SupportGroup_users(ctx context.Context, field graph } res := resTmp.(*model.UserConnection) fc.Result = res - return ec.marshalOUserConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx, field.Selections, res) + return ec.marshalOUserConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_SupportGroup_users(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21627,7 +21625,7 @@ func (ec *executionContext) _SupportGroup_services(ctx context.Context, field gr } res := resTmp.(*model.ServiceConnection) fc.Result = res - return ec.marshalOServiceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) + return ec.marshalOServiceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_SupportGroup_services(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21731,7 +21729,7 @@ func (ec *executionContext) _SupportGroupConnection_edges(ctx context.Context, f } res := resTmp.([]*model.SupportGroupEdge) fc.Result = res - return ec.marshalOSupportGroupEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx, field.Selections, res) + return ec.marshalOSupportGroupEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_SupportGroupConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21778,7 +21776,7 @@ func (ec *executionContext) _SupportGroupConnection_pageInfo(ctx context.Context } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_SupportGroupConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -21836,7 +21834,7 @@ func (ec *executionContext) _SupportGroupEdge_node(ctx context.Context, field gr } res := resTmp.(*model.SupportGroup) fc.Result = res - return ec.marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) + return ec.marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_SupportGroupEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -22098,7 +22096,7 @@ func (ec *executionContext) _User_supportGroups(ctx context.Context, field graph } res := resTmp.(*model.SupportGroupConnection) fc.Result = res - return ec.marshalOSupportGroupConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx, field.Selections, res) + return ec.marshalOSupportGroupConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_User_supportGroups(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -22158,7 +22156,7 @@ func (ec *executionContext) _User_services(ctx context.Context, field graphql.Co } res := resTmp.(*model.ServiceConnection) fc.Result = res - return ec.marshalOServiceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) + return ec.marshalOServiceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_User_services(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -22262,7 +22260,7 @@ func (ec *executionContext) _UserConnection_edges(ctx context.Context, field gra } res := resTmp.([]*model.UserEdge) fc.Result = res - return ec.marshalOUserEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx, field.Selections, res) + return ec.marshalOUserEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_UserConnection_edges(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -22309,7 +22307,7 @@ func (ec *executionContext) _UserConnection_pageInfo(ctx context.Context, field } res := resTmp.(*model.PageInfo) fc.Result = res - return ec.marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) + return ec.marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_UserConnection_pageInfo(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -22367,7 +22365,7 @@ func (ec *executionContext) _UserEdge_node(ctx context.Context, field graphql.Co } res := resTmp.(*model.User) fc.Result = res - return ec.marshalNUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) + return ec.marshalNUser2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx, field.Selections, res) } func (ec *executionContext) fieldContext_UserEdge_node(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { @@ -24234,7 +24232,7 @@ func (ec *executionContext) unmarshalInputActivityFilter(ctx context.Context, ob it.ServiceName = data case "status": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("status")) - data, err := ec.unmarshalOActivityStatusValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, v) + data, err := ec.unmarshalOActivityStatusValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, v) if err != nil { return it, err } @@ -24261,7 +24259,7 @@ func (ec *executionContext) unmarshalInputActivityInput(ctx context.Context, obj switch k { case "status": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("status")) - data, err := ec.unmarshalOActivityStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, v) + data, err := ec.unmarshalOActivityStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, v) if err != nil { return it, err } @@ -24322,7 +24320,7 @@ func (ec *executionContext) unmarshalInputComponentInput(ctx context.Context, ob it.Name = data case "type": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("type")) - data, err := ec.unmarshalOComponentTypeValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx, v) + data, err := ec.unmarshalOComponentTypeValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx, v) if err != nil { return it, err } @@ -24588,7 +24586,7 @@ func (ec *executionContext) unmarshalInputEvidenceInput(ctx context.Context, obj it.ActivityID = data case "severity": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("severity")) - data, err := ec.unmarshalOSeverityInput2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityInput(ctx, v) + data, err := ec.unmarshalOSeverityInput2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityInput(ctx, v) if err != nil { return it, err } @@ -24629,14 +24627,14 @@ func (ec *executionContext) unmarshalInputIssueFilter(ctx context.Context, obj i it.PrimaryName = data case "issueMatchStatus": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("issueMatchStatus")) - data, err := ec.unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, v) + data, err := ec.unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, v) if err != nil { return it, err } it.IssueMatchStatus = data case "issueType": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("issueType")) - data, err := ec.unmarshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, v) + data, err := ec.unmarshalOIssueTypes2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, v) if err != nil { return it, err } @@ -24691,7 +24689,7 @@ func (ec *executionContext) unmarshalInputIssueInput(ctx context.Context, obj in it.Description = data case "type": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("type")) - data, err := ec.unmarshalOIssueTypes2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, v) + data, err := ec.unmarshalOIssueTypes2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, v) if err != nil { return it, err } @@ -24718,7 +24716,7 @@ func (ec *executionContext) unmarshalInputIssueMatchChangeFilter(ctx context.Con switch k { case "action": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("action")) - data, err := ec.unmarshalOIssueMatchChangeActions2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, v) + data, err := ec.unmarshalOIssueMatchChangeActions2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, v) if err != nil { return it, err } @@ -24745,7 +24743,7 @@ func (ec *executionContext) unmarshalInputIssueMatchChangeInput(ctx context.Cont switch k { case "action": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("action")) - data, err := ec.unmarshalOIssueMatchChangeActions2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, v) + data, err := ec.unmarshalOIssueMatchChangeActions2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, v) if err != nil { return it, err } @@ -24814,21 +24812,21 @@ func (ec *executionContext) unmarshalInputIssueMatchFilter(ctx context.Context, it.ComponentName = data case "issueType": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("issueType")) - data, err := ec.unmarshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, v) + data, err := ec.unmarshalOIssueTypes2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, v) if err != nil { return it, err } it.IssueType = data case "status": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("status")) - data, err := ec.unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, v) + data, err := ec.unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, v) if err != nil { return it, err } it.Status = data case "severity": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("severity")) - data, err := ec.unmarshalOSeverityValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, v) + data, err := ec.unmarshalOSeverityValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, v) if err != nil { return it, err } @@ -24869,7 +24867,7 @@ func (ec *executionContext) unmarshalInputIssueMatchInput(ctx context.Context, o switch k { case "status": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("status")) - data, err := ec.unmarshalOIssueMatchStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, v) + data, err := ec.unmarshalOIssueMatchStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, v) if err != nil { return it, err } @@ -25068,7 +25066,7 @@ func (ec *executionContext) unmarshalInputIssueVariantInput(ctx context.Context, it.IssueID = data case "severity": ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("severity")) - data, err := ec.unmarshalOSeverityInput2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityInput(ctx, v) + data, err := ec.unmarshalOSeverityInput2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityInput(ctx, v) if err != nil { return it, err } @@ -30576,11 +30574,11 @@ func (ec *executionContext) ___Type(ctx context.Context, sel ast.SelectionSet, o // region ***************************** type.gotpl ***************************** -func (ec *executionContext) marshalNActivity2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx context.Context, sel ast.SelectionSet, v model.Activity) graphql.Marshaler { +func (ec *executionContext) marshalNActivity2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx context.Context, sel ast.SelectionSet, v model.Activity) graphql.Marshaler { return ec._Activity(ctx, sel, &v) } -func (ec *executionContext) marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx context.Context, sel ast.SelectionSet, v *model.Activity) graphql.Marshaler { +func (ec *executionContext) marshalNActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx context.Context, sel ast.SelectionSet, v *model.Activity) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30590,7 +30588,7 @@ func (ec *executionContext) marshalNActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋcc return ec._Activity(ctx, sel, v) } -func (ec *executionContext) unmarshalNActivityInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityInput(ctx context.Context, v interface{}) (model.ActivityInput, error) { +func (ec *executionContext) unmarshalNActivityInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityInput(ctx context.Context, v interface{}) (model.ActivityInput, error) { res, err := ec.unmarshalInputActivityInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } @@ -30610,11 +30608,11 @@ func (ec *executionContext) marshalNBoolean2bool(ctx context.Context, sel ast.Se return res } -func (ec *executionContext) marshalNComponent2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx context.Context, sel ast.SelectionSet, v model.Component) graphql.Marshaler { +func (ec *executionContext) marshalNComponent2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx context.Context, sel ast.SelectionSet, v model.Component) graphql.Marshaler { return ec._Component(ctx, sel, &v) } -func (ec *executionContext) marshalNComponent2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx context.Context, sel ast.SelectionSet, v *model.Component) graphql.Marshaler { +func (ec *executionContext) marshalNComponent2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx context.Context, sel ast.SelectionSet, v *model.Component) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30624,16 +30622,16 @@ func (ec *executionContext) marshalNComponent2ᚖgithubᚗwdfᚗsapᚗcorpᚋcc return ec._Component(ctx, sel, v) } -func (ec *executionContext) unmarshalNComponentInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInput(ctx context.Context, v interface{}) (model.ComponentInput, error) { +func (ec *executionContext) unmarshalNComponentInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInput(ctx context.Context, v interface{}) (model.ComponentInput, error) { res, err := ec.unmarshalInputComponentInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalNComponentInstance2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx context.Context, sel ast.SelectionSet, v model.ComponentInstance) graphql.Marshaler { +func (ec *executionContext) marshalNComponentInstance2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx context.Context, sel ast.SelectionSet, v model.ComponentInstance) graphql.Marshaler { return ec._ComponentInstance(ctx, sel, &v) } -func (ec *executionContext) marshalNComponentInstance2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx context.Context, sel ast.SelectionSet, v *model.ComponentInstance) graphql.Marshaler { +func (ec *executionContext) marshalNComponentInstance2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstance(ctx context.Context, sel ast.SelectionSet, v *model.ComponentInstance) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30643,7 +30641,7 @@ func (ec *executionContext) marshalNComponentInstance2ᚖgithubᚗwdfᚗsapᚗco return ec._ComponentInstance(ctx, sel, v) } -func (ec *executionContext) marshalNComponentInstanceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ComponentInstanceEdge) graphql.Marshaler { +func (ec *executionContext) marshalNComponentInstanceEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ComponentInstanceEdge) graphql.Marshaler { ret := make(graphql.Array, len(v)) var wg sync.WaitGroup isLen1 := len(v) == 1 @@ -30667,7 +30665,7 @@ func (ec *executionContext) marshalNComponentInstanceEdge2ᚕᚖgithubᚗwdfᚗs if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOComponentInstanceEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOComponentInstanceEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -30681,16 +30679,16 @@ func (ec *executionContext) marshalNComponentInstanceEdge2ᚕᚖgithubᚗwdfᚗs return ret } -func (ec *executionContext) unmarshalNComponentInstanceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceInput(ctx context.Context, v interface{}) (model.ComponentInstanceInput, error) { +func (ec *executionContext) unmarshalNComponentInstanceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceInput(ctx context.Context, v interface{}) (model.ComponentInstanceInput, error) { res, err := ec.unmarshalInputComponentInstanceInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalNComponentVersion2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx context.Context, sel ast.SelectionSet, v model.ComponentVersion) graphql.Marshaler { +func (ec *executionContext) marshalNComponentVersion2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx context.Context, sel ast.SelectionSet, v model.ComponentVersion) graphql.Marshaler { return ec._ComponentVersion(ctx, sel, &v) } -func (ec *executionContext) marshalNComponentVersion2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersion) graphql.Marshaler { +func (ec *executionContext) marshalNComponentVersion2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersion) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30700,7 +30698,7 @@ func (ec *executionContext) marshalNComponentVersion2ᚖgithubᚗwdfᚗsapᚗcor return ec._ComponentVersion(ctx, sel, v) } -func (ec *executionContext) marshalNComponentVersionEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ComponentVersionEdge) graphql.Marshaler { +func (ec *executionContext) marshalNComponentVersionEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ComponentVersionEdge) graphql.Marshaler { ret := make(graphql.Array, len(v)) var wg sync.WaitGroup isLen1 := len(v) == 1 @@ -30724,7 +30722,7 @@ func (ec *executionContext) marshalNComponentVersionEdge2ᚕᚖgithubᚗwdfᚗsa if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOComponentVersionEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOComponentVersionEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -30738,7 +30736,7 @@ func (ec *executionContext) marshalNComponentVersionEdge2ᚕᚖgithubᚗwdfᚗsa return ret } -func (ec *executionContext) unmarshalNComponentVersionInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionInput(ctx context.Context, v interface{}) (model.ComponentVersionInput, error) { +func (ec *executionContext) unmarshalNComponentVersionInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionInput(ctx context.Context, v interface{}) (model.ComponentVersionInput, error) { res, err := ec.unmarshalInputComponentVersionInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } @@ -30758,11 +30756,11 @@ func (ec *executionContext) marshalNDateTime2string(ctx context.Context, sel ast return res } -func (ec *executionContext) marshalNEvidence2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx context.Context, sel ast.SelectionSet, v model.Evidence) graphql.Marshaler { +func (ec *executionContext) marshalNEvidence2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx context.Context, sel ast.SelectionSet, v model.Evidence) graphql.Marshaler { return ec._Evidence(ctx, sel, &v) } -func (ec *executionContext) marshalNEvidence2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx context.Context, sel ast.SelectionSet, v *model.Evidence) graphql.Marshaler { +func (ec *executionContext) marshalNEvidence2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidence(ctx context.Context, sel ast.SelectionSet, v *model.Evidence) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30772,7 +30770,7 @@ func (ec *executionContext) marshalNEvidence2ᚖgithubᚗwdfᚗsapᚗcorpᚋcc return ec._Evidence(ctx, sel, v) } -func (ec *executionContext) unmarshalNEvidenceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceInput(ctx context.Context, v interface{}) (model.EvidenceInput, error) { +func (ec *executionContext) unmarshalNEvidenceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceInput(ctx context.Context, v interface{}) (model.EvidenceInput, error) { res, err := ec.unmarshalInputEvidenceInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } @@ -30807,11 +30805,11 @@ func (ec *executionContext) marshalNInt2int(ctx context.Context, sel ast.Selecti return res } -func (ec *executionContext) marshalNIssue2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx context.Context, sel ast.SelectionSet, v model.Issue) graphql.Marshaler { +func (ec *executionContext) marshalNIssue2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx context.Context, sel ast.SelectionSet, v model.Issue) graphql.Marshaler { return ec._Issue(ctx, sel, &v) } -func (ec *executionContext) marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx context.Context, sel ast.SelectionSet, v *model.Issue) graphql.Marshaler { +func (ec *executionContext) marshalNIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx context.Context, sel ast.SelectionSet, v *model.Issue) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30821,7 +30819,7 @@ func (ec *executionContext) marshalNIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋhe return ec._Issue(ctx, sel, v) } -func (ec *executionContext) marshalNIssueEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueEdge) graphql.Marshaler { +func (ec *executionContext) marshalNIssueEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueEdge) graphql.Marshaler { ret := make(graphql.Array, len(v)) var wg sync.WaitGroup isLen1 := len(v) == 1 @@ -30845,7 +30843,7 @@ func (ec *executionContext) marshalNIssueEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋ if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -30859,16 +30857,16 @@ func (ec *executionContext) marshalNIssueEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋ return ret } -func (ec *executionContext) unmarshalNIssueInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueInput(ctx context.Context, v interface{}) (model.IssueInput, error) { +func (ec *executionContext) unmarshalNIssueInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueInput(ctx context.Context, v interface{}) (model.IssueInput, error) { res, err := ec.unmarshalInputIssueInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalNIssueMatch2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx context.Context, sel ast.SelectionSet, v model.IssueMatch) graphql.Marshaler { +func (ec *executionContext) marshalNIssueMatch2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx context.Context, sel ast.SelectionSet, v model.IssueMatch) graphql.Marshaler { return ec._IssueMatch(ctx, sel, &v) } -func (ec *executionContext) marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatch) graphql.Marshaler { +func (ec *executionContext) marshalNIssueMatch2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatch(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatch) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30878,11 +30876,11 @@ func (ec *executionContext) marshalNIssueMatch2ᚖgithubᚗwdfᚗsapᚗcorpᚋcc return ec._IssueMatch(ctx, sel, v) } -func (ec *executionContext) marshalNIssueMatchChange2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx context.Context, sel ast.SelectionSet, v model.IssueMatchChange) graphql.Marshaler { +func (ec *executionContext) marshalNIssueMatchChange2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx context.Context, sel ast.SelectionSet, v model.IssueMatchChange) graphql.Marshaler { return ec._IssueMatchChange(ctx, sel, &v) } -func (ec *executionContext) marshalNIssueMatchChange2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChange) graphql.Marshaler { +func (ec *executionContext) marshalNIssueMatchChange2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChange(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChange) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30892,21 +30890,21 @@ func (ec *executionContext) marshalNIssueMatchChange2ᚖgithubᚗwdfᚗsapᚗcor return ec._IssueMatchChange(ctx, sel, v) } -func (ec *executionContext) unmarshalNIssueMatchChangeInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeInput(ctx context.Context, v interface{}) (model.IssueMatchChangeInput, error) { +func (ec *executionContext) unmarshalNIssueMatchChangeInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeInput(ctx context.Context, v interface{}) (model.IssueMatchChangeInput, error) { res, err := ec.unmarshalInputIssueMatchChangeInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) unmarshalNIssueMatchInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchInput(ctx context.Context, v interface{}) (model.IssueMatchInput, error) { +func (ec *executionContext) unmarshalNIssueMatchInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchInput(ctx context.Context, v interface{}) (model.IssueMatchInput, error) { res, err := ec.unmarshalInputIssueMatchInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalNIssueRepository2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx context.Context, sel ast.SelectionSet, v model.IssueRepository) graphql.Marshaler { +func (ec *executionContext) marshalNIssueRepository2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx context.Context, sel ast.SelectionSet, v model.IssueRepository) graphql.Marshaler { return ec._IssueRepository(ctx, sel, &v) } -func (ec *executionContext) marshalNIssueRepository2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepository) graphql.Marshaler { +func (ec *executionContext) marshalNIssueRepository2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepository) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30916,16 +30914,16 @@ func (ec *executionContext) marshalNIssueRepository2ᚖgithubᚗwdfᚗsapᚗcorp return ec._IssueRepository(ctx, sel, v) } -func (ec *executionContext) unmarshalNIssueRepositoryInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryInput(ctx context.Context, v interface{}) (model.IssueRepositoryInput, error) { +func (ec *executionContext) unmarshalNIssueRepositoryInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryInput(ctx context.Context, v interface{}) (model.IssueRepositoryInput, error) { res, err := ec.unmarshalInputIssueRepositoryInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalNIssueVariant2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx context.Context, sel ast.SelectionSet, v model.IssueVariant) graphql.Marshaler { +func (ec *executionContext) marshalNIssueVariant2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx context.Context, sel ast.SelectionSet, v model.IssueVariant) graphql.Marshaler { return ec._IssueVariant(ctx, sel, &v) } -func (ec *executionContext) marshalNIssueVariant2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx context.Context, sel ast.SelectionSet, v *model.IssueVariant) graphql.Marshaler { +func (ec *executionContext) marshalNIssueVariant2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariant(ctx context.Context, sel ast.SelectionSet, v *model.IssueVariant) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30935,16 +30933,16 @@ func (ec *executionContext) marshalNIssueVariant2ᚖgithubᚗwdfᚗsapᚗcorpᚋ return ec._IssueVariant(ctx, sel, v) } -func (ec *executionContext) unmarshalNIssueVariantInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantInput(ctx context.Context, v interface{}) (model.IssueVariantInput, error) { +func (ec *executionContext) unmarshalNIssueVariantInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantInput(ctx context.Context, v interface{}) (model.IssueVariantInput, error) { res, err := ec.unmarshalInputIssueVariantInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalNService2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx context.Context, sel ast.SelectionSet, v model.Service) graphql.Marshaler { +func (ec *executionContext) marshalNService2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx context.Context, sel ast.SelectionSet, v model.Service) graphql.Marshaler { return ec._Service(ctx, sel, &v) } -func (ec *executionContext) marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx context.Context, sel ast.SelectionSet, v *model.Service) graphql.Marshaler { +func (ec *executionContext) marshalNService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx context.Context, sel ast.SelectionSet, v *model.Service) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30954,7 +30952,7 @@ func (ec *executionContext) marshalNService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋ return ec._Service(ctx, sel, v) } -func (ec *executionContext) unmarshalNServiceInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceInput(ctx context.Context, v interface{}) (model.ServiceInput, error) { +func (ec *executionContext) unmarshalNServiceInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceInput(ctx context.Context, v interface{}) (model.ServiceInput, error) { res, err := ec.unmarshalInputServiceInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } @@ -30974,11 +30972,11 @@ func (ec *executionContext) marshalNString2string(ctx context.Context, sel ast.S return res } -func (ec *executionContext) marshalNSupportGroup2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx context.Context, sel ast.SelectionSet, v model.SupportGroup) graphql.Marshaler { +func (ec *executionContext) marshalNSupportGroup2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx context.Context, sel ast.SelectionSet, v model.SupportGroup) graphql.Marshaler { return ec._SupportGroup(ctx, sel, &v) } -func (ec *executionContext) marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx context.Context, sel ast.SelectionSet, v *model.SupportGroup) graphql.Marshaler { +func (ec *executionContext) marshalNSupportGroup2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroup(ctx context.Context, sel ast.SelectionSet, v *model.SupportGroup) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -30988,16 +30986,16 @@ func (ec *executionContext) marshalNSupportGroup2ᚖgithubᚗwdfᚗsapᚗcorpᚋ return ec._SupportGroup(ctx, sel, v) } -func (ec *executionContext) unmarshalNSupportGroupInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupInput(ctx context.Context, v interface{}) (model.SupportGroupInput, error) { +func (ec *executionContext) unmarshalNSupportGroupInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupInput(ctx context.Context, v interface{}) (model.SupportGroupInput, error) { res, err := ec.unmarshalInputSupportGroupInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalNUser2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx context.Context, sel ast.SelectionSet, v model.User) graphql.Marshaler { +func (ec *executionContext) marshalNUser2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx context.Context, sel ast.SelectionSet, v model.User) graphql.Marshaler { return ec._User(ctx, sel, &v) } -func (ec *executionContext) marshalNUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx context.Context, sel ast.SelectionSet, v *model.User) graphql.Marshaler { +func (ec *executionContext) marshalNUser2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx context.Context, sel ast.SelectionSet, v *model.User) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { ec.Errorf(ctx, "the requested element is null which the schema does not allow") @@ -31007,7 +31005,7 @@ func (ec *executionContext) marshalNUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheu return ec._User(ctx, sel, v) } -func (ec *executionContext) unmarshalNUserInput2githubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserInput(ctx context.Context, v interface{}) (model.UserInput, error) { +func (ec *executionContext) unmarshalNUserInput2githubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserInput(ctx context.Context, v interface{}) (model.UserInput, error) { res, err := ec.unmarshalInputUserInput(ctx, v) return res, graphql.ErrorOnPath(ctx, err) } @@ -31265,21 +31263,21 @@ func (ec *executionContext) marshalN__TypeKind2string(ctx context.Context, sel a return res } -func (ec *executionContext) marshalOActivity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx context.Context, sel ast.SelectionSet, v *model.Activity) graphql.Marshaler { +func (ec *executionContext) marshalOActivity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivity(ctx context.Context, sel ast.SelectionSet, v *model.Activity) graphql.Marshaler { if v == nil { return graphql.Null } return ec._Activity(ctx, sel, v) } -func (ec *executionContext) marshalOActivityConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx context.Context, sel ast.SelectionSet, v *model.ActivityConnection) graphql.Marshaler { +func (ec *executionContext) marshalOActivityConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityConnection(ctx context.Context, sel ast.SelectionSet, v *model.ActivityConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ActivityConnection(ctx, sel, v) } -func (ec *executionContext) marshalOActivityEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ActivityEdge) graphql.Marshaler { +func (ec *executionContext) marshalOActivityEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ActivityEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31306,7 +31304,7 @@ func (ec *executionContext) marshalOActivityEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorp if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOActivityEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOActivityEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -31320,14 +31318,14 @@ func (ec *executionContext) marshalOActivityEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorp return ret } -func (ec *executionContext) marshalOActivityEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx context.Context, sel ast.SelectionSet, v *model.ActivityEdge) graphql.Marshaler { +func (ec *executionContext) marshalOActivityEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityEdge(ctx context.Context, sel ast.SelectionSet, v *model.ActivityEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ActivityEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOActivityFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx context.Context, v interface{}) (*model.ActivityFilter, error) { +func (ec *executionContext) unmarshalOActivityFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityFilter(ctx context.Context, v interface{}) (*model.ActivityFilter, error) { if v == nil { return nil, nil } @@ -31335,7 +31333,7 @@ func (ec *executionContext) unmarshalOActivityFilter2ᚖgithubᚗwdfᚗsapᚗcor return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) unmarshalOActivityStatusValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, v interface{}) ([]*model.ActivityStatusValues, error) { +func (ec *executionContext) unmarshalOActivityStatusValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, v interface{}) ([]*model.ActivityStatusValues, error) { if v == nil { return nil, nil } @@ -31347,7 +31345,7 @@ func (ec *executionContext) unmarshalOActivityStatusValues2ᚕᚖgithubᚗwdfᚗ res := make([]*model.ActivityStatusValues, len(vSlice)) for i := range vSlice { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i)) - res[i], err = ec.unmarshalOActivityStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, vSlice[i]) + res[i], err = ec.unmarshalOActivityStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, vSlice[i]) if err != nil { return nil, err } @@ -31355,7 +31353,7 @@ func (ec *executionContext) unmarshalOActivityStatusValues2ᚕᚖgithubᚗwdfᚗ return res, nil } -func (ec *executionContext) marshalOActivityStatusValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, sel ast.SelectionSet, v []*model.ActivityStatusValues) graphql.Marshaler { +func (ec *executionContext) marshalOActivityStatusValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, sel ast.SelectionSet, v []*model.ActivityStatusValues) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31382,7 +31380,7 @@ func (ec *executionContext) marshalOActivityStatusValues2ᚕᚖgithubᚗwdfᚗsa if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOActivityStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, sel, v[i]) + ret[i] = ec.marshalOActivityStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx, sel, v[i]) } if isLen1 { f(i) @@ -31396,7 +31394,7 @@ func (ec *executionContext) marshalOActivityStatusValues2ᚕᚖgithubᚗwdfᚗsa return ret } -func (ec *executionContext) unmarshalOActivityStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, v interface{}) (*model.ActivityStatusValues, error) { +func (ec *executionContext) unmarshalOActivityStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, v interface{}) (*model.ActivityStatusValues, error) { if v == nil { return nil, nil } @@ -31405,7 +31403,7 @@ func (ec *executionContext) unmarshalOActivityStatusValues2ᚖgithubᚗwdfᚗsap return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOActivityStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, sel ast.SelectionSet, v *model.ActivityStatusValues) graphql.Marshaler { +func (ec *executionContext) marshalOActivityStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐActivityStatusValues(ctx context.Context, sel ast.SelectionSet, v *model.ActivityStatusValues) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31470,49 +31468,49 @@ func (ec *executionContext) marshalOBoolean2ᚖbool(ctx context.Context, sel ast return res } -func (ec *executionContext) marshalOCVSS2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCvss(ctx context.Context, sel ast.SelectionSet, v *model.Cvss) graphql.Marshaler { +func (ec *executionContext) marshalOCVSS2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCvss(ctx context.Context, sel ast.SelectionSet, v *model.Cvss) graphql.Marshaler { if v == nil { return graphql.Null } return ec._CVSS(ctx, sel, v) } -func (ec *executionContext) marshalOCVSSBase2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSBase(ctx context.Context, sel ast.SelectionSet, v *model.CVSSBase) graphql.Marshaler { +func (ec *executionContext) marshalOCVSSBase2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSBase(ctx context.Context, sel ast.SelectionSet, v *model.CVSSBase) graphql.Marshaler { if v == nil { return graphql.Null } return ec._CVSSBase(ctx, sel, v) } -func (ec *executionContext) marshalOCVSSEnvironmental2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSEnvironmental(ctx context.Context, sel ast.SelectionSet, v *model.CVSSEnvironmental) graphql.Marshaler { +func (ec *executionContext) marshalOCVSSEnvironmental2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSEnvironmental(ctx context.Context, sel ast.SelectionSet, v *model.CVSSEnvironmental) graphql.Marshaler { if v == nil { return graphql.Null } return ec._CVSSEnvironmental(ctx, sel, v) } -func (ec *executionContext) marshalOCVSSTemporal2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSTemporal(ctx context.Context, sel ast.SelectionSet, v *model.CVSSTemporal) graphql.Marshaler { +func (ec *executionContext) marshalOCVSSTemporal2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐCVSSTemporal(ctx context.Context, sel ast.SelectionSet, v *model.CVSSTemporal) graphql.Marshaler { if v == nil { return graphql.Null } return ec._CVSSTemporal(ctx, sel, v) } -func (ec *executionContext) marshalOComponent2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx context.Context, sel ast.SelectionSet, v *model.Component) graphql.Marshaler { +func (ec *executionContext) marshalOComponent2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponent(ctx context.Context, sel ast.SelectionSet, v *model.Component) graphql.Marshaler { if v == nil { return graphql.Null } return ec._Component(ctx, sel, v) } -func (ec *executionContext) marshalOComponentConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentConnection(ctx context.Context, sel ast.SelectionSet, v *model.ComponentConnection) graphql.Marshaler { +func (ec *executionContext) marshalOComponentConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentConnection(ctx context.Context, sel ast.SelectionSet, v *model.ComponentConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ComponentConnection(ctx, sel, v) } -func (ec *executionContext) marshalOComponentEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ComponentEdge) graphql.Marshaler { +func (ec *executionContext) marshalOComponentEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ComponentEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31539,7 +31537,7 @@ func (ec *executionContext) marshalOComponentEdge2ᚕᚖgithubᚗwdfᚗsapᚗcor if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOComponentEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOComponentEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -31553,14 +31551,14 @@ func (ec *executionContext) marshalOComponentEdge2ᚕᚖgithubᚗwdfᚗsapᚗcor return ret } -func (ec *executionContext) marshalOComponentEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx context.Context, sel ast.SelectionSet, v *model.ComponentEdge) graphql.Marshaler { +func (ec *executionContext) marshalOComponentEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentEdge(ctx context.Context, sel ast.SelectionSet, v *model.ComponentEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ComponentEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOComponentFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentFilter(ctx context.Context, v interface{}) (*model.ComponentFilter, error) { +func (ec *executionContext) unmarshalOComponentFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentFilter(ctx context.Context, v interface{}) (*model.ComponentFilter, error) { if v == nil { return nil, nil } @@ -31568,21 +31566,21 @@ func (ec *executionContext) unmarshalOComponentFilter2ᚖgithubᚗwdfᚗsapᚗco return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOComponentInstanceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx context.Context, sel ast.SelectionSet, v *model.ComponentInstanceConnection) graphql.Marshaler { +func (ec *executionContext) marshalOComponentInstanceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceConnection(ctx context.Context, sel ast.SelectionSet, v *model.ComponentInstanceConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ComponentInstanceConnection(ctx, sel, v) } -func (ec *executionContext) marshalOComponentInstanceEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx context.Context, sel ast.SelectionSet, v *model.ComponentInstanceEdge) graphql.Marshaler { +func (ec *executionContext) marshalOComponentInstanceEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceEdge(ctx context.Context, sel ast.SelectionSet, v *model.ComponentInstanceEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ComponentInstanceEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOComponentInstanceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceFilter(ctx context.Context, v interface{}) (*model.ComponentInstanceFilter, error) { +func (ec *executionContext) unmarshalOComponentInstanceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentInstanceFilter(ctx context.Context, v interface{}) (*model.ComponentInstanceFilter, error) { if v == nil { return nil, nil } @@ -31590,7 +31588,7 @@ func (ec *executionContext) unmarshalOComponentInstanceFilter2ᚖgithubᚗwdfᚗ return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) unmarshalOComponentTypeValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx context.Context, v interface{}) (*model.ComponentTypeValues, error) { +func (ec *executionContext) unmarshalOComponentTypeValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx context.Context, v interface{}) (*model.ComponentTypeValues, error) { if v == nil { return nil, nil } @@ -31599,35 +31597,35 @@ func (ec *executionContext) unmarshalOComponentTypeValues2ᚖgithubᚗwdfᚗsap return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOComponentTypeValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx context.Context, sel ast.SelectionSet, v *model.ComponentTypeValues) graphql.Marshaler { +func (ec *executionContext) marshalOComponentTypeValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentTypeValues(ctx context.Context, sel ast.SelectionSet, v *model.ComponentTypeValues) graphql.Marshaler { if v == nil { return graphql.Null } return v } -func (ec *executionContext) marshalOComponentVersion2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersion) graphql.Marshaler { +func (ec *executionContext) marshalOComponentVersion2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersion(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersion) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ComponentVersion(ctx, sel, v) } -func (ec *executionContext) marshalOComponentVersionConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersionConnection) graphql.Marshaler { +func (ec *executionContext) marshalOComponentVersionConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionConnection(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersionConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ComponentVersionConnection(ctx, sel, v) } -func (ec *executionContext) marshalOComponentVersionEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersionEdge) graphql.Marshaler { +func (ec *executionContext) marshalOComponentVersionEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionEdge(ctx context.Context, sel ast.SelectionSet, v *model.ComponentVersionEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ComponentVersionEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOComponentVersionFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx context.Context, v interface{}) (*model.ComponentVersionFilter, error) { +func (ec *executionContext) unmarshalOComponentVersionFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐComponentVersionFilter(ctx context.Context, v interface{}) (*model.ComponentVersionFilter, error) { if v == nil { return nil, nil } @@ -31651,14 +31649,14 @@ func (ec *executionContext) marshalODateTime2ᚖstring(ctx context.Context, sel return res } -func (ec *executionContext) marshalOEvidenceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx context.Context, sel ast.SelectionSet, v *model.EvidenceConnection) graphql.Marshaler { +func (ec *executionContext) marshalOEvidenceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceConnection(ctx context.Context, sel ast.SelectionSet, v *model.EvidenceConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._EvidenceConnection(ctx, sel, v) } -func (ec *executionContext) marshalOEvidenceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx context.Context, sel ast.SelectionSet, v []*model.EvidenceEdge) graphql.Marshaler { +func (ec *executionContext) marshalOEvidenceEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx context.Context, sel ast.SelectionSet, v []*model.EvidenceEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31685,7 +31683,7 @@ func (ec *executionContext) marshalOEvidenceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorp if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOEvidenceEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOEvidenceEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -31699,14 +31697,14 @@ func (ec *executionContext) marshalOEvidenceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorp return ret } -func (ec *executionContext) marshalOEvidenceEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx context.Context, sel ast.SelectionSet, v *model.EvidenceEdge) graphql.Marshaler { +func (ec *executionContext) marshalOEvidenceEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceEdge(ctx context.Context, sel ast.SelectionSet, v *model.EvidenceEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._EvidenceEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOEvidenceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx context.Context, v interface{}) (*model.EvidenceFilter, error) { +func (ec *executionContext) unmarshalOEvidenceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐEvidenceFilter(ctx context.Context, v interface{}) (*model.EvidenceFilter, error) { if v == nil { return nil, nil } @@ -31714,7 +31712,7 @@ func (ec *executionContext) unmarshalOEvidenceFilter2ᚖgithubᚗwdfᚗsapᚗcor return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOFilterItem2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx context.Context, sel ast.SelectionSet, v *model.FilterItem) graphql.Marshaler { +func (ec *executionContext) marshalOFilterItem2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐFilterItem(ctx context.Context, sel ast.SelectionSet, v *model.FilterItem) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31785,28 +31783,28 @@ func (ec *executionContext) marshalOInt2ᚖint(ctx context.Context, sel ast.Sele return res } -func (ec *executionContext) marshalOIssue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx context.Context, sel ast.SelectionSet, v *model.Issue) graphql.Marshaler { +func (ec *executionContext) marshalOIssue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssue(ctx context.Context, sel ast.SelectionSet, v *model.Issue) graphql.Marshaler { if v == nil { return graphql.Null } return ec._Issue(ctx, sel, v) } -func (ec *executionContext) marshalOIssueConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueConnection) graphql.Marshaler { +func (ec *executionContext) marshalOIssueConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueConnection(ctx, sel, v) } -func (ec *executionContext) marshalOIssueEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOIssueFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx context.Context, v interface{}) (*model.IssueFilter, error) { +func (ec *executionContext) unmarshalOIssueFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueFilter(ctx context.Context, v interface{}) (*model.IssueFilter, error) { if v == nil { return nil, nil } @@ -31814,7 +31812,7 @@ func (ec *executionContext) unmarshalOIssueFilter2ᚖgithubᚗwdfᚗsapᚗcorp return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) unmarshalOIssueMatchChangeActions2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, v interface{}) ([]*model.IssueMatchChangeActions, error) { +func (ec *executionContext) unmarshalOIssueMatchChangeActions2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, v interface{}) ([]*model.IssueMatchChangeActions, error) { if v == nil { return nil, nil } @@ -31826,7 +31824,7 @@ func (ec *executionContext) unmarshalOIssueMatchChangeActions2ᚕᚖgithubᚗwdf res := make([]*model.IssueMatchChangeActions, len(vSlice)) for i := range vSlice { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i)) - res[i], err = ec.unmarshalOIssueMatchChangeActions2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, vSlice[i]) + res[i], err = ec.unmarshalOIssueMatchChangeActions2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, vSlice[i]) if err != nil { return nil, err } @@ -31834,7 +31832,7 @@ func (ec *executionContext) unmarshalOIssueMatchChangeActions2ᚕᚖgithubᚗwdf return res, nil } -func (ec *executionContext) marshalOIssueMatchChangeActions2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchChangeActions) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchChangeActions2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchChangeActions) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31861,7 +31859,7 @@ func (ec *executionContext) marshalOIssueMatchChangeActions2ᚕᚖgithubᚗwdf if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueMatchChangeActions2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueMatchChangeActions2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx, sel, v[i]) } if isLen1 { f(i) @@ -31875,7 +31873,7 @@ func (ec *executionContext) marshalOIssueMatchChangeActions2ᚕᚖgithubᚗwdf return ret } -func (ec *executionContext) unmarshalOIssueMatchChangeActions2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, v interface{}) (*model.IssueMatchChangeActions, error) { +func (ec *executionContext) unmarshalOIssueMatchChangeActions2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, v interface{}) (*model.IssueMatchChangeActions, error) { if v == nil { return nil, nil } @@ -31884,21 +31882,21 @@ func (ec *executionContext) unmarshalOIssueMatchChangeActions2ᚖgithubᚗwdfᚗ return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOIssueMatchChangeActions2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChangeActions) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchChangeActions2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeActions(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChangeActions) graphql.Marshaler { if v == nil { return graphql.Null } return v } -func (ec *executionContext) marshalOIssueMatchChangeConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChangeConnection) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchChangeConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChangeConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueMatchChangeConnection(ctx, sel, v) } -func (ec *executionContext) marshalOIssueMatchChangeEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchChangeEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchChangeEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchChangeEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31925,7 +31923,7 @@ func (ec *executionContext) marshalOIssueMatchChangeEdge2ᚕᚖgithubᚗwdfᚗsa if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueMatchChangeEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueMatchChangeEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -31939,14 +31937,14 @@ func (ec *executionContext) marshalOIssueMatchChangeEdge2ᚕᚖgithubᚗwdfᚗsa return ret } -func (ec *executionContext) marshalOIssueMatchChangeEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChangeEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchChangeEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchChangeEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueMatchChangeEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOIssueMatchChangeFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx context.Context, v interface{}) (*model.IssueMatchChangeFilter, error) { +func (ec *executionContext) unmarshalOIssueMatchChangeFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchChangeFilter(ctx context.Context, v interface{}) (*model.IssueMatchChangeFilter, error) { if v == nil { return nil, nil } @@ -31954,14 +31952,14 @@ func (ec *executionContext) unmarshalOIssueMatchChangeFilter2ᚖgithubᚗwdfᚗs return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOIssueMatchConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchConnection) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueMatchConnection(ctx, sel, v) } -func (ec *executionContext) marshalOIssueMatchEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -31988,7 +31986,7 @@ func (ec *executionContext) marshalOIssueMatchEdge2ᚕᚖgithubᚗwdfᚗsapᚗco if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueMatchEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueMatchEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32002,14 +32000,14 @@ func (ec *executionContext) marshalOIssueMatchEdge2ᚕᚖgithubᚗwdfᚗsapᚗco return ret } -func (ec *executionContext) marshalOIssueMatchEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueMatchEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOIssueMatchFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx context.Context, v interface{}) (*model.IssueMatchFilter, error) { +func (ec *executionContext) unmarshalOIssueMatchFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilter(ctx context.Context, v interface{}) (*model.IssueMatchFilter, error) { if v == nil { return nil, nil } @@ -32017,14 +32015,14 @@ func (ec *executionContext) unmarshalOIssueMatchFilter2ᚖgithubᚗwdfᚗsapᚗc return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOIssueMatchFilterValue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilterValue(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchFilterValue) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchFilterValue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchFilterValue(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchFilterValue) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueMatchFilterValue(ctx, sel, v) } -func (ec *executionContext) unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, v interface{}) ([]*model.IssueMatchStatusValues, error) { +func (ec *executionContext) unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, v interface{}) ([]*model.IssueMatchStatusValues, error) { if v == nil { return nil, nil } @@ -32036,7 +32034,7 @@ func (ec *executionContext) unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdf res := make([]*model.IssueMatchStatusValues, len(vSlice)) for i := range vSlice { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i)) - res[i], err = ec.unmarshalOIssueMatchStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, vSlice[i]) + res[i], err = ec.unmarshalOIssueMatchStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, vSlice[i]) if err != nil { return nil, err } @@ -32044,7 +32042,7 @@ func (ec *executionContext) unmarshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdf return res, nil } -func (ec *executionContext) marshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchStatusValues) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchStatusValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, sel ast.SelectionSet, v []*model.IssueMatchStatusValues) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32071,7 +32069,7 @@ func (ec *executionContext) marshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdfᚗ if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueMatchStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueMatchStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32085,7 +32083,7 @@ func (ec *executionContext) marshalOIssueMatchStatusValues2ᚕᚖgithubᚗwdfᚗ return ret } -func (ec *executionContext) unmarshalOIssueMatchStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, v interface{}) (*model.IssueMatchStatusValues, error) { +func (ec *executionContext) unmarshalOIssueMatchStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, v interface{}) (*model.IssueMatchStatusValues, error) { if v == nil { return nil, nil } @@ -32094,35 +32092,35 @@ func (ec *executionContext) unmarshalOIssueMatchStatusValues2ᚖgithubᚗwdfᚗs return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOIssueMatchStatusValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchStatusValues) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMatchStatusValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMatchStatusValues(ctx context.Context, sel ast.SelectionSet, v *model.IssueMatchStatusValues) graphql.Marshaler { if v == nil { return graphql.Null } return v } -func (ec *executionContext) marshalOIssueMetadata2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMetadata(ctx context.Context, sel ast.SelectionSet, v *model.IssueMetadata) graphql.Marshaler { +func (ec *executionContext) marshalOIssueMetadata2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueMetadata(ctx context.Context, sel ast.SelectionSet, v *model.IssueMetadata) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueMetadata(ctx, sel, v) } -func (ec *executionContext) marshalOIssueRepository2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepository) graphql.Marshaler { +func (ec *executionContext) marshalOIssueRepository2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepository(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepository) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueRepository(ctx, sel, v) } -func (ec *executionContext) marshalOIssueRepositoryConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepositoryConnection) graphql.Marshaler { +func (ec *executionContext) marshalOIssueRepositoryConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepositoryConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueRepositoryConnection(ctx, sel, v) } -func (ec *executionContext) marshalOIssueRepositoryEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueRepositoryEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueRepositoryEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueRepositoryEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32149,7 +32147,7 @@ func (ec *executionContext) marshalOIssueRepositoryEdge2ᚕᚖgithubᚗwdfᚗsap if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueRepositoryEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueRepositoryEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32163,14 +32161,14 @@ func (ec *executionContext) marshalOIssueRepositoryEdge2ᚕᚖgithubᚗwdfᚗsap return ret } -func (ec *executionContext) marshalOIssueRepositoryEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepositoryEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueRepositoryEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueRepositoryEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueRepositoryEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOIssueRepositoryFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryFilter(ctx context.Context, v interface{}) (*model.IssueRepositoryFilter, error) { +func (ec *executionContext) unmarshalOIssueRepositoryFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueRepositoryFilter(ctx context.Context, v interface{}) (*model.IssueRepositoryFilter, error) { if v == nil { return nil, nil } @@ -32178,7 +32176,7 @@ func (ec *executionContext) unmarshalOIssueRepositoryFilter2ᚖgithubᚗwdfᚗsa return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) unmarshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, v interface{}) ([]*model.IssueTypes, error) { +func (ec *executionContext) unmarshalOIssueTypes2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, v interface{}) ([]*model.IssueTypes, error) { if v == nil { return nil, nil } @@ -32190,7 +32188,7 @@ func (ec *executionContext) unmarshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorp res := make([]*model.IssueTypes, len(vSlice)) for i := range vSlice { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i)) - res[i], err = ec.unmarshalOIssueTypes2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, vSlice[i]) + res[i], err = ec.unmarshalOIssueTypes2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, vSlice[i]) if err != nil { return nil, err } @@ -32198,7 +32196,7 @@ func (ec *executionContext) unmarshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorp return res, nil } -func (ec *executionContext) marshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, sel ast.SelectionSet, v []*model.IssueTypes) graphql.Marshaler { +func (ec *executionContext) marshalOIssueTypes2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, sel ast.SelectionSet, v []*model.IssueTypes) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32225,7 +32223,7 @@ func (ec *executionContext) marshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorp if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueTypes2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueTypes2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32239,7 +32237,7 @@ func (ec *executionContext) marshalOIssueTypes2ᚕᚖgithubᚗwdfᚗsapᚗcorp return ret } -func (ec *executionContext) unmarshalOIssueTypes2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, v interface{}) (*model.IssueTypes, error) { +func (ec *executionContext) unmarshalOIssueTypes2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, v interface{}) (*model.IssueTypes, error) { if v == nil { return nil, nil } @@ -32248,21 +32246,21 @@ func (ec *executionContext) unmarshalOIssueTypes2ᚖgithubᚗwdfᚗsapᚗcorpᚋ return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOIssueTypes2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, sel ast.SelectionSet, v *model.IssueTypes) graphql.Marshaler { +func (ec *executionContext) marshalOIssueTypes2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueTypes(ctx context.Context, sel ast.SelectionSet, v *model.IssueTypes) graphql.Marshaler { if v == nil { return graphql.Null } return v } -func (ec *executionContext) marshalOIssueVariantConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueVariantConnection) graphql.Marshaler { +func (ec *executionContext) marshalOIssueVariantConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantConnection(ctx context.Context, sel ast.SelectionSet, v *model.IssueVariantConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueVariantConnection(ctx, sel, v) } -func (ec *executionContext) marshalOIssueVariantEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueVariantEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueVariantEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx context.Context, sel ast.SelectionSet, v []*model.IssueVariantEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32289,7 +32287,7 @@ func (ec *executionContext) marshalOIssueVariantEdge2ᚕᚖgithubᚗwdfᚗsapᚗ if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOIssueVariantEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOIssueVariantEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32303,14 +32301,14 @@ func (ec *executionContext) marshalOIssueVariantEdge2ᚕᚖgithubᚗwdfᚗsapᚗ return ret } -func (ec *executionContext) marshalOIssueVariantEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueVariantEdge) graphql.Marshaler { +func (ec *executionContext) marshalOIssueVariantEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantEdge(ctx context.Context, sel ast.SelectionSet, v *model.IssueVariantEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._IssueVariantEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOIssueVariantFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx context.Context, v interface{}) (*model.IssueVariantFilter, error) { +func (ec *executionContext) unmarshalOIssueVariantFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐIssueVariantFilter(ctx context.Context, v interface{}) (*model.IssueVariantFilter, error) { if v == nil { return nil, nil } @@ -32318,7 +32316,7 @@ func (ec *executionContext) unmarshalOIssueVariantFilter2ᚖgithubᚗwdfᚗsap return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOPage2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx context.Context, sel ast.SelectionSet, v []*model.Page) graphql.Marshaler { +func (ec *executionContext) marshalOPage2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx context.Context, sel ast.SelectionSet, v []*model.Page) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32345,7 +32343,7 @@ func (ec *executionContext) marshalOPage2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋ if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOPage2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx, sel, v[i]) + ret[i] = ec.marshalOPage2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32359,35 +32357,35 @@ func (ec *executionContext) marshalOPage2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋ return ret } -func (ec *executionContext) marshalOPage2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx context.Context, sel ast.SelectionSet, v *model.Page) graphql.Marshaler { +func (ec *executionContext) marshalOPage2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPage(ctx context.Context, sel ast.SelectionSet, v *model.Page) graphql.Marshaler { if v == nil { return graphql.Null } return ec._Page(ctx, sel, v) } -func (ec *executionContext) marshalOPageInfo2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx context.Context, sel ast.SelectionSet, v *model.PageInfo) graphql.Marshaler { +func (ec *executionContext) marshalOPageInfo2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐPageInfo(ctx context.Context, sel ast.SelectionSet, v *model.PageInfo) graphql.Marshaler { if v == nil { return graphql.Null } return ec._PageInfo(ctx, sel, v) } -func (ec *executionContext) marshalOService2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx context.Context, sel ast.SelectionSet, v *model.Service) graphql.Marshaler { +func (ec *executionContext) marshalOService2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐService(ctx context.Context, sel ast.SelectionSet, v *model.Service) graphql.Marshaler { if v == nil { return graphql.Null } return ec._Service(ctx, sel, v) } -func (ec *executionContext) marshalOServiceConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx context.Context, sel ast.SelectionSet, v *model.ServiceConnection) graphql.Marshaler { +func (ec *executionContext) marshalOServiceConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceConnection(ctx context.Context, sel ast.SelectionSet, v *model.ServiceConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ServiceConnection(ctx, sel, v) } -func (ec *executionContext) marshalOServiceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ServiceEdge) graphql.Marshaler { +func (ec *executionContext) marshalOServiceEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx context.Context, sel ast.SelectionSet, v []*model.ServiceEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32414,7 +32412,7 @@ func (ec *executionContext) marshalOServiceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorp if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOServiceEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOServiceEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32428,14 +32426,14 @@ func (ec *executionContext) marshalOServiceEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorp return ret } -func (ec *executionContext) marshalOServiceEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx context.Context, sel ast.SelectionSet, v *model.ServiceEdge) graphql.Marshaler { +func (ec *executionContext) marshalOServiceEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceEdge(ctx context.Context, sel ast.SelectionSet, v *model.ServiceEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ServiceEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx context.Context, v interface{}) (*model.ServiceFilter, error) { +func (ec *executionContext) unmarshalOServiceFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilter(ctx context.Context, v interface{}) (*model.ServiceFilter, error) { if v == nil { return nil, nil } @@ -32443,21 +32441,21 @@ func (ec *executionContext) unmarshalOServiceFilter2ᚖgithubᚗwdfᚗsapᚗcorp return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOServiceFilterValue2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilterValue(ctx context.Context, sel ast.SelectionSet, v *model.ServiceFilterValue) graphql.Marshaler { +func (ec *executionContext) marshalOServiceFilterValue2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐServiceFilterValue(ctx context.Context, sel ast.SelectionSet, v *model.ServiceFilterValue) graphql.Marshaler { if v == nil { return graphql.Null } return ec._ServiceFilterValue(ctx, sel, v) } -func (ec *executionContext) marshalOSeverity2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverity(ctx context.Context, sel ast.SelectionSet, v *model.Severity) graphql.Marshaler { +func (ec *executionContext) marshalOSeverity2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverity(ctx context.Context, sel ast.SelectionSet, v *model.Severity) graphql.Marshaler { if v == nil { return graphql.Null } return ec._Severity(ctx, sel, v) } -func (ec *executionContext) unmarshalOSeverityInput2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityInput(ctx context.Context, v interface{}) (*model.SeverityInput, error) { +func (ec *executionContext) unmarshalOSeverityInput2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityInput(ctx context.Context, v interface{}) (*model.SeverityInput, error) { if v == nil { return nil, nil } @@ -32465,7 +32463,7 @@ func (ec *executionContext) unmarshalOSeverityInput2ᚖgithubᚗwdfᚗsapᚗcorp return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) unmarshalOSeverityValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, v interface{}) ([]*model.SeverityValues, error) { +func (ec *executionContext) unmarshalOSeverityValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, v interface{}) ([]*model.SeverityValues, error) { if v == nil { return nil, nil } @@ -32477,7 +32475,7 @@ func (ec *executionContext) unmarshalOSeverityValues2ᚕᚖgithubᚗwdfᚗsapᚗ res := make([]*model.SeverityValues, len(vSlice)) for i := range vSlice { ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i)) - res[i], err = ec.unmarshalOSeverityValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, vSlice[i]) + res[i], err = ec.unmarshalOSeverityValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, vSlice[i]) if err != nil { return nil, err } @@ -32485,7 +32483,7 @@ func (ec *executionContext) unmarshalOSeverityValues2ᚕᚖgithubᚗwdfᚗsapᚗ return res, nil } -func (ec *executionContext) marshalOSeverityValues2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, sel ast.SelectionSet, v []*model.SeverityValues) graphql.Marshaler { +func (ec *executionContext) marshalOSeverityValues2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, sel ast.SelectionSet, v []*model.SeverityValues) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32512,7 +32510,7 @@ func (ec *executionContext) marshalOSeverityValues2ᚕᚖgithubᚗwdfᚗsapᚗco if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOSeverityValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, sel, v[i]) + ret[i] = ec.marshalOSeverityValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32526,7 +32524,7 @@ func (ec *executionContext) marshalOSeverityValues2ᚕᚖgithubᚗwdfᚗsapᚗco return ret } -func (ec *executionContext) unmarshalOSeverityValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, v interface{}) (*model.SeverityValues, error) { +func (ec *executionContext) unmarshalOSeverityValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, v interface{}) (*model.SeverityValues, error) { if v == nil { return nil, nil } @@ -32535,7 +32533,7 @@ func (ec *executionContext) unmarshalOSeverityValues2ᚖgithubᚗwdfᚗsapᚗcor return res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOSeverityValues2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, sel ast.SelectionSet, v *model.SeverityValues) graphql.Marshaler { +func (ec *executionContext) marshalOSeverityValues2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSeverityValues(ctx context.Context, sel ast.SelectionSet, v *model.SeverityValues) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32590,14 +32588,14 @@ func (ec *executionContext) marshalOString2ᚖstring(ctx context.Context, sel as return res } -func (ec *executionContext) marshalOSupportGroupConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx context.Context, sel ast.SelectionSet, v *model.SupportGroupConnection) graphql.Marshaler { +func (ec *executionContext) marshalOSupportGroupConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupConnection(ctx context.Context, sel ast.SelectionSet, v *model.SupportGroupConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._SupportGroupConnection(ctx, sel, v) } -func (ec *executionContext) marshalOSupportGroupEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx context.Context, sel ast.SelectionSet, v []*model.SupportGroupEdge) graphql.Marshaler { +func (ec *executionContext) marshalOSupportGroupEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx context.Context, sel ast.SelectionSet, v []*model.SupportGroupEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32624,7 +32622,7 @@ func (ec *executionContext) marshalOSupportGroupEdge2ᚕᚖgithubᚗwdfᚗsapᚗ if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOSupportGroupEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOSupportGroupEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32638,14 +32636,14 @@ func (ec *executionContext) marshalOSupportGroupEdge2ᚕᚖgithubᚗwdfᚗsapᚗ return ret } -func (ec *executionContext) marshalOSupportGroupEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx context.Context, sel ast.SelectionSet, v *model.SupportGroupEdge) graphql.Marshaler { +func (ec *executionContext) marshalOSupportGroupEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupEdge(ctx context.Context, sel ast.SelectionSet, v *model.SupportGroupEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._SupportGroupEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOSupportGroupFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx context.Context, v interface{}) (*model.SupportGroupFilter, error) { +func (ec *executionContext) unmarshalOSupportGroupFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐSupportGroupFilter(ctx context.Context, v interface{}) (*model.SupportGroupFilter, error) { if v == nil { return nil, nil } @@ -32653,21 +32651,21 @@ func (ec *executionContext) unmarshalOSupportGroupFilter2ᚖgithubᚗwdfᚗsap return &res, graphql.ErrorOnPath(ctx, err) } -func (ec *executionContext) marshalOUser2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx context.Context, sel ast.SelectionSet, v *model.User) graphql.Marshaler { +func (ec *executionContext) marshalOUser2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUser(ctx context.Context, sel ast.SelectionSet, v *model.User) graphql.Marshaler { if v == nil { return graphql.Null } return ec._User(ctx, sel, v) } -func (ec *executionContext) marshalOUserConnection2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx context.Context, sel ast.SelectionSet, v *model.UserConnection) graphql.Marshaler { +func (ec *executionContext) marshalOUserConnection2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserConnection(ctx context.Context, sel ast.SelectionSet, v *model.UserConnection) graphql.Marshaler { if v == nil { return graphql.Null } return ec._UserConnection(ctx, sel, v) } -func (ec *executionContext) marshalOUserEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx context.Context, sel ast.SelectionSet, v []*model.UserEdge) graphql.Marshaler { +func (ec *executionContext) marshalOUserEdge2ᚕᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx context.Context, sel ast.SelectionSet, v []*model.UserEdge) graphql.Marshaler { if v == nil { return graphql.Null } @@ -32694,7 +32692,7 @@ func (ec *executionContext) marshalOUserEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋc if !isLen1 { defer wg.Done() } - ret[i] = ec.marshalOUserEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx, sel, v[i]) + ret[i] = ec.marshalOUserEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx, sel, v[i]) } if isLen1 { f(i) @@ -32708,14 +32706,14 @@ func (ec *executionContext) marshalOUserEdge2ᚕᚖgithubᚗwdfᚗsapᚗcorpᚋc return ret } -func (ec *executionContext) marshalOUserEdge2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx context.Context, sel ast.SelectionSet, v *model.UserEdge) graphql.Marshaler { +func (ec *executionContext) marshalOUserEdge2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserEdge(ctx context.Context, sel ast.SelectionSet, v *model.UserEdge) graphql.Marshaler { if v == nil { return graphql.Null } return ec._UserEdge(ctx, sel, v) } -func (ec *executionContext) unmarshalOUserFilter2ᚖgithubᚗwdfᚗsapᚗcorpᚋccᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx context.Context, v interface{}) (*model.UserFilter, error) { +func (ec *executionContext) unmarshalOUserFilter2ᚖgithubᚗcomᚋcloudoperatorsᚋheurekaᚋinternalᚋapiᚋgraphqlᚋgraphᚋmodelᚐUserFilter(ctx context.Context, v interface{}) (*model.UserFilter, error) { if v == nil { return nil, nil } diff --git a/internal/api/graphql/graph/model/models.go b/internal/api/graphql/graph/model/models.go index 88c9728f..0952c290 100644 --- a/internal/api/graphql/graph/model/models.go +++ b/internal/api/graphql/graph/model/models.go @@ -10,8 +10,8 @@ import ( "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/pkg/util" ) // add custom models here diff --git a/internal/api/graphql/graph/resolver/activity.go b/internal/api/graphql/graph/resolver/activity.go index 4195da8e..e7884d88 100644 --- a/internal/api/graphql/graph/resolver/activity.go +++ b/internal/api/graphql/graph/resolver/activity.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // Services is the resolver for the services field. diff --git a/internal/api/graphql/graph/resolver/component.go b/internal/api/graphql/graph/resolver/component.go index eff197b0..905815d8 100644 --- a/internal/api/graphql/graph/resolver/component.go +++ b/internal/api/graphql/graph/resolver/component.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // ComponentVersions is the resolver for the componentVersions field. diff --git a/internal/api/graphql/graph/resolver/component_instance.go b/internal/api/graphql/graph/resolver/component_instance.go index d7e86254..5975d19b 100644 --- a/internal/api/graphql/graph/resolver/component_instance.go +++ b/internal/api/graphql/graph/resolver/component_instance.go @@ -10,11 +10,11 @@ package resolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/util" ) // ComponentVersion is the resolver for the componentVersion field. diff --git a/internal/api/graphql/graph/resolver/component_version.go b/internal/api/graphql/graph/resolver/component_version.go index 516c1e38..3227f492 100644 --- a/internal/api/graphql/graph/resolver/component_version.go +++ b/internal/api/graphql/graph/resolver/component_version.go @@ -10,11 +10,11 @@ package resolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/util" ) // Component is the resolver for the component field. diff --git a/internal/api/graphql/graph/resolver/evidence.go b/internal/api/graphql/graph/resolver/evidence.go index 83505ef1..4ffa908c 100644 --- a/internal/api/graphql/graph/resolver/evidence.go +++ b/internal/api/graphql/graph/resolver/evidence.go @@ -10,11 +10,11 @@ package resolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/util" ) // Author is the resolver for the author field. diff --git a/internal/api/graphql/graph/resolver/issue.go b/internal/api/graphql/graph/resolver/issue.go index 26c3962e..65f264d8 100644 --- a/internal/api/graphql/graph/resolver/issue.go +++ b/internal/api/graphql/graph/resolver/issue.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // IssueVariants is the resolver for the issueVariants field. diff --git a/internal/api/graphql/graph/resolver/issue_match.go b/internal/api/graphql/graph/resolver/issue_match.go index 27c62754..4c60bf9b 100644 --- a/internal/api/graphql/graph/resolver/issue_match.go +++ b/internal/api/graphql/graph/resolver/issue_match.go @@ -10,12 +10,12 @@ package resolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/util" ) // Severity is the resolver for the severity field. diff --git a/internal/api/graphql/graph/resolver/issue_match_change.go b/internal/api/graphql/graph/resolver/issue_match_change.go index 89ba84f4..14afca9d 100644 --- a/internal/api/graphql/graph/resolver/issue_match_change.go +++ b/internal/api/graphql/graph/resolver/issue_match_change.go @@ -10,11 +10,11 @@ package resolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/util" ) // IssueMatch is the resolver for the issueMatch field. diff --git a/internal/api/graphql/graph/resolver/issue_match_filter_value.go b/internal/api/graphql/graph/resolver/issue_match_filter_value.go index eeb2d900..e7e732e1 100644 --- a/internal/api/graphql/graph/resolver/issue_match_filter_value.go +++ b/internal/api/graphql/graph/resolver/issue_match_filter_value.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // PrimaryName is the resolver for the primaryName field. diff --git a/internal/api/graphql/graph/resolver/issue_repository.go b/internal/api/graphql/graph/resolver/issue_repository.go index 5c35c1fd..f05e2966 100644 --- a/internal/api/graphql/graph/resolver/issue_repository.go +++ b/internal/api/graphql/graph/resolver/issue_repository.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // IssueVariants is the resolver for the issueVariants field. diff --git a/internal/api/graphql/graph/resolver/issue_variant.go b/internal/api/graphql/graph/resolver/issue_variant.go index c48c8de5..1f8b10f9 100644 --- a/internal/api/graphql/graph/resolver/issue_variant.go +++ b/internal/api/graphql/graph/resolver/issue_variant.go @@ -10,11 +10,11 @@ package resolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/util" ) // IssueRepository is the resolver for the issueRepository field. diff --git a/internal/api/graphql/graph/resolver/mutation.go b/internal/api/graphql/graph/resolver/mutation.go index 68629a4f..867a3332 100644 --- a/internal/api/graphql/graph/resolver/mutation.go +++ b/internal/api/graphql/graph/resolver/mutation.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // CreateUser is the resolver for the createUser field. diff --git a/internal/api/graphql/graph/resolver/query.go b/internal/api/graphql/graph/resolver/query.go index eef3aec0..36f6beba 100644 --- a/internal/api/graphql/graph/resolver/query.go +++ b/internal/api/graphql/graph/resolver/query.go @@ -10,10 +10,10 @@ package resolver import ( "context" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" "k8s.io/utils/pointer" ) diff --git a/internal/api/graphql/graph/resolver/resolver.go b/internal/api/graphql/graph/resolver/resolver.go index 447c066e..9ffa9c1c 100644 --- a/internal/api/graphql/graph/resolver/resolver.go +++ b/internal/api/graphql/graph/resolver/resolver.go @@ -4,8 +4,8 @@ package resolver import ( - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/app" ) // This file will not be regenerated automatically. diff --git a/internal/api/graphql/graph/resolver/service.go b/internal/api/graphql/graph/resolver/service.go index 996426cc..70cbfd6e 100644 --- a/internal/api/graphql/graph/resolver/service.go +++ b/internal/api/graphql/graph/resolver/service.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // Owners is the resolver for the owners field. diff --git a/internal/api/graphql/graph/resolver/service_filter.go b/internal/api/graphql/graph/resolver/service_filter.go index 8437ba9f..873071fd 100644 --- a/internal/api/graphql/graph/resolver/service_filter.go +++ b/internal/api/graphql/graph/resolver/service_filter.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // ServiceName is the resolver for the serviceName field. diff --git a/internal/api/graphql/graph/resolver/support_group.go b/internal/api/graphql/graph/resolver/support_group.go index 7acdd9fb..47860779 100644 --- a/internal/api/graphql/graph/resolver/support_group.go +++ b/internal/api/graphql/graph/resolver/support_group.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // Users is the resolver for the users field. diff --git a/internal/api/graphql/graph/resolver/user.go b/internal/api/graphql/graph/resolver/user.go index 1069c631..6ab76f7a 100644 --- a/internal/api/graphql/graph/resolver/user.go +++ b/internal/api/graphql/graph/resolver/user.go @@ -10,9 +10,9 @@ package resolver import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/baseResolver" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/baseResolver" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" ) // SupportGroups is the resolver for the supportGroups field. diff --git a/internal/api/graphql/server.go b/internal/api/graphql/server.go index be89ab53..e180544b 100644 --- a/internal/api/graphql/server.go +++ b/internal/api/graphql/server.go @@ -6,12 +6,12 @@ package graphqlapi import ( "github.com/99designs/gqlgen/graphql/handler" "github.com/99designs/gqlgen/graphql/playground" + "github.com/cloudoperators/heureka/internal/api/graphql/access" + "github.com/cloudoperators/heureka/internal/api/graphql/graph" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/resolver" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/util" "github.com/gin-gonic/gin" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/access" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/resolver" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/util" ) type GraphQLAPI struct { diff --git a/internal/app/activity/activity_handler.go b/internal/app/activity/activity_handler.go index ec5f5988..b85dd821 100644 --- a/internal/app/activity/activity_handler.go +++ b/internal/app/activity/activity_handler.go @@ -5,12 +5,13 @@ package activity import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type activityHandler struct { diff --git a/internal/app/activity/activity_handler_events.go b/internal/app/activity/activity_handler_events.go index f96db99e..4e9a6854 100644 --- a/internal/app/activity/activity_handler_events.go +++ b/internal/app/activity/activity_handler_events.go @@ -4,8 +4,8 @@ package activity import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/activity/activity_handler_interface.go b/internal/app/activity/activity_handler_interface.go index c5201bbc..6b50dea4 100644 --- a/internal/app/activity/activity_handler_interface.go +++ b/internal/app/activity/activity_handler_interface.go @@ -3,7 +3,7 @@ package activity -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type ActivityHandler interface { ListActivities(*entity.ActivityFilter, *entity.ListOptions) (*entity.List[entity.ActivityResult], error) diff --git a/internal/app/activity/activity_handler_test.go b/internal/app/activity/activity_handler_test.go index 4a20aba9..0653f892 100644 --- a/internal/app/activity/activity_handler_test.go +++ b/internal/app/activity/activity_handler_test.go @@ -4,18 +4,19 @@ package activity_test import ( - "github.wdf.sap.corp/cc/heureka/internal/app/activity" - a "github.wdf.sap.corp/cc/heureka/internal/app/activity" - "github.wdf.sap.corp/cc/heureka/internal/app/event" "math" "testing" + "github.com/cloudoperators/heureka/internal/app/activity" + a "github.com/cloudoperators/heureka/internal/app/activity" + "github.com/cloudoperators/heureka/internal/app/event" + + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" ) func TestActivityHandler(t *testing.T) { diff --git a/internal/app/common/pagination_helpers.go b/internal/app/common/pagination_helpers.go index 69d2a35f..8e277c7f 100644 --- a/internal/app/common/pagination_helpers.go +++ b/internal/app/common/pagination_helpers.go @@ -5,8 +5,9 @@ package common import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/pkg/util" + + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/pkg/util" ) func PreparePagination(filter *entity.Paginated, options *entity.ListOptions) { diff --git a/internal/app/component/component_handler.go b/internal/app/component/component_handler.go index bbb2f73f..2da923fd 100644 --- a/internal/app/component/component_handler.go +++ b/internal/app/component/component_handler.go @@ -5,13 +5,14 @@ package component import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) type componentHandler struct { diff --git a/internal/app/component/component_handler_events.go b/internal/app/component/component_handler_events.go index ac7e7039..91c6bef0 100644 --- a/internal/app/component/component_handler_events.go +++ b/internal/app/component/component_handler_events.go @@ -4,8 +4,8 @@ package component import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/component/component_handler_interface.go b/internal/app/component/component_handler_interface.go index ff2e8d93..1c7d453b 100644 --- a/internal/app/component/component_handler_interface.go +++ b/internal/app/component/component_handler_interface.go @@ -3,7 +3,7 @@ package component -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type ComponentHandler interface { ListComponents(*entity.ComponentFilter, *entity.ListOptions) (*entity.List[entity.ComponentResult], error) diff --git a/internal/app/component/component_handler_test.go b/internal/app/component/component_handler_test.go index 1c3fa4a1..2ffa592c 100644 --- a/internal/app/component/component_handler_test.go +++ b/internal/app/component/component_handler_test.go @@ -4,17 +4,18 @@ package component_test import ( - c "github.wdf.sap.corp/cc/heureka/internal/app/component" - "github.wdf.sap.corp/cc/heureka/internal/app/event" "math" "testing" + c "github.com/cloudoperators/heureka/internal/app/component" + "github.com/cloudoperators/heureka/internal/app/event" + + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" ) func TestComponentHandler(t *testing.T) { diff --git a/internal/app/component_instance/component_instance_handler.go b/internal/app/component_instance/component_instance_handler.go index 7db14b15..b03cbd99 100644 --- a/internal/app/component_instance/component_instance_handler.go +++ b/internal/app/component_instance/component_instance_handler.go @@ -5,11 +5,12 @@ package component_instance import ( "fmt" + + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type componentInstanceHandler struct { diff --git a/internal/app/component_instance/component_instance_handler_events.go b/internal/app/component_instance/component_instance_handler_events.go index e0f63e9c..279dd16d 100644 --- a/internal/app/component_instance/component_instance_handler_events.go +++ b/internal/app/component_instance/component_instance_handler_events.go @@ -4,8 +4,8 @@ package component_instance import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/component_instance/component_instance_handler_interface.go b/internal/app/component_instance/component_instance_handler_interface.go index 5ecf3665..9abf1d14 100644 --- a/internal/app/component_instance/component_instance_handler_interface.go +++ b/internal/app/component_instance/component_instance_handler_interface.go @@ -3,7 +3,7 @@ package component_instance -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type ComponentInstanceHandler interface { ListComponentInstances(*entity.ComponentInstanceFilter, *entity.ListOptions) (*entity.List[entity.ComponentInstanceResult], error) diff --git a/internal/app/component_instance/component_instance_handler_test.go b/internal/app/component_instance/component_instance_handler_test.go index 6ed3f1fb..f4bb35b3 100644 --- a/internal/app/component_instance/component_instance_handler_test.go +++ b/internal/app/component_instance/component_instance_handler_test.go @@ -4,16 +4,17 @@ package component_instance_test import ( + "math" + "testing" + + ci "github.com/cloudoperators/heureka/internal/app/component_instance" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - ci "github.wdf.sap.corp/cc/heureka/internal/app/component_instance" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestComponentInstanceHandler(t *testing.T) { diff --git a/internal/app/component_version/component_version_handler.go b/internal/app/component_version/component_version_handler.go index c62952a5..39d73dac 100644 --- a/internal/app/component_version/component_version_handler.go +++ b/internal/app/component_version/component_version_handler.go @@ -5,11 +5,12 @@ package component_version import ( "fmt" + + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type componentVersionHandler struct { diff --git a/internal/app/component_version/component_version_handler_events.go b/internal/app/component_version/component_version_handler_events.go index ebcd8493..9dbdc5d9 100644 --- a/internal/app/component_version/component_version_handler_events.go +++ b/internal/app/component_version/component_version_handler_events.go @@ -4,8 +4,8 @@ package component_version import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/component_version/component_version_handler_interface.go b/internal/app/component_version/component_version_handler_interface.go index 55157464..dbd3f255 100644 --- a/internal/app/component_version/component_version_handler_interface.go +++ b/internal/app/component_version/component_version_handler_interface.go @@ -3,7 +3,7 @@ package component_version -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type ComponentVersionHandler interface { ListComponentVersions(*entity.ComponentVersionFilter, *entity.ListOptions) (*entity.List[entity.ComponentVersionResult], error) diff --git a/internal/app/component_version/component_version_handler_test.go b/internal/app/component_version/component_version_handler_test.go index e270a311..910264a6 100644 --- a/internal/app/component_version/component_version_handler_test.go +++ b/internal/app/component_version/component_version_handler_test.go @@ -4,16 +4,17 @@ package component_version_test import ( + "math" + "testing" + + cv "github.com/cloudoperators/heureka/internal/app/component_version" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - cv "github.wdf.sap.corp/cc/heureka/internal/app/component_version" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestComponentVersionHandler(t *testing.T) { diff --git a/internal/app/evidence/evidence_handler.go b/internal/app/evidence/evidence_handler.go index e6b48202..f3a8eb21 100644 --- a/internal/app/evidence/evidence_handler.go +++ b/internal/app/evidence/evidence_handler.go @@ -5,12 +5,13 @@ package evidence import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type evidenceHandler struct { diff --git a/internal/app/evidence/evidence_handler_events.go b/internal/app/evidence/evidence_handler_events.go index 8b199f90..b46c9363 100644 --- a/internal/app/evidence/evidence_handler_events.go +++ b/internal/app/evidence/evidence_handler_events.go @@ -4,8 +4,8 @@ package evidence import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/evidence/evidence_handler_interface.go b/internal/app/evidence/evidence_handler_interface.go index cb7236d1..6d58f0ec 100644 --- a/internal/app/evidence/evidence_handler_interface.go +++ b/internal/app/evidence/evidence_handler_interface.go @@ -3,7 +3,7 @@ package evidence -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type EvidenceHandler interface { ListEvidences(*entity.EvidenceFilter, *entity.ListOptions) (*entity.List[entity.EvidenceResult], error) diff --git a/internal/app/evidence/evidence_handler_test.go b/internal/app/evidence/evidence_handler_test.go index f18defcc..3b78050a 100644 --- a/internal/app/evidence/evidence_handler_test.go +++ b/internal/app/evidence/evidence_handler_test.go @@ -4,16 +4,17 @@ package evidence_test import ( + "math" + "testing" + + "github.com/cloudoperators/heureka/internal/app/event" + es "github.com/cloudoperators/heureka/internal/app/evidence" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - es "github.wdf.sap.corp/cc/heureka/internal/app/evidence" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestEvidenceHandler(t *testing.T) { diff --git a/internal/app/heureka.go b/internal/app/heureka.go index a1cc5c1d..90350428 100644 --- a/internal/app/heureka.go +++ b/internal/app/heureka.go @@ -5,22 +5,22 @@ package app import ( "context" - "github.wdf.sap.corp/cc/heureka/internal/app/activity" - "github.wdf.sap.corp/cc/heureka/internal/app/component" - "github.wdf.sap.corp/cc/heureka/internal/app/component_instance" - "github.wdf.sap.corp/cc/heureka/internal/app/component_version" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/app/evidence" - "github.wdf.sap.corp/cc/heureka/internal/app/issue" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_match" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_match_change" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_repository" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_variant" - "github.wdf.sap.corp/cc/heureka/internal/app/service" - "github.wdf.sap.corp/cc/heureka/internal/app/severity" - "github.wdf.sap.corp/cc/heureka/internal/app/support_group" - "github.wdf.sap.corp/cc/heureka/internal/app/user" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/activity" + "github.com/cloudoperators/heureka/internal/app/component" + "github.com/cloudoperators/heureka/internal/app/component_instance" + "github.com/cloudoperators/heureka/internal/app/component_version" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/app/evidence" + "github.com/cloudoperators/heureka/internal/app/issue" + "github.com/cloudoperators/heureka/internal/app/issue_match" + "github.com/cloudoperators/heureka/internal/app/issue_match_change" + "github.com/cloudoperators/heureka/internal/app/issue_repository" + "github.com/cloudoperators/heureka/internal/app/issue_variant" + "github.com/cloudoperators/heureka/internal/app/service" + "github.com/cloudoperators/heureka/internal/app/severity" + "github.com/cloudoperators/heureka/internal/app/support_group" + "github.com/cloudoperators/heureka/internal/app/user" + "github.com/cloudoperators/heureka/internal/database" ) type HeurekaApp struct { diff --git a/internal/app/interface.go b/internal/app/interface.go index eb8e3649..41f7e430 100644 --- a/internal/app/interface.go +++ b/internal/app/interface.go @@ -4,20 +4,20 @@ package app import ( - "github.wdf.sap.corp/cc/heureka/internal/app/activity" - "github.wdf.sap.corp/cc/heureka/internal/app/component" - "github.wdf.sap.corp/cc/heureka/internal/app/component_instance" - "github.wdf.sap.corp/cc/heureka/internal/app/component_version" - "github.wdf.sap.corp/cc/heureka/internal/app/evidence" - "github.wdf.sap.corp/cc/heureka/internal/app/issue" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_match" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_match_change" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_repository" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_variant" - "github.wdf.sap.corp/cc/heureka/internal/app/service" - "github.wdf.sap.corp/cc/heureka/internal/app/severity" - "github.wdf.sap.corp/cc/heureka/internal/app/support_group" - "github.wdf.sap.corp/cc/heureka/internal/app/user" + "github.com/cloudoperators/heureka/internal/app/activity" + "github.com/cloudoperators/heureka/internal/app/component" + "github.com/cloudoperators/heureka/internal/app/component_instance" + "github.com/cloudoperators/heureka/internal/app/component_version" + "github.com/cloudoperators/heureka/internal/app/evidence" + "github.com/cloudoperators/heureka/internal/app/issue" + "github.com/cloudoperators/heureka/internal/app/issue_match" + "github.com/cloudoperators/heureka/internal/app/issue_match_change" + "github.com/cloudoperators/heureka/internal/app/issue_repository" + "github.com/cloudoperators/heureka/internal/app/issue_variant" + "github.com/cloudoperators/heureka/internal/app/service" + "github.com/cloudoperators/heureka/internal/app/severity" + "github.com/cloudoperators/heureka/internal/app/support_group" + "github.com/cloudoperators/heureka/internal/app/user" ) type Heureka interface { diff --git a/internal/app/issue/issue_handler.go b/internal/app/issue/issue_handler.go index 03f2206d..cd9ca681 100644 --- a/internal/app/issue/issue_handler.go +++ b/internal/app/issue/issue_handler.go @@ -4,12 +4,13 @@ package issue import ( "fmt" + + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/pkg/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/pkg/util" ) type issueHandler struct { diff --git a/internal/app/issue/issue_handler_events.go b/internal/app/issue/issue_handler_events.go index ae7b85be..a3ff99a3 100644 --- a/internal/app/issue/issue_handler_events.go +++ b/internal/app/issue/issue_handler_events.go @@ -4,8 +4,8 @@ package issue import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/issue/issue_handler_interface.go b/internal/app/issue/issue_handler_interface.go index b17fde6b..2f8b3c35 100644 --- a/internal/app/issue/issue_handler_interface.go +++ b/internal/app/issue/issue_handler_interface.go @@ -3,7 +3,7 @@ package issue -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type IssueHandler interface { ListIssues(*entity.IssueFilter, *entity.IssueListOptions) (*entity.IssueList, error) diff --git a/internal/app/issue/issue_handler_test.go b/internal/app/issue/issue_handler_test.go index 0fddeff6..4ccc3d86 100644 --- a/internal/app/issue/issue_handler_test.go +++ b/internal/app/issue/issue_handler_test.go @@ -4,17 +4,18 @@ package issue_test import ( "errors" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/app/issue" "math" "testing" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/app/issue" + + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" ) func TestIssueHandler(t *testing.T) { diff --git a/internal/app/issue_match/issue_match_handler.go b/internal/app/issue_match/issue_match_handler.go index 03c73d82..49f4de05 100644 --- a/internal/app/issue_match/issue_match_handler.go +++ b/internal/app/issue_match/issue_match_handler.go @@ -5,14 +5,15 @@ package issue_match import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/app/severity" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/app/severity" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/pkg/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/pkg/util" ) type issueMatchHandler struct { diff --git a/internal/app/issue_match/issue_match_handler_events.go b/internal/app/issue_match/issue_match_handler_events.go index f0dcdd00..ddb26287 100644 --- a/internal/app/issue_match/issue_match_handler_events.go +++ b/internal/app/issue_match/issue_match_handler_events.go @@ -4,8 +4,8 @@ package issue_match import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/issue_match/issue_match_handler_test.go b/internal/app/issue_match/issue_match_handler_test.go index a801cef8..621e5750 100644 --- a/internal/app/issue_match/issue_match_handler_test.go +++ b/internal/app/issue_match/issue_match_handler_test.go @@ -5,22 +5,23 @@ package issue_match_test import ( "errors" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - im "github.wdf.sap.corp/cc/heureka/internal/app/issue_match" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_repository" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_variant" - "github.wdf.sap.corp/cc/heureka/internal/app/severity" "math" "testing" "time" + "github.com/cloudoperators/heureka/internal/app/event" + im "github.com/cloudoperators/heureka/internal/app/issue_match" + "github.com/cloudoperators/heureka/internal/app/issue_repository" + "github.com/cloudoperators/heureka/internal/app/issue_variant" + "github.com/cloudoperators/heureka/internal/app/severity" + "github.com/samber/lo" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" ) func TestIssueMatchHandler(t *testing.T) { diff --git a/internal/app/issue_match/issue_match_interface.go b/internal/app/issue_match/issue_match_interface.go index 79f6a466..796d9610 100644 --- a/internal/app/issue_match/issue_match_interface.go +++ b/internal/app/issue_match/issue_match_interface.go @@ -3,7 +3,7 @@ package issue_match -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type IssueMatchHandler interface { ListIssueMatches(filter *entity.IssueMatchFilter, options *entity.ListOptions) (*entity.List[entity.IssueMatchResult], error) diff --git a/internal/app/issue_match_change/issue_match_change_handler.go b/internal/app/issue_match_change/issue_match_change_handler.go index 99fe084e..876a235c 100644 --- a/internal/app/issue_match_change/issue_match_change_handler.go +++ b/internal/app/issue_match_change/issue_match_change_handler.go @@ -5,13 +5,14 @@ package issue_match_change import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/pkg/util" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/pkg/util" ) type issueMatchChangeHandler struct { diff --git a/internal/app/issue_match_change/issue_match_change_handler_test.go b/internal/app/issue_match_change/issue_match_change_handler_test.go index 8c464b8a..877cfaba 100644 --- a/internal/app/issue_match_change/issue_match_change_handler_test.go +++ b/internal/app/issue_match_change/issue_match_change_handler_test.go @@ -4,16 +4,17 @@ package issue_match_change_test import ( + "math" + "testing" + + "github.com/cloudoperators/heureka/internal/app/event" + imc "github.com/cloudoperators/heureka/internal/app/issue_match_change" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - imc "github.wdf.sap.corp/cc/heureka/internal/app/issue_match_change" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestIssueHandler(t *testing.T) { diff --git a/internal/app/issue_match_change/issue_match_handler_events.go b/internal/app/issue_match_change/issue_match_handler_events.go index 9ab2c6c8..5b2eda3e 100644 --- a/internal/app/issue_match_change/issue_match_handler_events.go +++ b/internal/app/issue_match_change/issue_match_handler_events.go @@ -4,8 +4,8 @@ package issue_match_change import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/issue_match_change/issue_match_handler_interface.go b/internal/app/issue_match_change/issue_match_handler_interface.go index 38ad8d03..17bd561f 100644 --- a/internal/app/issue_match_change/issue_match_handler_interface.go +++ b/internal/app/issue_match_change/issue_match_handler_interface.go @@ -3,7 +3,7 @@ package issue_match_change -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type IssueMatchChangeHandler interface { ListIssueMatchChanges(filter *entity.IssueMatchChangeFilter, options *entity.ListOptions) (*entity.List[entity.IssueMatchChangeResult], error) diff --git a/internal/app/issue_repository/issue_repository_handler.go b/internal/app/issue_repository/issue_repository_handler.go index b4b0da70..bc38f1b7 100644 --- a/internal/app/issue_repository/issue_repository_handler.go +++ b/internal/app/issue_repository/issue_repository_handler.go @@ -5,12 +5,13 @@ package issue_repository import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type issueRepositoryHandler struct { diff --git a/internal/app/issue_repository/issue_repository_handler_events.go b/internal/app/issue_repository/issue_repository_handler_events.go index 18fe5db1..55b463bf 100644 --- a/internal/app/issue_repository/issue_repository_handler_events.go +++ b/internal/app/issue_repository/issue_repository_handler_events.go @@ -4,8 +4,8 @@ package issue_repository import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/issue_repository/issue_repository_handler_interface.go b/internal/app/issue_repository/issue_repository_handler_interface.go index 3a1ab74b..07b9cabe 100644 --- a/internal/app/issue_repository/issue_repository_handler_interface.go +++ b/internal/app/issue_repository/issue_repository_handler_interface.go @@ -3,7 +3,7 @@ package issue_repository -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type IssueRepositoryHandler interface { ListIssueRepositories(*entity.IssueRepositoryFilter, *entity.ListOptions) (*entity.List[entity.IssueRepositoryResult], error) diff --git a/internal/app/issue_repository/issue_repository_handler_test.go b/internal/app/issue_repository/issue_repository_handler_test.go index 24a54738..e9fcc303 100644 --- a/internal/app/issue_repository/issue_repository_handler_test.go +++ b/internal/app/issue_repository/issue_repository_handler_test.go @@ -4,16 +4,17 @@ package issue_repository_test import ( + "math" + "testing" + + "github.com/cloudoperators/heureka/internal/app/event" + ir "github.com/cloudoperators/heureka/internal/app/issue_repository" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - ir "github.wdf.sap.corp/cc/heureka/internal/app/issue_repository" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestIssueRepositoryHandler(t *testing.T) { diff --git a/internal/app/issue_variant/issue_variant_handler.go b/internal/app/issue_variant/issue_variant_handler.go index 5959bbb0..6ac751e8 100644 --- a/internal/app/issue_variant/issue_variant_handler.go +++ b/internal/app/issue_variant/issue_variant_handler.go @@ -5,14 +5,15 @@ package issue_variant import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_repository" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/app/issue_repository" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type issueVariantHandler struct { diff --git a/internal/app/issue_variant/issue_variant_handler_events.go b/internal/app/issue_variant/issue_variant_handler_events.go index 51ff8376..66d189e4 100644 --- a/internal/app/issue_variant/issue_variant_handler_events.go +++ b/internal/app/issue_variant/issue_variant_handler_events.go @@ -4,8 +4,8 @@ package issue_variant import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/issue_variant/issue_variant_handler_interface.go b/internal/app/issue_variant/issue_variant_handler_interface.go index 92db764c..71772c5b 100644 --- a/internal/app/issue_variant/issue_variant_handler_interface.go +++ b/internal/app/issue_variant/issue_variant_handler_interface.go @@ -3,7 +3,7 @@ package issue_variant -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type IssueVariantHandler interface { ListIssueVariants(*entity.IssueVariantFilter, *entity.ListOptions) (*entity.List[entity.IssueVariantResult], error) diff --git a/internal/app/issue_variant/issue_variant_handler_test.go b/internal/app/issue_variant/issue_variant_handler_test.go index 049fa272..f9ecec8c 100644 --- a/internal/app/issue_variant/issue_variant_handler_test.go +++ b/internal/app/issue_variant/issue_variant_handler_test.go @@ -4,17 +4,18 @@ package issue_variant_test import ( + "math" + "testing" + + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/app/issue_repository" + iv "github.com/cloudoperators/heureka/internal/app/issue_variant" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_repository" - iv "github.wdf.sap.corp/cc/heureka/internal/app/issue_variant" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestIssueVariantHandler(t *testing.T) { diff --git a/internal/app/service/service_handler.go b/internal/app/service/service_handler.go index 1f0dcdbb..415b883a 100644 --- a/internal/app/service/service_handler.go +++ b/internal/app/service/service_handler.go @@ -5,12 +5,13 @@ package service import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type serviceHandler struct { diff --git a/internal/app/service/service_handler_events.go b/internal/app/service/service_handler_events.go index 588ca70f..f2166035 100644 --- a/internal/app/service/service_handler_events.go +++ b/internal/app/service/service_handler_events.go @@ -4,8 +4,8 @@ package service import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/service/service_handler_interface.go b/internal/app/service/service_handler_interface.go index da5943cc..569b6131 100644 --- a/internal/app/service/service_handler_interface.go +++ b/internal/app/service/service_handler_interface.go @@ -3,7 +3,7 @@ package service -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type ServiceHandler interface { GetService(serviceId int64) (*entity.Service, error) diff --git a/internal/app/service/service_handler_test.go b/internal/app/service/service_handler_test.go index 40a4f263..619e5757 100644 --- a/internal/app/service/service_handler_test.go +++ b/internal/app/service/service_handler_test.go @@ -4,17 +4,18 @@ package service_test import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - s "github.wdf.sap.corp/cc/heureka/internal/app/service" "math" "testing" + "github.com/cloudoperators/heureka/internal/app/event" + s "github.com/cloudoperators/heureka/internal/app/service" + + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" ) func TestServiceHandler(t *testing.T) { diff --git a/internal/app/severity/severity_handler.go b/internal/app/severity/severity_handler.go index 42b19a88..24a50a74 100644 --- a/internal/app/severity/severity_handler.go +++ b/internal/app/severity/severity_handler.go @@ -4,12 +4,12 @@ package severity import ( + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/app/issue_variant" + "github.com/cloudoperators/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/entity" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_variant" - "github.wdf.sap.corp/cc/heureka/internal/database" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type severityHandler struct { diff --git a/internal/app/severity/severity_handler_events.go b/internal/app/severity/severity_handler_events.go index 5fea4fb6..f7fe8ea5 100644 --- a/internal/app/severity/severity_handler_events.go +++ b/internal/app/severity/severity_handler_events.go @@ -4,8 +4,8 @@ package severity import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/severity/severity_handler_interface.go b/internal/app/severity/severity_handler_interface.go index be1f4ec2..fc1d2781 100644 --- a/internal/app/severity/severity_handler_interface.go +++ b/internal/app/severity/severity_handler_interface.go @@ -3,7 +3,7 @@ package severity -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type SeverityHandler interface { GetSeverity(*entity.SeverityFilter) (*entity.Severity, error) diff --git a/internal/app/severity/severity_handler_test.go b/internal/app/severity/severity_handler_test.go index 8f34b0d5..0ca830ec 100644 --- a/internal/app/severity/severity_handler_test.go +++ b/internal/app/severity/severity_handler_test.go @@ -6,17 +6,18 @@ package severity_test import ( + "testing" + + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/app/issue_repository" + "github.com/cloudoperators/heureka/internal/app/issue_variant" + ss "github.com/cloudoperators/heureka/internal/app/severity" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_repository" - "github.wdf.sap.corp/cc/heureka/internal/app/issue_variant" - ss "github.wdf.sap.corp/cc/heureka/internal/app/severity" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "testing" ) func TestSeverityHandler(t *testing.T) { diff --git a/internal/app/support_group/support_group_handler.go b/internal/app/support_group/support_group_handler.go index 671b133a..bb76a40b 100644 --- a/internal/app/support_group/support_group_handler.go +++ b/internal/app/support_group/support_group_handler.go @@ -5,12 +5,13 @@ package support_group import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type supportGroupHandler struct { diff --git a/internal/app/support_group/support_group_handler_events.go b/internal/app/support_group/support_group_handler_events.go index 54689f00..8ec8ebed 100644 --- a/internal/app/support_group/support_group_handler_events.go +++ b/internal/app/support_group/support_group_handler_events.go @@ -4,8 +4,8 @@ package support_group import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/support_group/support_group_handler_interface.go b/internal/app/support_group/support_group_handler_interface.go index c849572d..404d72dd 100644 --- a/internal/app/support_group/support_group_handler_interface.go +++ b/internal/app/support_group/support_group_handler_interface.go @@ -3,7 +3,7 @@ package support_group -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type SupportGroupHandler interface { ListSupportGroups(*entity.SupportGroupFilter, *entity.ListOptions) (*entity.List[entity.SupportGroupResult], error) diff --git a/internal/app/support_group/support_group_handler_test.go b/internal/app/support_group/support_group_handler_test.go index 28edad9d..f9cc147f 100644 --- a/internal/app/support_group/support_group_handler_test.go +++ b/internal/app/support_group/support_group_handler_test.go @@ -4,16 +4,17 @@ package support_group_test import ( + "math" + "testing" + + "github.com/cloudoperators/heureka/internal/app/event" + sg "github.com/cloudoperators/heureka/internal/app/support_group" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - sg "github.wdf.sap.corp/cc/heureka/internal/app/support_group" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestSupportGroupHandler(t *testing.T) { diff --git a/internal/app/user/user_handler.go b/internal/app/user/user_handler.go index 54a512c0..19abd432 100644 --- a/internal/app/user/user_handler.go +++ b/internal/app/user/user_handler.go @@ -5,12 +5,13 @@ package user import ( "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app/common" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/database" + "github.com/cloudoperators/heureka/internal/app/common" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/database" + + "github.com/cloudoperators/heureka/internal/entity" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) type userHandler struct { diff --git a/internal/app/user/user_handler_events.go b/internal/app/user/user_handler_events.go index b10ca11d..08d85bd6 100644 --- a/internal/app/user/user_handler_events.go +++ b/internal/app/user/user_handler_events.go @@ -4,8 +4,8 @@ package user import ( - "github.wdf.sap.corp/cc/heureka/internal/app/event" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/app/event" + "github.com/cloudoperators/heureka/internal/entity" ) const ( diff --git a/internal/app/user/user_handler_interface.go b/internal/app/user/user_handler_interface.go index 7779742d..075c67a2 100644 --- a/internal/app/user/user_handler_interface.go +++ b/internal/app/user/user_handler_interface.go @@ -3,7 +3,7 @@ package user -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type UserHandler interface { ListUsers(*entity.UserFilter, *entity.ListOptions) (*entity.List[entity.UserResult], error) diff --git a/internal/app/user/user_handler_test.go b/internal/app/user/user_handler_test.go index dd0b4107..db6a6d36 100644 --- a/internal/app/user/user_handler_test.go +++ b/internal/app/user/user_handler_test.go @@ -4,16 +4,17 @@ package user_test import ( + "math" + "testing" + + "github.com/cloudoperators/heureka/internal/app/event" + u "github.com/cloudoperators/heureka/internal/app/user" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/mocks" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/app/event" - u "github.wdf.sap.corp/cc/heureka/internal/app/user" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/mocks" - "math" - "testing" ) func TestUserHandler(t *testing.T) { diff --git a/internal/database/interface.go b/internal/database/interface.go index 78b52dd8..e22d5986 100644 --- a/internal/database/interface.go +++ b/internal/database/interface.go @@ -3,7 +3,7 @@ package database -import "github.wdf.sap.corp/cc/heureka/internal/entity" +import "github.com/cloudoperators/heureka/internal/entity" type Database interface { GetIssues(*entity.IssueFilter) ([]entity.Issue, error) diff --git a/internal/database/mariadb/activity.go b/internal/database/mariadb/activity.go index 1970d623..681f0543 100644 --- a/internal/database/mariadb/activity.go +++ b/internal/database/mariadb/activity.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) ensureActivityFilter(f *entity.ActivityFilter) *entity.ActivityFilter { diff --git a/internal/database/mariadb/activity_test.go b/internal/database/mariadb/activity_test.go index 660c9099..83e61573 100644 --- a/internal/database/mariadb/activity_test.go +++ b/internal/database/mariadb/activity_test.go @@ -4,12 +4,12 @@ package mariadb_test import ( + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" "math/rand" ) diff --git a/internal/database/mariadb/component.go b/internal/database/mariadb/component.go index 73489c19..41773aae 100644 --- a/internal/database/mariadb/component.go +++ b/internal/database/mariadb/component.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) getComponentFilterString(filter *entity.ComponentFilter) string { diff --git a/internal/database/mariadb/component_instance.go b/internal/database/mariadb/component_instance.go index ac658008..3556e68e 100644 --- a/internal/database/mariadb/component_instance.go +++ b/internal/database/mariadb/component_instance.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) ensureComponentInstanceFilter(f *entity.ComponentInstanceFilter) *entity.ComponentInstanceFilter { diff --git a/internal/database/mariadb/component_instance_test.go b/internal/database/mariadb/component_instance_test.go index e7a8351e..7fbd9962 100644 --- a/internal/database/mariadb/component_instance_test.go +++ b/internal/database/mariadb/component_instance_test.go @@ -6,12 +6,12 @@ package mariadb_test import ( "math/rand" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var _ = Describe("ComponentInstance - ", Label("database", "ComponentInstance"), func() { diff --git a/internal/database/mariadb/component_test.go b/internal/database/mariadb/component_test.go index b7b2d4f8..fc6a1d29 100644 --- a/internal/database/mariadb/component_test.go +++ b/internal/database/mariadb/component_test.go @@ -4,16 +4,16 @@ package mariadb_test import ( + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" "math/rand" - "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/pkg/util" ) var _ = Describe("Component", Label("database", "Component"), func() { diff --git a/internal/database/mariadb/component_version.go b/internal/database/mariadb/component_version.go index c0e61032..1644431a 100644 --- a/internal/database/mariadb/component_version.go +++ b/internal/database/mariadb/component_version.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) ensureComponentVersionFilter(f *entity.ComponentVersionFilter) *entity.ComponentVersionFilter { diff --git a/internal/database/mariadb/component_version_test.go b/internal/database/mariadb/component_version_test.go index 489da085..74dd2249 100644 --- a/internal/database/mariadb/component_version_test.go +++ b/internal/database/mariadb/component_version_test.go @@ -6,12 +6,12 @@ package mariadb_test import ( "math/rand" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var _ = Describe("ComponentVersion", Label("database", "ComponentVersion"), func() { diff --git a/internal/database/mariadb/database.go b/internal/database/mariadb/database.go index 854ed644..eb891d5a 100644 --- a/internal/database/mariadb/database.go +++ b/internal/database/mariadb/database.go @@ -10,12 +10,12 @@ import ( "strings" "time" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" _ "github.com/go-sql-driver/mysql" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" ) const ( diff --git a/internal/database/mariadb/entity.go b/internal/database/mariadb/entity.go index 4b27cae8..5a584e6b 100644 --- a/internal/database/mariadb/entity.go +++ b/internal/database/mariadb/entity.go @@ -7,7 +7,7 @@ import ( "database/sql" "time" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func GetInt64Value(v sql.NullInt64) int64 { diff --git a/internal/database/mariadb/evidence.go b/internal/database/mariadb/evidence.go index 367de609..73d7c693 100644 --- a/internal/database/mariadb/evidence.go +++ b/internal/database/mariadb/evidence.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) ensureEvidenceFilter(f *entity.EvidenceFilter) *entity.EvidenceFilter { diff --git a/internal/database/mariadb/evidence_test.go b/internal/database/mariadb/evidence_test.go index 2e07459c..cb4099e8 100644 --- a/internal/database/mariadb/evidence_test.go +++ b/internal/database/mariadb/evidence_test.go @@ -9,11 +9,11 @@ import ( "github.com/samber/lo" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var _ = Describe("Evidence", Label("database", "Evidence"), func() { diff --git a/internal/database/mariadb/internal/mocks/mock_Database.go b/internal/database/mariadb/internal/mocks/mock_Database.go index 4a724741..94837644 100644 --- a/internal/database/mariadb/internal/mocks/mock_Database.go +++ b/internal/database/mariadb/internal/mocks/mock_Database.go @@ -7,7 +7,7 @@ package mocks import ( mock "github.com/stretchr/testify/mock" - entity "github.wdf.sap.corp/cc/heureka/internal/entity" + entity "github.com/cloudoperators/heureka/internal/entity" ) // MockDatabase is an autogenerated mock type for the Database type diff --git a/internal/database/mariadb/internal/mocks/mock_Heureka.go b/internal/database/mariadb/internal/mocks/mock_Heureka.go index 36064945..89974edc 100644 --- a/internal/database/mariadb/internal/mocks/mock_Heureka.go +++ b/internal/database/mariadb/internal/mocks/mock_Heureka.go @@ -7,7 +7,7 @@ package mocks import ( mock "github.com/stretchr/testify/mock" - entity "github.wdf.sap.corp/cc/heureka/internal/entity" + entity "github.com/cloudoperators/heureka/internal/entity" ) // MockHeureka is an autogenerated mock type for the Heureka type diff --git a/internal/database/mariadb/issue.go b/internal/database/mariadb/issue.go index 44b8246c..c1428539 100644 --- a/internal/database/mariadb/issue.go +++ b/internal/database/mariadb/issue.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) const ( diff --git a/internal/database/mariadb/issue_match.go b/internal/database/mariadb/issue_match.go index ab2aa5a0..e851ef82 100644 --- a/internal/database/mariadb/issue_match.go +++ b/internal/database/mariadb/issue_match.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) ensureIssueMatchFilter(f *entity.IssueMatchFilter) *entity.IssueMatchFilter { diff --git a/internal/database/mariadb/issue_match_change.go b/internal/database/mariadb/issue_match_change.go index faef9c01..264d295b 100644 --- a/internal/database/mariadb/issue_match_change.go +++ b/internal/database/mariadb/issue_match_change.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) ensureIssueMatchChangeFilter(f *entity.IssueMatchChangeFilter) *entity.IssueMatchChangeFilter { diff --git a/internal/database/mariadb/issue_match_change_test.go b/internal/database/mariadb/issue_match_change_test.go index d3d83345..d021dcad 100644 --- a/internal/database/mariadb/issue_match_change_test.go +++ b/internal/database/mariadb/issue_match_change_test.go @@ -8,11 +8,11 @@ import ( "github.com/samber/lo" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var _ = Describe("IssueMatchChange", Label("database", "IssueMatchChange"), func() { diff --git a/internal/database/mariadb/issue_match_test.go b/internal/database/mariadb/issue_match_test.go index ade252dc..985a2495 100644 --- a/internal/database/mariadb/issue_match_test.go +++ b/internal/database/mariadb/issue_match_test.go @@ -8,11 +8,11 @@ import ( "github.com/samber/lo" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var _ = Describe("IssueMatch", Label("database", "IssueMatch"), func() { diff --git a/internal/database/mariadb/issue_repository.go b/internal/database/mariadb/issue_repository.go index 65e9b75f..431d4735 100644 --- a/internal/database/mariadb/issue_repository.go +++ b/internal/database/mariadb/issue_repository.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) getIssueRepositoryFilterString(filter *entity.IssueRepositoryFilter) string { diff --git a/internal/database/mariadb/issue_repository_test.go b/internal/database/mariadb/issue_repository_test.go index 90dec581..d6ac4358 100644 --- a/internal/database/mariadb/issue_repository_test.go +++ b/internal/database/mariadb/issue_repository_test.go @@ -4,12 +4,12 @@ package mariadb_test import ( + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" "math/rand" ) diff --git a/internal/database/mariadb/issue_test.go b/internal/database/mariadb/issue_test.go index c7ab21ec..b1f6fe83 100644 --- a/internal/database/mariadb/issue_test.go +++ b/internal/database/mariadb/issue_test.go @@ -4,16 +4,16 @@ package mariadb_test import ( + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" "math/rand" - "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/pkg/util" ) var _ = Describe("Issue", Label("database", "Issue"), func() { diff --git a/internal/database/mariadb/issue_variant.go b/internal/database/mariadb/issue_variant.go index 69341a13..651a28e7 100644 --- a/internal/database/mariadb/issue_variant.go +++ b/internal/database/mariadb/issue_variant.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) ensureIssueVariantFilter(f *entity.IssueVariantFilter) *entity.IssueVariantFilter { diff --git a/internal/database/mariadb/issue_variant_test.go b/internal/database/mariadb/issue_variant_test.go index 610b0eba..11ea6caf 100644 --- a/internal/database/mariadb/issue_variant_test.go +++ b/internal/database/mariadb/issue_variant_test.go @@ -4,12 +4,12 @@ package mariadb_test import ( + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" "math/rand" ) diff --git a/internal/database/mariadb/mariadb_suite_test.go b/internal/database/mariadb/mariadb_suite_test.go index 4dcecec6..77ff6625 100644 --- a/internal/database/mariadb/mariadb_suite_test.go +++ b/internal/database/mariadb/mariadb_suite_test.go @@ -5,13 +5,14 @@ package mariadb_test import ( "fmt" - . "github.com/onsi/ginkgo/v2" - . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/pkg/util" "os" "testing" + + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/pkg/util" + . "github.com/onsi/ginkgo/v2" + . "github.com/onsi/gomega" ) var dbm test.TestDatabaseManager diff --git a/internal/database/mariadb/service.go b/internal/database/mariadb/service.go index 851c7987..65e15cb4 100644 --- a/internal/database/mariadb/service.go +++ b/internal/database/mariadb/service.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) const ( diff --git a/internal/database/mariadb/service_test.go b/internal/database/mariadb/service_test.go index 149ca906..3dee040b 100644 --- a/internal/database/mariadb/service_test.go +++ b/internal/database/mariadb/service_test.go @@ -4,16 +4,16 @@ package mariadb_test import ( + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" "math/rand" - "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/pkg/util" ) var _ = Describe("Service", Label("database", "Service"), func() { @@ -383,7 +383,7 @@ var _ = Describe("Service", Label("database", "Service"), func() { const charactersToRemoveFromBeginning = 2 const charactersToRemoveFromEnd = 2 - const minimalCharactersToKeep = 2 + const minimalCharactersToKeep = 1 start := charactersToRemoveFromBeginning end := len(row.Name.String) - charactersToRemoveFromEnd diff --git a/internal/database/mariadb/support_group.go b/internal/database/mariadb/support_group.go index 9d864609..2074f04f 100644 --- a/internal/database/mariadb/support_group.go +++ b/internal/database/mariadb/support_group.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) getSupportGroupFilterString(filter *entity.SupportGroupFilter) string { diff --git a/internal/database/mariadb/support_group_test.go b/internal/database/mariadb/support_group_test.go index a9c6d6b7..fea82f0e 100644 --- a/internal/database/mariadb/support_group_test.go +++ b/internal/database/mariadb/support_group_test.go @@ -8,11 +8,11 @@ import ( "github.com/samber/lo" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var _ = Describe("SupportGroup", Label("database", "SupportGroup"), func() { diff --git a/internal/database/mariadb/test/common.go b/internal/database/mariadb/test/common.go index 3224a1b2..c050e0e9 100644 --- a/internal/database/mariadb/test/common.go +++ b/internal/database/mariadb/test/common.go @@ -4,8 +4,8 @@ package test import ( + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func TestPaginationOfList[F entity.HeurekaFilter, E entity.HeurekaEntity]( diff --git a/internal/database/mariadb/test/database_manager.go b/internal/database/mariadb/test/database_manager.go index 3e974fc3..830eab4f 100644 --- a/internal/database/mariadb/test/database_manager.go +++ b/internal/database/mariadb/test/database_manager.go @@ -12,6 +12,9 @@ import ( "os" "time" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" osx "github.com/docker/docker-credential-helpers/client" "github.com/docker/docker/api/types/container" "github.com/docker/docker/api/types/image" @@ -21,9 +24,6 @@ import ( "github.com/kelseyhightower/envconfig" "github.com/onsi/ginkgo/v2" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" ) const ( diff --git a/internal/database/mariadb/test/fixture.go b/internal/database/mariadb/test/fixture.go index bf4d2795..449f893e 100644 --- a/internal/database/mariadb/test/fixture.go +++ b/internal/database/mariadb/test/fixture.go @@ -9,16 +9,16 @@ import ( "math/rand" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/goark/go-cvss/v3/metric" "github.com/onsi/ginkgo/v2/dsl/core" - "github.wdf.sap.corp/cc/heureka/internal/entity" "github.com/brianvoe/gofakeit/v7" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/util" "github.com/jmoiron/sqlx" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/util" ) type SeedCollection struct { diff --git a/internal/database/mariadb/user.go b/internal/database/mariadb/user.go index 21622421..b9b95f89 100644 --- a/internal/database/mariadb/user.go +++ b/internal/database/mariadb/user.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" + "github.com/cloudoperators/heureka/internal/entity" "github.com/jmoiron/sqlx" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) func (s *SqlDatabase) getUserFilterString(filter *entity.UserFilter) string { diff --git a/internal/database/mariadb/user_test.go b/internal/database/mariadb/user_test.go index aa00580f..75a86d6f 100644 --- a/internal/database/mariadb/user_test.go +++ b/internal/database/mariadb/user_test.go @@ -6,12 +6,12 @@ package mariadb_test import ( "math/rand" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" ) var _ = Describe("User", Label("database", "User"), func() { diff --git a/internal/e2e/activity_query_test.go b/internal/e2e/activity_query_test.go index 4160c322..af6ed051 100644 --- a/internal/e2e/activity_query_test.go +++ b/internal/e2e/activity_query_test.go @@ -8,20 +8,20 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" - + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" + + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/server" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/server" ) var _ = Describe("Getting Activities via API", Label("e2e", "Activity"), func() { diff --git a/internal/e2e/component_instance_query_test.go b/internal/e2e/component_instance_query_test.go index 9ba79654..68eed095 100644 --- a/internal/e2e/component_instance_query_test.go +++ b/internal/e2e/component_instance_query_test.go @@ -8,21 +8,21 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" - "github.wdf.sap.corp/cc/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" ) var _ = Describe("Getting ComponentInstances via API", Label("e2e", "ComponentInstances"), func() { diff --git a/internal/e2e/component_query_test.go b/internal/e2e/component_query_test.go index 249bda46..0837ed4f 100644 --- a/internal/e2e/component_query_test.go +++ b/internal/e2e/component_query_test.go @@ -8,22 +8,22 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" - "github.wdf.sap.corp/cc/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" ) var _ = Describe("Getting Components via API", Label("e2e", "Components"), func() { diff --git a/internal/e2e/component_version_query_test.go b/internal/e2e/component_version_query_test.go index 4e75b493..92fa8dd9 100644 --- a/internal/e2e/component_version_query_test.go +++ b/internal/e2e/component_version_query_test.go @@ -8,21 +8,21 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" - "github.wdf.sap.corp/cc/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" ) var _ = Describe("Getting ComponentVersions via API", Label("e2e", "ComponentVersions"), func() { diff --git a/internal/e2e/e2e_suite_test.go b/internal/e2e/e2e_suite_test.go index db05b92a..a94177ba 100644 --- a/internal/e2e/e2e_suite_test.go +++ b/internal/e2e/e2e_suite_test.go @@ -5,14 +5,15 @@ package e2e_test import ( "fmt" - . "github.com/onsi/ginkgo/v2" - . "github.com/onsi/gomega" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - util2 "github.wdf.sap.corp/cc/heureka/internal/util" - "github.wdf.sap.corp/cc/heureka/pkg/util" "os" "testing" + + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + util2 "github.com/cloudoperators/heureka/internal/util" + "github.com/cloudoperators/heureka/pkg/util" + . "github.com/onsi/ginkgo/v2" + . "github.com/onsi/gomega" ) var dbConfig util2.Config diff --git a/internal/e2e/evidence_query_test.go b/internal/e2e/evidence_query_test.go index 89df4228..6a2f86b4 100644 --- a/internal/e2e/evidence_query_test.go +++ b/internal/e2e/evidence_query_test.go @@ -9,20 +9,20 @@ import ( "os" "time" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" - + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" + + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/server" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/server" ) var _ = Describe("Getting Evidences via API", Label("e2e", "Evidences"), func() { diff --git a/internal/e2e/issue_match_change_test.go b/internal/e2e/issue_match_change_test.go index ff544eea..82bdf998 100644 --- a/internal/e2e/issue_match_change_test.go +++ b/internal/e2e/issue_match_change_test.go @@ -8,18 +8,18 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" - + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" + + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/server" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/server" ) var _ = Describe("Getting IssueMatchChanges via API", Label("e2e", "IssueMatchChanges"), func() { diff --git a/internal/e2e/issue_match_query_test.go b/internal/e2e/issue_match_query_test.go index 80fb20ad..84c1606f 100644 --- a/internal/e2e/issue_match_query_test.go +++ b/internal/e2e/issue_match_query_test.go @@ -9,20 +9,20 @@ import ( "os" "time" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" - + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" + + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/server" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/server" ) var _ = Describe("Getting IssueMatches via API", Label("e2e", "IssueMatches"), func() { diff --git a/internal/e2e/issue_query_test.go b/internal/e2e/issue_query_test.go index 62d8363c..5198876d 100644 --- a/internal/e2e/issue_query_test.go +++ b/internal/e2e/issue_query_test.go @@ -11,17 +11,17 @@ import ( . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" "github.com/machinebox/graphql" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/server" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" ) var _ = Describe("Getting Issues via API", Label("e2e", "Issues"), func() { diff --git a/internal/e2e/issue_repository_query_test.go b/internal/e2e/issue_repository_query_test.go index 0a7cd110..5a5c6a9e 100644 --- a/internal/e2e/issue_repository_query_test.go +++ b/internal/e2e/issue_repository_query_test.go @@ -8,20 +8,20 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" - + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" + + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/server" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/server" ) var _ = Describe("Getting IssueRepositories via API", Label("e2e", "IssueRepositories"), func() { diff --git a/internal/e2e/issue_variant_query_test.go b/internal/e2e/issue_variant_query_test.go index 0bc9e391..e073ee68 100644 --- a/internal/e2e/issue_variant_query_test.go +++ b/internal/e2e/issue_variant_query_test.go @@ -8,21 +8,21 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" - "github.wdf.sap.corp/cc/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" ) var _ = Describe("Getting IssueVariants via API", Label("e2e", "IssueVariants"), func() { diff --git a/internal/e2e/service_filter_query_test.go b/internal/e2e/service_filter_query_test.go index 086c1699..7c513f97 100644 --- a/internal/e2e/service_filter_query_test.go +++ b/internal/e2e/service_filter_query_test.go @@ -8,19 +8,19 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" - "github.wdf.sap.corp/cc/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" ) var _ = Describe("Getting ServiceFilterValues via API", Label("e2e", "ServiceFilterValues"), func() { diff --git a/internal/e2e/service_query_test.go b/internal/e2e/service_query_test.go index a9c60620..4e83159c 100644 --- a/internal/e2e/service_query_test.go +++ b/internal/e2e/service_query_test.go @@ -8,21 +8,21 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" - "github.wdf.sap.corp/cc/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" ) var _ = Describe("Getting Services via API", Label("e2e", "Services"), func() { diff --git a/internal/e2e/support_group_query_test.go b/internal/e2e/support_group_query_test.go index 12b5fc73..399b8a25 100644 --- a/internal/e2e/support_group_query_test.go +++ b/internal/e2e/support_group_query_test.go @@ -10,20 +10,20 @@ import ( "strings" "time" - "github.wdf.sap.corp/cc/heureka/internal/entity" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" - + "github.com/cloudoperators/heureka/internal/entity" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" + + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/server" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/server" ) var _ = Describe("Getting SupportGroups via API", Label("e2e", "SupportGroups"), func() { diff --git a/internal/e2e/token_auth_test.go b/internal/e2e/token_auth_test.go index 850ae7fa..ab2a8ce6 100644 --- a/internal/e2e/token_auth_test.go +++ b/internal/e2e/token_auth_test.go @@ -7,11 +7,11 @@ import ( "fmt" "time" - "github.wdf.sap.corp/cc/heureka/internal/server" - "github.wdf.sap.corp/cc/heureka/internal/util" + "github.com/cloudoperators/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/util" - . "github.wdf.sap.corp/cc/heureka/internal/api/graphql/access/test" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + . "github.com/cloudoperators/heureka/internal/api/graphql/access/test" + util2 "github.com/cloudoperators/heureka/pkg/util" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" diff --git a/internal/e2e/user_query_test.go b/internal/e2e/user_query_test.go index 4f2316d7..d57ab0ad 100644 --- a/internal/e2e/user_query_test.go +++ b/internal/e2e/user_query_test.go @@ -8,21 +8,21 @@ import ( "fmt" "os" - "github.wdf.sap.corp/cc/heureka/internal/entity" - "github.wdf.sap.corp/cc/heureka/internal/util" - util2 "github.wdf.sap.corp/cc/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/util" + util2 "github.com/cloudoperators/heureka/pkg/util" + "github.com/cloudoperators/heureka/internal/api/graphql/graph/model" + "github.com/cloudoperators/heureka/internal/database/mariadb" "github.com/machinebox/graphql" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/samber/lo" "github.com/sirupsen/logrus" - "github.wdf.sap.corp/cc/heureka/internal/api/graphql/graph/model" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - testentity "github.wdf.sap.corp/cc/heureka/internal/entity/test" - "github.wdf.sap.corp/cc/heureka/internal/server" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + testentity "github.com/cloudoperators/heureka/internal/entity/test" + "github.com/cloudoperators/heureka/internal/server" ) var _ = Describe("Getting Users via API", Label("e2e", "Users"), func() { diff --git a/internal/entity/common.go b/internal/entity/common.go index 2f671bb9..92f9aa27 100644 --- a/internal/entity/common.go +++ b/internal/entity/common.go @@ -4,10 +4,11 @@ package entity import ( - "github.wdf.sap.corp/cc/heureka/pkg/util" "math" "time" + "github.com/cloudoperators/heureka/pkg/util" + "github.com/onsi/ginkgo/v2/dsl/core" "github.com/goark/go-cvss/v3/metric" diff --git a/internal/entity/test/activity.go b/internal/entity/test/activity.go index a88cf3b9..a182335b 100644 --- a/internal/entity/test/activity.go +++ b/internal/entity/test/activity.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeActivityEntity() entity.Activity { diff --git a/internal/entity/test/component.go b/internal/entity/test/component.go index 45688386..3b12ede3 100644 --- a/internal/entity/test/component.go +++ b/internal/entity/test/component.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeComponentEntity() entity.Component { diff --git a/internal/entity/test/component_instance.go b/internal/entity/test/component_instance.go index 811af24d..217f25cc 100644 --- a/internal/entity/test/component_instance.go +++ b/internal/entity/test/component_instance.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeComponentInstanceEntity() entity.ComponentInstance { diff --git a/internal/entity/test/component_version.go b/internal/entity/test/component_version.go index 81ff9dc3..a44b32a3 100644 --- a/internal/entity/test/component_version.go +++ b/internal/entity/test/component_version.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeComponentVersionEntity() entity.ComponentVersion { diff --git a/internal/entity/test/evidence.go b/internal/entity/test/evidence.go index 63076705..d0c561b8 100644 --- a/internal/entity/test/evidence.go +++ b/internal/entity/test/evidence.go @@ -5,8 +5,8 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeEvidenceEntity() entity.Evidence { diff --git a/internal/entity/test/issue.go b/internal/entity/test/issue.go index 44c96748..705fd9ff 100644 --- a/internal/entity/test/issue.go +++ b/internal/entity/test/issue.go @@ -7,7 +7,7 @@ import ( "fmt" "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeIssueEntity() entity.Issue { diff --git a/internal/entity/test/issue_match.go b/internal/entity/test/issue_match.go index 25ec0cf8..e0b839d0 100644 --- a/internal/entity/test/issue_match.go +++ b/internal/entity/test/issue_match.go @@ -5,8 +5,8 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeIssueMatch() entity.IssueMatch { diff --git a/internal/entity/test/issue_match_change.go b/internal/entity/test/issue_match_change.go index 8813702c..ea11442a 100644 --- a/internal/entity/test/issue_match_change.go +++ b/internal/entity/test/issue_match_change.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeIssueMatchChange() entity.IssueMatchChange { diff --git a/internal/entity/test/issue_repository.go b/internal/entity/test/issue_repository.go index bac535c1..f61af12b 100644 --- a/internal/entity/test/issue_repository.go +++ b/internal/entity/test/issue_repository.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeIssueRepositoryEntity() entity.IssueRepository { diff --git a/internal/entity/test/issue_variant.go b/internal/entity/test/issue_variant.go index f8a295fe..0a36a034 100644 --- a/internal/entity/test/issue_variant.go +++ b/internal/entity/test/issue_variant.go @@ -5,8 +5,8 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb/test" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/database/mariadb/test" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeIssueVariantEntity() entity.IssueVariant { diff --git a/internal/entity/test/service.go b/internal/entity/test/service.go index 657a3975..fb695bcc 100644 --- a/internal/entity/test/service.go +++ b/internal/entity/test/service.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeServiceEntity() entity.Service { diff --git a/internal/entity/test/support_group.go b/internal/entity/test/support_group.go index e93e7e8b..fc72b935 100644 --- a/internal/entity/test/support_group.go +++ b/internal/entity/test/support_group.go @@ -5,7 +5,7 @@ package test import ( "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeSupportGroupEntity() entity.SupportGroup { diff --git a/internal/entity/test/user.go b/internal/entity/test/user.go index a2555250..c06d95af 100644 --- a/internal/entity/test/user.go +++ b/internal/entity/test/user.go @@ -7,7 +7,7 @@ import ( "fmt" "github.com/brianvoe/gofakeit/v7" - "github.wdf.sap.corp/cc/heureka/internal/entity" + "github.com/cloudoperators/heureka/internal/entity" ) func NewFakeUserEntity() entity.User { diff --git a/internal/mocks/mock_Database.go b/internal/mocks/mock_Database.go index 161bd1ff..137fdb96 100644 --- a/internal/mocks/mock_Database.go +++ b/internal/mocks/mock_Database.go @@ -1,13 +1,13 @@ // SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors // SPDX-License-Identifier: Apache-2.0 -// Code generated by mockery v2.44.1. DO NOT EDIT. +// Code generated by mockery v2.43.2. DO NOT EDIT. package mocks import ( + entity "github.com/cloudoperators/heureka/internal/entity" mock "github.com/stretchr/testify/mock" - entity "github.wdf.sap.corp/cc/heureka/internal/entity" ) // MockDatabase is an autogenerated mock type for the Database type diff --git a/internal/mocks/mock_Heureka.go b/internal/mocks/mock_Heureka.go index f35ebf57..9cdf4cd4 100644 --- a/internal/mocks/mock_Heureka.go +++ b/internal/mocks/mock_Heureka.go @@ -1,13 +1,13 @@ // SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors // SPDX-License-Identifier: Apache-2.0 -// Code generated by mockery v2.44.1. DO NOT EDIT. +// Code generated by mockery v2.43.2. DO NOT EDIT. package mocks import ( + entity "github.com/cloudoperators/heureka/internal/entity" mock "github.com/stretchr/testify/mock" - entity "github.wdf.sap.corp/cc/heureka/internal/entity" ) // MockHeureka is an autogenerated mock type for the Heureka type @@ -260,9 +260,9 @@ func (_c *MockHeureka_AddIssueToActivity_Call) RunAndReturn(run func(int64, int6 return _c } -// AddOwnerToService provides a mock function with given fields: _a0, _a1 -func (_m *MockHeureka) AddOwnerToService(_a0 int64, _a1 int64) (*entity.Service, error) { - ret := _m.Called(_a0, _a1) +// AddOwnerToService provides a mock function with given fields: serviceId, ownerId +func (_m *MockHeureka) AddOwnerToService(serviceId int64, ownerId int64) (*entity.Service, error) { + ret := _m.Called(serviceId, ownerId) if len(ret) == 0 { panic("no return value specified for AddOwnerToService") @@ -271,10 +271,10 @@ func (_m *MockHeureka) AddOwnerToService(_a0 int64, _a1 int64) (*entity.Service, var r0 *entity.Service var r1 error if rf, ok := ret.Get(0).(func(int64, int64) (*entity.Service, error)); ok { - return rf(_a0, _a1) + return rf(serviceId, ownerId) } if rf, ok := ret.Get(0).(func(int64, int64) *entity.Service); ok { - r0 = rf(_a0, _a1) + r0 = rf(serviceId, ownerId) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*entity.Service) @@ -282,7 +282,7 @@ func (_m *MockHeureka) AddOwnerToService(_a0 int64, _a1 int64) (*entity.Service, } if rf, ok := ret.Get(1).(func(int64, int64) error); ok { - r1 = rf(_a0, _a1) + r1 = rf(serviceId, ownerId) } else { r1 = ret.Error(1) } @@ -296,13 +296,13 @@ type MockHeureka_AddOwnerToService_Call struct { } // AddOwnerToService is a helper method to define mock.On call -// - _a0 int64 -// - _a1 int64 -func (_e *MockHeureka_Expecter) AddOwnerToService(_a0 interface{}, _a1 interface{}) *MockHeureka_AddOwnerToService_Call { - return &MockHeureka_AddOwnerToService_Call{Call: _e.mock.On("AddOwnerToService", _a0, _a1)} +// - serviceId int64 +// - ownerId int64 +func (_e *MockHeureka_Expecter) AddOwnerToService(serviceId interface{}, ownerId interface{}) *MockHeureka_AddOwnerToService_Call { + return &MockHeureka_AddOwnerToService_Call{Call: _e.mock.On("AddOwnerToService", serviceId, ownerId)} } -func (_c *MockHeureka_AddOwnerToService_Call) Run(run func(_a0 int64, _a1 int64)) *MockHeureka_AddOwnerToService_Call { +func (_c *MockHeureka_AddOwnerToService_Call) Run(run func(serviceId int64, ownerId int64)) *MockHeureka_AddOwnerToService_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(int64), args[1].(int64)) }) @@ -1076,9 +1076,9 @@ func (_c *MockHeureka_CreateIssueVariant_Call) RunAndReturn(run func(*entity.Iss return _c } -// CreateService provides a mock function with given fields: _a0 -func (_m *MockHeureka) CreateService(_a0 *entity.Service) (*entity.Service, error) { - ret := _m.Called(_a0) +// CreateService provides a mock function with given fields: service +func (_m *MockHeureka) CreateService(service *entity.Service) (*entity.Service, error) { + ret := _m.Called(service) if len(ret) == 0 { panic("no return value specified for CreateService") @@ -1087,10 +1087,10 @@ func (_m *MockHeureka) CreateService(_a0 *entity.Service) (*entity.Service, erro var r0 *entity.Service var r1 error if rf, ok := ret.Get(0).(func(*entity.Service) (*entity.Service, error)); ok { - return rf(_a0) + return rf(service) } if rf, ok := ret.Get(0).(func(*entity.Service) *entity.Service); ok { - r0 = rf(_a0) + r0 = rf(service) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*entity.Service) @@ -1098,7 +1098,7 @@ func (_m *MockHeureka) CreateService(_a0 *entity.Service) (*entity.Service, erro } if rf, ok := ret.Get(1).(func(*entity.Service) error); ok { - r1 = rf(_a0) + r1 = rf(service) } else { r1 = ret.Error(1) } @@ -1112,12 +1112,12 @@ type MockHeureka_CreateService_Call struct { } // CreateService is a helper method to define mock.On call -// - _a0 *entity.Service -func (_e *MockHeureka_Expecter) CreateService(_a0 interface{}) *MockHeureka_CreateService_Call { - return &MockHeureka_CreateService_Call{Call: _e.mock.On("CreateService", _a0)} +// - service *entity.Service +func (_e *MockHeureka_Expecter) CreateService(service interface{}) *MockHeureka_CreateService_Call { + return &MockHeureka_CreateService_Call{Call: _e.mock.On("CreateService", service)} } -func (_c *MockHeureka_CreateService_Call) Run(run func(_a0 *entity.Service)) *MockHeureka_CreateService_Call { +func (_c *MockHeureka_CreateService_Call) Run(run func(service *entity.Service)) *MockHeureka_CreateService_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(*entity.Service)) }) @@ -1710,9 +1710,9 @@ func (_c *MockHeureka_DeleteIssueVariant_Call) RunAndReturn(run func(int64) erro return _c } -// DeleteService provides a mock function with given fields: _a0 -func (_m *MockHeureka) DeleteService(_a0 int64) error { - ret := _m.Called(_a0) +// DeleteService provides a mock function with given fields: id +func (_m *MockHeureka) DeleteService(id int64) error { + ret := _m.Called(id) if len(ret) == 0 { panic("no return value specified for DeleteService") @@ -1720,7 +1720,7 @@ func (_m *MockHeureka) DeleteService(_a0 int64) error { var r0 error if rf, ok := ret.Get(0).(func(int64) error); ok { - r0 = rf(_a0) + r0 = rf(id) } else { r0 = ret.Error(0) } @@ -1734,12 +1734,12 @@ type MockHeureka_DeleteService_Call struct { } // DeleteService is a helper method to define mock.On call -// - _a0 int64 -func (_e *MockHeureka_Expecter) DeleteService(_a0 interface{}) *MockHeureka_DeleteService_Call { - return &MockHeureka_DeleteService_Call{Call: _e.mock.On("DeleteService", _a0)} +// - id int64 +func (_e *MockHeureka_Expecter) DeleteService(id interface{}) *MockHeureka_DeleteService_Call { + return &MockHeureka_DeleteService_Call{Call: _e.mock.On("DeleteService", id)} } -func (_c *MockHeureka_DeleteService_Call) Run(run func(_a0 int64)) *MockHeureka_DeleteService_Call { +func (_c *MockHeureka_DeleteService_Call) Run(run func(id int64)) *MockHeureka_DeleteService_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(int64)) }) @@ -1964,9 +1964,9 @@ func (_c *MockHeureka_GetIssueMatch_Call) RunAndReturn(run func(int64) (*entity. return _c } -// GetService provides a mock function with given fields: _a0 -func (_m *MockHeureka) GetService(_a0 int64) (*entity.Service, error) { - ret := _m.Called(_a0) +// GetService provides a mock function with given fields: serviceId +func (_m *MockHeureka) GetService(serviceId int64) (*entity.Service, error) { + ret := _m.Called(serviceId) if len(ret) == 0 { panic("no return value specified for GetService") @@ -1975,10 +1975,10 @@ func (_m *MockHeureka) GetService(_a0 int64) (*entity.Service, error) { var r0 *entity.Service var r1 error if rf, ok := ret.Get(0).(func(int64) (*entity.Service, error)); ok { - return rf(_a0) + return rf(serviceId) } if rf, ok := ret.Get(0).(func(int64) *entity.Service); ok { - r0 = rf(_a0) + r0 = rf(serviceId) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*entity.Service) @@ -1986,7 +1986,7 @@ func (_m *MockHeureka) GetService(_a0 int64) (*entity.Service, error) { } if rf, ok := ret.Get(1).(func(int64) error); ok { - r1 = rf(_a0) + r1 = rf(serviceId) } else { r1 = ret.Error(1) } @@ -2000,12 +2000,12 @@ type MockHeureka_GetService_Call struct { } // GetService is a helper method to define mock.On call -// - _a0 int64 -func (_e *MockHeureka_Expecter) GetService(_a0 interface{}) *MockHeureka_GetService_Call { - return &MockHeureka_GetService_Call{Call: _e.mock.On("GetService", _a0)} +// - serviceId int64 +func (_e *MockHeureka_Expecter) GetService(serviceId interface{}) *MockHeureka_GetService_Call { + return &MockHeureka_GetService_Call{Call: _e.mock.On("GetService", serviceId)} } -func (_c *MockHeureka_GetService_Call) Run(run func(_a0 int64)) *MockHeureka_GetService_Call { +func (_c *MockHeureka_GetService_Call) Run(run func(serviceId int64)) *MockHeureka_GetService_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(int64)) }) @@ -2905,9 +2905,9 @@ func (_c *MockHeureka_ListIssues_Call) RunAndReturn(run func(*entity.IssueFilter return _c } -// ListServiceNames provides a mock function with given fields: _a0, _a1 -func (_m *MockHeureka) ListServiceNames(_a0 *entity.ServiceFilter, _a1 *entity.ListOptions) ([]string, error) { - ret := _m.Called(_a0, _a1) +// ListServiceNames provides a mock function with given fields: filter, options +func (_m *MockHeureka) ListServiceNames(filter *entity.ServiceFilter, options *entity.ListOptions) ([]string, error) { + ret := _m.Called(filter, options) if len(ret) == 0 { panic("no return value specified for ListServiceNames") @@ -2916,10 +2916,10 @@ func (_m *MockHeureka) ListServiceNames(_a0 *entity.ServiceFilter, _a1 *entity.L var r0 []string var r1 error if rf, ok := ret.Get(0).(func(*entity.ServiceFilter, *entity.ListOptions) ([]string, error)); ok { - return rf(_a0, _a1) + return rf(filter, options) } if rf, ok := ret.Get(0).(func(*entity.ServiceFilter, *entity.ListOptions) []string); ok { - r0 = rf(_a0, _a1) + r0 = rf(filter, options) } else { if ret.Get(0) != nil { r0 = ret.Get(0).([]string) @@ -2927,7 +2927,7 @@ func (_m *MockHeureka) ListServiceNames(_a0 *entity.ServiceFilter, _a1 *entity.L } if rf, ok := ret.Get(1).(func(*entity.ServiceFilter, *entity.ListOptions) error); ok { - r1 = rf(_a0, _a1) + r1 = rf(filter, options) } else { r1 = ret.Error(1) } @@ -2941,13 +2941,13 @@ type MockHeureka_ListServiceNames_Call struct { } // ListServiceNames is a helper method to define mock.On call -// - _a0 *entity.ServiceFilter -// - _a1 *entity.ListOptions -func (_e *MockHeureka_Expecter) ListServiceNames(_a0 interface{}, _a1 interface{}) *MockHeureka_ListServiceNames_Call { - return &MockHeureka_ListServiceNames_Call{Call: _e.mock.On("ListServiceNames", _a0, _a1)} +// - filter *entity.ServiceFilter +// - options *entity.ListOptions +func (_e *MockHeureka_Expecter) ListServiceNames(filter interface{}, options interface{}) *MockHeureka_ListServiceNames_Call { + return &MockHeureka_ListServiceNames_Call{Call: _e.mock.On("ListServiceNames", filter, options)} } -func (_c *MockHeureka_ListServiceNames_Call) Run(run func(_a0 *entity.ServiceFilter, _a1 *entity.ListOptions)) *MockHeureka_ListServiceNames_Call { +func (_c *MockHeureka_ListServiceNames_Call) Run(run func(filter *entity.ServiceFilter, options *entity.ListOptions)) *MockHeureka_ListServiceNames_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(*entity.ServiceFilter), args[1].(*entity.ListOptions)) }) @@ -2964,9 +2964,9 @@ func (_c *MockHeureka_ListServiceNames_Call) RunAndReturn(run func(*entity.Servi return _c } -// ListServices provides a mock function with given fields: _a0, _a1 -func (_m *MockHeureka) ListServices(_a0 *entity.ServiceFilter, _a1 *entity.ListOptions) (*entity.List[entity.ServiceResult], error) { - ret := _m.Called(_a0, _a1) +// ListServices provides a mock function with given fields: filter, options +func (_m *MockHeureka) ListServices(filter *entity.ServiceFilter, options *entity.ListOptions) (*entity.List[entity.ServiceResult], error) { + ret := _m.Called(filter, options) if len(ret) == 0 { panic("no return value specified for ListServices") @@ -2975,10 +2975,10 @@ func (_m *MockHeureka) ListServices(_a0 *entity.ServiceFilter, _a1 *entity.ListO var r0 *entity.List[entity.ServiceResult] var r1 error if rf, ok := ret.Get(0).(func(*entity.ServiceFilter, *entity.ListOptions) (*entity.List[entity.ServiceResult], error)); ok { - return rf(_a0, _a1) + return rf(filter, options) } if rf, ok := ret.Get(0).(func(*entity.ServiceFilter, *entity.ListOptions) *entity.List[entity.ServiceResult]); ok { - r0 = rf(_a0, _a1) + r0 = rf(filter, options) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*entity.List[entity.ServiceResult]) @@ -2986,7 +2986,7 @@ func (_m *MockHeureka) ListServices(_a0 *entity.ServiceFilter, _a1 *entity.ListO } if rf, ok := ret.Get(1).(func(*entity.ServiceFilter, *entity.ListOptions) error); ok { - r1 = rf(_a0, _a1) + r1 = rf(filter, options) } else { r1 = ret.Error(1) } @@ -3000,13 +3000,13 @@ type MockHeureka_ListServices_Call struct { } // ListServices is a helper method to define mock.On call -// - _a0 *entity.ServiceFilter -// - _a1 *entity.ListOptions -func (_e *MockHeureka_Expecter) ListServices(_a0 interface{}, _a1 interface{}) *MockHeureka_ListServices_Call { - return &MockHeureka_ListServices_Call{Call: _e.mock.On("ListServices", _a0, _a1)} +// - filter *entity.ServiceFilter +// - options *entity.ListOptions +func (_e *MockHeureka_Expecter) ListServices(filter interface{}, options interface{}) *MockHeureka_ListServices_Call { + return &MockHeureka_ListServices_Call{Call: _e.mock.On("ListServices", filter, options)} } -func (_c *MockHeureka_ListServices_Call) Run(run func(_a0 *entity.ServiceFilter, _a1 *entity.ListOptions)) *MockHeureka_ListServices_Call { +func (_c *MockHeureka_ListServices_Call) Run(run func(filter *entity.ServiceFilter, options *entity.ListOptions)) *MockHeureka_ListServices_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(*entity.ServiceFilter), args[1].(*entity.ListOptions)) }) @@ -3554,9 +3554,9 @@ func (_c *MockHeureka_RemoveIssueRepositoryFromService_Call) RunAndReturn(run fu return _c } -// RemoveOwnerFromService provides a mock function with given fields: _a0, _a1 -func (_m *MockHeureka) RemoveOwnerFromService(_a0 int64, _a1 int64) (*entity.Service, error) { - ret := _m.Called(_a0, _a1) +// RemoveOwnerFromService provides a mock function with given fields: serviceId, ownerId +func (_m *MockHeureka) RemoveOwnerFromService(serviceId int64, ownerId int64) (*entity.Service, error) { + ret := _m.Called(serviceId, ownerId) if len(ret) == 0 { panic("no return value specified for RemoveOwnerFromService") @@ -3565,10 +3565,10 @@ func (_m *MockHeureka) RemoveOwnerFromService(_a0 int64, _a1 int64) (*entity.Ser var r0 *entity.Service var r1 error if rf, ok := ret.Get(0).(func(int64, int64) (*entity.Service, error)); ok { - return rf(_a0, _a1) + return rf(serviceId, ownerId) } if rf, ok := ret.Get(0).(func(int64, int64) *entity.Service); ok { - r0 = rf(_a0, _a1) + r0 = rf(serviceId, ownerId) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*entity.Service) @@ -3576,7 +3576,7 @@ func (_m *MockHeureka) RemoveOwnerFromService(_a0 int64, _a1 int64) (*entity.Ser } if rf, ok := ret.Get(1).(func(int64, int64) error); ok { - r1 = rf(_a0, _a1) + r1 = rf(serviceId, ownerId) } else { r1 = ret.Error(1) } @@ -3590,13 +3590,13 @@ type MockHeureka_RemoveOwnerFromService_Call struct { } // RemoveOwnerFromService is a helper method to define mock.On call -// - _a0 int64 -// - _a1 int64 -func (_e *MockHeureka_Expecter) RemoveOwnerFromService(_a0 interface{}, _a1 interface{}) *MockHeureka_RemoveOwnerFromService_Call { - return &MockHeureka_RemoveOwnerFromService_Call{Call: _e.mock.On("RemoveOwnerFromService", _a0, _a1)} +// - serviceId int64 +// - ownerId int64 +func (_e *MockHeureka_Expecter) RemoveOwnerFromService(serviceId interface{}, ownerId interface{}) *MockHeureka_RemoveOwnerFromService_Call { + return &MockHeureka_RemoveOwnerFromService_Call{Call: _e.mock.On("RemoveOwnerFromService", serviceId, ownerId)} } -func (_c *MockHeureka_RemoveOwnerFromService_Call) Run(run func(_a0 int64, _a1 int64)) *MockHeureka_RemoveOwnerFromService_Call { +func (_c *MockHeureka_RemoveOwnerFromService_Call) Run(run func(serviceId int64, ownerId int64)) *MockHeureka_RemoveOwnerFromService_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(int64), args[1].(int64)) }) @@ -4415,9 +4415,9 @@ func (_c *MockHeureka_UpdateIssueVariant_Call) RunAndReturn(run func(*entity.Iss return _c } -// UpdateService provides a mock function with given fields: _a0 -func (_m *MockHeureka) UpdateService(_a0 *entity.Service) (*entity.Service, error) { - ret := _m.Called(_a0) +// UpdateService provides a mock function with given fields: service +func (_m *MockHeureka) UpdateService(service *entity.Service) (*entity.Service, error) { + ret := _m.Called(service) if len(ret) == 0 { panic("no return value specified for UpdateService") @@ -4426,10 +4426,10 @@ func (_m *MockHeureka) UpdateService(_a0 *entity.Service) (*entity.Service, erro var r0 *entity.Service var r1 error if rf, ok := ret.Get(0).(func(*entity.Service) (*entity.Service, error)); ok { - return rf(_a0) + return rf(service) } if rf, ok := ret.Get(0).(func(*entity.Service) *entity.Service); ok { - r0 = rf(_a0) + r0 = rf(service) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*entity.Service) @@ -4437,7 +4437,7 @@ func (_m *MockHeureka) UpdateService(_a0 *entity.Service) (*entity.Service, erro } if rf, ok := ret.Get(1).(func(*entity.Service) error); ok { - r1 = rf(_a0) + r1 = rf(service) } else { r1 = ret.Error(1) } @@ -4451,12 +4451,12 @@ type MockHeureka_UpdateService_Call struct { } // UpdateService is a helper method to define mock.On call -// - _a0 *entity.Service -func (_e *MockHeureka_Expecter) UpdateService(_a0 interface{}) *MockHeureka_UpdateService_Call { - return &MockHeureka_UpdateService_Call{Call: _e.mock.On("UpdateService", _a0)} +// - service *entity.Service +func (_e *MockHeureka_Expecter) UpdateService(service interface{}) *MockHeureka_UpdateService_Call { + return &MockHeureka_UpdateService_Call{Call: _e.mock.On("UpdateService", service)} } -func (_c *MockHeureka_UpdateService_Call) Run(run func(_a0 *entity.Service)) *MockHeureka_UpdateService_Call { +func (_c *MockHeureka_UpdateService_Call) Run(run func(service *entity.Service)) *MockHeureka_UpdateService_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(*entity.Service)) }) diff --git a/internal/server/server.go b/internal/server/server.go index 6b94d65a..5e83f83b 100644 --- a/internal/server/server.go +++ b/internal/server/server.go @@ -6,19 +6,20 @@ package server import ( "context" "fmt" - "github.wdf.sap.corp/cc/heureka/internal/app" - "github.wdf.sap.corp/cc/heureka/internal/database/mariadb" "log" "net/http" "os/signal" "syscall" "time" + "github.com/cloudoperators/heureka/internal/app" + "github.com/cloudoperators/heureka/internal/database/mariadb" + + graphqlapi "github.com/cloudoperators/heureka/internal/api/graphql" + "github.com/cloudoperators/heureka/internal/util" "github.com/onuryilmaz/ginprom" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/sirupsen/logrus" - graphqlapi "github.wdf.sap.corp/cc/heureka/internal/api/graphql" - "github.wdf.sap.corp/cc/heureka/internal/util" "github.com/gin-contrib/cors"