From 836156e4c2daf9d92c6f91ddb204d8b1e89cb1f6 Mon Sep 17 00:00:00 2001 From: Lanre Adelowo Date: Mon, 23 Feb 2026 22:07:43 +0100 Subject: [PATCH 1/4] control diffing after a standard revision is bumped --- .task/checksum/generate-ent-smart | 2 +- .task/checksum/generate-graphql-smart | 2 +- .task/checksum/generate-openapi-smart | 2 +- common/enums/notificationtopic.go | 3 + .../ent/checksum/.history_schema_checksum | 2 +- internal/ent/checksum/.schema_checksum | 2 +- internal/ent/csvgenerated/csv_generated.go | 596 ++++++++------- internal/ent/generated/control_update.go | 46 -- internal/ent/generated/migrate/schema.go | 2 +- .../generated/notification/notification.go | 2 +- .../integration_mapping_generated.go | 444 ++++++------ internal/ent/interceptors/auditlogs.go | 5 +- internal/ent/notifications/consts.go | 3 + internal/ent/notifications/events.go | 5 + internal/ent/notifications/events_test.go | 3 +- internal/ent/notifications/standard_update.go | 200 +++++ .../ent/notifications/standard_update_test.go | 71 ++ .../checksum/.history_schema_checksum | 2 +- internal/graphapi/checksum/.schema_checksum | 2 +- .../clientschema/checksum/.schema_checksum | 2 +- internal/graphapi/clientschema/schema.graphql | 81 +++ internal/graphapi/controldiff_helpers.go | 248 +++++++ internal/graphapi/controldiff_helpers_test.go | 80 ++ .../graphapi/controlextended.resolvers.go | 5 + .../generated/controlextended.generated.go | 685 +++++++++++++++++- internal/graphapi/generated/ent.generated.go | 85 +++ .../graphapi/generated/root_.generated.go | 198 +++++ .../checksum/.history_schema_checksum | 2 +- internal/graphapi/model/gen_models.go | 44 ++ .../graphapi/schema/controlextended.graphql | 86 +++ internal/graphapi/schema/ent.graphql | 1 + .../testclient/checksum/.client_checksum | 2 +- internal/graphapi/testclient/models.go | 44 ++ 33 files changed, 2390 insertions(+), 567 deletions(-) create mode 100644 internal/ent/notifications/standard_update.go create mode 100644 internal/ent/notifications/standard_update_test.go create mode 100644 internal/graphapi/controldiff_helpers.go create mode 100644 internal/graphapi/controldiff_helpers_test.go diff --git a/.task/checksum/generate-ent-smart b/.task/checksum/generate-ent-smart index 413053070e..989abdf17c 100644 --- a/.task/checksum/generate-ent-smart +++ b/.task/checksum/generate-ent-smart @@ -1 +1 @@ -d73e012eb2a11d484e75257338e2b08 +e590d97a7ad83dd6659edce1ff3d6f6 diff --git a/.task/checksum/generate-graphql-smart b/.task/checksum/generate-graphql-smart index fcdc28856e..7e2f74cab8 100644 --- a/.task/checksum/generate-graphql-smart +++ b/.task/checksum/generate-graphql-smart @@ -1 +1 @@ -43fbcefb5133ea6fa10ae531966d1f50 +eebef732f39532bd28a08f6c2f9cb9c0 diff --git a/.task/checksum/generate-openapi-smart b/.task/checksum/generate-openapi-smart index ba82a45405..f339ea3552 100644 --- a/.task/checksum/generate-openapi-smart +++ b/.task/checksum/generate-openapi-smart @@ -1 +1 @@ -65ba66bc3d48e080fa66ef21e0dcfe9a +680da382234d4c6d555030d1390f33c9 diff --git a/common/enums/notificationtopic.go b/common/enums/notificationtopic.go index 4dfc4d3de0..91dffb8fa1 100644 --- a/common/enums/notificationtopic.go +++ b/common/enums/notificationtopic.go @@ -14,6 +14,8 @@ var ( NotificationTopicMention NotificationTopic = "MENTION" // NotificationTopicExport represents an export notification NotificationTopicExport NotificationTopic = "EXPORT" + // NotificationTopicStandardUpdate represents a standard update notification + NotificationTopicStandardUpdate NotificationTopic = "STANDARD_UPDATE" // NotificationTopicInvalid represents an invalid notification topic NotificationTopicInvalid NotificationTopic = "INVALID" ) @@ -21,6 +23,7 @@ var ( var notificationTopicValues = []NotificationTopic{ NotificationTopicTaskAssignment, NotificationTopicApproval, NotificationTopicMention, NotificationTopicExport, + NotificationTopicStandardUpdate, } // Values returns a slice of strings that represents all the possible values of the NotificationTopic enum. diff --git a/internal/ent/checksum/.history_schema_checksum b/internal/ent/checksum/.history_schema_checksum index 5f1bd49c8f..bacac95e8c 100644 --- a/internal/ent/checksum/.history_schema_checksum +++ b/internal/ent/checksum/.history_schema_checksum @@ -1 +1 @@ -f45dfc0098e8d06ff3ec753457c7d07e39542ccf0a201ca2d389ea7d01466bf9 +3d0f253d05dbc48103f22e8b55f5a1c3d774d26ae2e8260280443086f0c73e0f \ No newline at end of file diff --git a/internal/ent/checksum/.schema_checksum b/internal/ent/checksum/.schema_checksum index 902b18dfb7..9f923bd2b6 100644 --- a/internal/ent/checksum/.schema_checksum +++ b/internal/ent/checksum/.schema_checksum @@ -1 +1 @@ -120b375fac2f9d854563185e179c0a3d354a20f24c4972029d3e65aac04ead64 +a230c4aa05b399249a2bb33937c59dc9cf93e82362c7e0e33bf97049a11f2255 \ No newline at end of file diff --git a/internal/ent/csvgenerated/csv_generated.go b/internal/ent/csvgenerated/csv_generated.go index a5f714c1e5..5b513cc631 100644 --- a/internal/ent/csvgenerated/csv_generated.go +++ b/internal/ent/csvgenerated/csv_generated.go @@ -7,12 +7,12 @@ import ( "strings" "github.com/theopenlane/core/internal/ent/generated" + "github.com/theopenlane/core/internal/ent/generated/predicate" "github.com/theopenlane/core/internal/ent/generated/control" "github.com/theopenlane/core/internal/ent/generated/entity" "github.com/theopenlane/core/internal/ent/generated/group" "github.com/theopenlane/core/internal/ent/generated/identityholder" "github.com/theopenlane/core/internal/ent/generated/platform" - "github.com/theopenlane/core/internal/ent/generated/predicate" "github.com/theopenlane/core/internal/ent/generated/template" "github.com/theopenlane/core/internal/ent/generated/user" ) @@ -453,7 +453,8 @@ type CSVSchemaInfo struct { var CSVReferenceRegistry = map[string]CSVSchemaInfo{ "APIToken": { SchemaName: "APIToken", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "ActionPlan": { SchemaName: "ActionPlan", @@ -607,7 +608,8 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "Contact": { SchemaName: "Contact", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Control": { SchemaName: "Control", @@ -640,55 +642,68 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "ControlImplementation": { SchemaName: "ControlImplementation", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "ControlObjective": { SchemaName: "ControlObjective", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "CustomDomain": { SchemaName: "CustomDomain", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "CustomTypeEnum": { SchemaName: "CustomTypeEnum", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "DNSVerification": { SchemaName: "DNSVerification", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "DirectoryAccount": { SchemaName: "DirectoryAccount", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "DirectoryGroup": { SchemaName: "DirectoryGroup", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "DirectoryMembership": { SchemaName: "DirectoryMembership", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "DirectorySyncRun": { SchemaName: "DirectorySyncRun", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Discussion": { SchemaName: "Discussion", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "DocumentData": { SchemaName: "DocumentData", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "EmailBranding": { SchemaName: "EmailBranding", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "EmailTemplate": { SchemaName: "EmailTemplate", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Entity": { SchemaName: "Entity", @@ -729,11 +744,13 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "EntityType": { SchemaName: "EntityType", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Event": { SchemaName: "Event", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Evidence": { SchemaName: "Evidence", @@ -750,35 +767,43 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "Export": { SchemaName: "Export", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "File": { SchemaName: "File", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Finding": { SchemaName: "Finding", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "FindingControl": { SchemaName: "FindingControl", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Group": { SchemaName: "Group", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "GroupMembership": { SchemaName: "GroupMembership", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "GroupSetting": { SchemaName: "GroupSetting", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Hush": { SchemaName: "Hush", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "IdentityHolder": { SchemaName: "IdentityHolder", @@ -848,71 +873,88 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "Invite": { SchemaName: "Invite", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "JobResult": { SchemaName: "JobResult", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "JobRunner": { SchemaName: "JobRunner", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "JobRunnerRegistrationToken": { SchemaName: "JobRunnerRegistrationToken", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "JobRunnerToken": { SchemaName: "JobRunnerToken", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "JobTemplate": { SchemaName: "JobTemplate", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "MappableDomain": { SchemaName: "MappableDomain", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "MappedControl": { SchemaName: "MappedControl", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Narrative": { SchemaName: "Narrative", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Notification": { SchemaName: "Notification", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "NotificationPreference": { SchemaName: "NotificationPreference", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "NotificationTemplate": { SchemaName: "NotificationTemplate", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Onboarding": { SchemaName: "Onboarding", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "OrgMembership": { SchemaName: "OrgMembership", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Organization": { SchemaName: "Organization", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "OrganizationSetting": { SchemaName: "OrganizationSetting", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "PersonalAccessToken": { SchemaName: "PersonalAccessToken", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Platform": { SchemaName: "Platform", @@ -1035,7 +1077,8 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "ProgramMembership": { SchemaName: "ProgramMembership", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Remediation": { SchemaName: "Remediation", @@ -1168,11 +1211,13 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "ScheduledJobRun": { SchemaName: "ScheduledJobRun", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Standard": { SchemaName: "Standard", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Subcontrol": { SchemaName: "Subcontrol", @@ -1205,19 +1250,23 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "Subprocessor": { SchemaName: "Subprocessor", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Subscriber": { SchemaName: "Subscriber", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TFASetting": { SchemaName: "TFASetting", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TagDefinition": { SchemaName: "TagDefinition", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Task": { SchemaName: "Task", @@ -1250,51 +1299,63 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "Template": { SchemaName: "Template", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenter": { SchemaName: "TrustCenter", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterCompliance": { SchemaName: "TrustCenterCompliance", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterDoc": { SchemaName: "TrustCenterDoc", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterEntity": { SchemaName: "TrustCenterEntity", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterFAQ": { SchemaName: "TrustCenterFAQ", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterNDARequest": { SchemaName: "TrustCenterNDARequest", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterSetting": { SchemaName: "TrustCenterSetting", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterSubprocessor": { SchemaName: "TrustCenterSubprocessor", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "TrustCenterWatermarkConfig": { SchemaName: "TrustCenterWatermarkConfig", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "User": { SchemaName: "User", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "UserSetting": { SchemaName: "UserSetting", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, "Vulnerability": { SchemaName: "Vulnerability", @@ -1311,7 +1372,8 @@ var CSVReferenceRegistry = map[string]CSVSchemaInfo{ }, "WorkflowDefinition": { SchemaName: "WorkflowDefinition", - Rules: []CSVReferenceRule{}, + Rules: []CSVReferenceRule{ + }, }, } @@ -1342,7 +1404,7 @@ func (APITokenCSVInput) CSVInputWrapper() {} // APITokenCSVUpdateInput wraps UpdateAPITokenInput with CSV reference columns for bulk updates. type APITokenCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateAPITokenInput } @@ -1351,10 +1413,10 @@ func (APITokenCSVUpdateInput) CSVInputWrapper() {} // ActionPlanCSVInput wraps CreateActionPlanInput with CSV reference columns. type ActionPlanCSVInput struct { - Input generated.CreateActionPlanInput - ApproverGroupName string `csv:"ApproverGroupName"` - ControlRefCodes []string `csv:"ControlRefCodes"` - DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` + Input generated.CreateActionPlanInput + ApproverGroupName string `csv:"ApproverGroupName"` + ControlRefCodes []string `csv:"ControlRefCodes"` + DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` } // CSVInputWrapper marks ActionPlanCSVInput for CSV header preprocessing. @@ -1363,11 +1425,11 @@ func (ActionPlanCSVInput) CSVInputWrapper() {} // ActionPlanCSVUpdateInput wraps UpdateActionPlanInput with CSV reference columns for bulk updates. type ActionPlanCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateActionPlanInput - ApproverGroupName string `csv:"ApproverGroupName"` - ControlRefCodes []string `csv:"ControlRefCodes"` - DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` + ID string `csv:"ID"` + Input generated.UpdateActionPlanInput + ApproverGroupName string `csv:"ApproverGroupName"` + ControlRefCodes []string `csv:"ControlRefCodes"` + DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` } // CSVInputWrapper marks ActionPlanCSVUpdateInput for CSV header preprocessing. @@ -1375,7 +1437,7 @@ func (ActionPlanCSVUpdateInput) CSVInputWrapper() {} // AssessmentCSVInput wraps CreateAssessmentInput with CSV reference columns. type AssessmentCSVInput struct { - Input generated.CreateAssessmentInput + Input generated.CreateAssessmentInput AssessmentTemplateRef string `csv:"AssessmentTemplateRef"` } @@ -1385,8 +1447,8 @@ func (AssessmentCSVInput) CSVInputWrapper() {} // AssessmentCSVUpdateInput wraps UpdateAssessmentInput with CSV reference columns for bulk updates. type AssessmentCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateAssessmentInput + ID string `csv:"ID"` + Input generated.UpdateAssessmentInput AssessmentTemplateRef string `csv:"AssessmentTemplateRef"` } @@ -1395,9 +1457,9 @@ func (AssessmentCSVUpdateInput) CSVInputWrapper() {} // AssessmentResponseCSVInput wraps CreateAssessmentResponseInput with CSV reference columns. type AssessmentResponseCSVInput struct { - Input generated.CreateAssessmentResponseInput + Input generated.CreateAssessmentResponseInput AssessmentIdentityHolderEmail string `csv:"AssessmentIdentityHolderEmail"` - AssessmentResponseEntityName string `csv:"AssessmentResponseEntityName"` + AssessmentResponseEntityName string `csv:"AssessmentResponseEntityName"` } // CSVInputWrapper marks AssessmentResponseCSVInput for CSV header preprocessing. @@ -1405,10 +1467,10 @@ func (AssessmentResponseCSVInput) CSVInputWrapper() {} // AssetCSVInput wraps CreateAssetInput with CSV reference columns. type AssetCSVInput struct { - Input generated.CreateAssetInput + Input generated.CreateAssetInput InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` - SourcePlatformName string `csv:"SourcePlatformName"` + SourcePlatformName string `csv:"SourcePlatformName"` } // CSVInputWrapper marks AssetCSVInput for CSV header preprocessing. @@ -1417,11 +1479,11 @@ func (AssetCSVInput) CSVInputWrapper() {} // AssetCSVUpdateInput wraps UpdateAssetInput with CSV reference columns for bulk updates. type AssetCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateAssetInput + ID string `csv:"ID"` + Input generated.UpdateAssetInput InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` - SourcePlatformName string `csv:"SourcePlatformName"` + SourcePlatformName string `csv:"SourcePlatformName"` } // CSVInputWrapper marks AssetCSVUpdateInput for CSV header preprocessing. @@ -1429,9 +1491,9 @@ func (AssetCSVUpdateInput) CSVInputWrapper() {} // CampaignCSVInput wraps CreateCampaignInput with CSV reference columns. type CampaignCSVInput struct { - Input generated.CreateCampaignInput - CampaignEntityName string `csv:"CampaignEntityName"` - CampaignTemplateRef string `csv:"CampaignTemplateRef"` + Input generated.CreateCampaignInput + CampaignEntityName string `csv:"CampaignEntityName"` + CampaignTemplateRef string `csv:"CampaignTemplateRef"` InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` } @@ -1442,10 +1504,10 @@ func (CampaignCSVInput) CSVInputWrapper() {} // CampaignCSVUpdateInput wraps UpdateCampaignInput with CSV reference columns for bulk updates. type CampaignCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateCampaignInput - CampaignEntityName string `csv:"CampaignEntityName"` - CampaignTemplateRef string `csv:"CampaignTemplateRef"` + ID string `csv:"ID"` + Input generated.UpdateCampaignInput + CampaignEntityName string `csv:"CampaignEntityName"` + CampaignTemplateRef string `csv:"CampaignTemplateRef"` InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` } @@ -1455,7 +1517,7 @@ func (CampaignCSVUpdateInput) CSVInputWrapper() {} // CampaignTargetCSVInput wraps CreateCampaignTargetInput with CSV reference columns. type CampaignTargetCSVInput struct { - Input generated.CreateCampaignTargetInput + Input generated.CreateCampaignTargetInput CampaignTargetGroupName string `csv:"CampaignTargetGroupName"` CampaignTargetUserEmail string `csv:"CampaignTargetUserEmail"` } @@ -1466,8 +1528,8 @@ func (CampaignTargetCSVInput) CSVInputWrapper() {} // CampaignTargetCSVUpdateInput wraps UpdateCampaignTargetInput with CSV reference columns for bulk updates. type CampaignTargetCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateCampaignTargetInput + ID string `csv:"ID"` + Input generated.UpdateCampaignTargetInput CampaignTargetGroupName string `csv:"CampaignTargetGroupName"` CampaignTargetUserEmail string `csv:"CampaignTargetUserEmail"` } @@ -1486,7 +1548,7 @@ func (ContactCSVInput) CSVInputWrapper() {} // ContactCSVUpdateInput wraps UpdateContactInput with CSV reference columns for bulk updates. type ContactCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateContactInput } @@ -1495,9 +1557,9 @@ func (ContactCSVUpdateInput) CSVInputWrapper() {} // ControlCSVInput wraps CreateControlInput with CSV reference columns. type ControlCSVInput struct { - Input generated.CreateControlInput - ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` - ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` + Input generated.CreateControlInput + ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` + ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` ResponsiblePartyEntityName string `csv:"ResponsiblePartyEntityName"` } @@ -1507,10 +1569,10 @@ func (ControlCSVInput) CSVInputWrapper() {} // ControlCSVUpdateInput wraps UpdateControlInput with CSV reference columns for bulk updates. type ControlCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateControlInput - ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` - ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` + ID string `csv:"ID"` + Input generated.UpdateControlInput + ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` + ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` ResponsiblePartyEntityName string `csv:"ResponsiblePartyEntityName"` } @@ -1528,7 +1590,7 @@ func (ControlImplementationCSVInput) CSVInputWrapper() {} // ControlImplementationCSVUpdateInput wraps UpdateControlImplementationInput with CSV reference columns for bulk updates. type ControlImplementationCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateControlImplementationInput } @@ -1546,7 +1608,7 @@ func (ControlObjectiveCSVInput) CSVInputWrapper() {} // ControlObjectiveCSVUpdateInput wraps UpdateControlObjectiveInput with CSV reference columns for bulk updates. type ControlObjectiveCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateControlObjectiveInput } @@ -1564,7 +1626,7 @@ func (CustomDomainCSVInput) CSVInputWrapper() {} // CustomDomainCSVUpdateInput wraps UpdateCustomDomainInput with CSV reference columns for bulk updates. type CustomDomainCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateCustomDomainInput } @@ -1582,7 +1644,7 @@ func (CustomTypeEnumCSVInput) CSVInputWrapper() {} // CustomTypeEnumCSVUpdateInput wraps UpdateCustomTypeEnumInput with CSV reference columns for bulk updates. type CustomTypeEnumCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateCustomTypeEnumInput } @@ -1600,7 +1662,7 @@ func (DNSVerificationCSVInput) CSVInputWrapper() {} // DNSVerificationCSVUpdateInput wraps UpdateDNSVerificationInput with CSV reference columns for bulk updates. type DNSVerificationCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateDNSVerificationInput } @@ -1618,7 +1680,7 @@ func (DirectoryAccountCSVInput) CSVInputWrapper() {} // DirectoryAccountCSVUpdateInput wraps UpdateDirectoryAccountInput with CSV reference columns for bulk updates. type DirectoryAccountCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateDirectoryAccountInput } @@ -1636,7 +1698,7 @@ func (DirectoryGroupCSVInput) CSVInputWrapper() {} // DirectoryGroupCSVUpdateInput wraps UpdateDirectoryGroupInput with CSV reference columns for bulk updates. type DirectoryGroupCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateDirectoryGroupInput } @@ -1654,7 +1716,7 @@ func (DirectoryMembershipCSVInput) CSVInputWrapper() {} // DirectoryMembershipCSVUpdateInput wraps UpdateDirectoryMembershipInput with CSV reference columns for bulk updates. type DirectoryMembershipCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateDirectoryMembershipInput } @@ -1672,7 +1734,7 @@ func (DirectorySyncRunCSVInput) CSVInputWrapper() {} // DirectorySyncRunCSVUpdateInput wraps UpdateDirectorySyncRunInput with CSV reference columns for bulk updates. type DirectorySyncRunCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateDirectorySyncRunInput } @@ -1690,7 +1752,7 @@ func (DiscussionCSVInput) CSVInputWrapper() {} // DiscussionCSVUpdateInput wraps UpdateDiscussionInput with CSV reference columns for bulk updates. type DiscussionCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateDiscussionInput } @@ -1708,7 +1770,7 @@ func (DocumentDataCSVInput) CSVInputWrapper() {} // DocumentDataCSVUpdateInput wraps UpdateDocumentDataInput with CSV reference columns for bulk updates. type DocumentDataCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateDocumentDataInput } @@ -1726,7 +1788,7 @@ func (EmailBrandingCSVInput) CSVInputWrapper() {} // EmailBrandingCSVUpdateInput wraps UpdateEmailBrandingInput with CSV reference columns for bulk updates. type EmailBrandingCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateEmailBrandingInput } @@ -1744,7 +1806,7 @@ func (EmailTemplateCSVInput) CSVInputWrapper() {} // EmailTemplateCSVUpdateInput wraps UpdateEmailTemplateInput with CSV reference columns for bulk updates. type EmailTemplateCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateEmailTemplateInput } @@ -1753,11 +1815,11 @@ func (EmailTemplateCSVUpdateInput) CSVInputWrapper() {} // EntityCSVInput wraps CreateEntityInput with CSV reference columns. type EntityCSVInput struct { - Input generated.CreateEntityInput + Input generated.CreateEntityInput InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` - ReviewedByGroupName string `csv:"ReviewedByGroupName"` - ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` + ReviewedByGroupName string `csv:"ReviewedByGroupName"` + ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` } // CSVInputWrapper marks EntityCSVInput for CSV header preprocessing. @@ -1766,12 +1828,12 @@ func (EntityCSVInput) CSVInputWrapper() {} // EntityCSVUpdateInput wraps UpdateEntityInput with CSV reference columns for bulk updates. type EntityCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateEntityInput + ID string `csv:"ID"` + Input generated.UpdateEntityInput InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` - ReviewedByGroupName string `csv:"ReviewedByGroupName"` - ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` + ReviewedByGroupName string `csv:"ReviewedByGroupName"` + ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` } // CSVInputWrapper marks EntityCSVUpdateInput for CSV header preprocessing. @@ -1788,7 +1850,7 @@ func (EntityTypeCSVInput) CSVInputWrapper() {} // EntityTypeCSVUpdateInput wraps UpdateEntityTypeInput with CSV reference columns for bulk updates. type EntityTypeCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateEntityTypeInput } @@ -1806,7 +1868,7 @@ func (EventCSVInput) CSVInputWrapper() {} // EventCSVUpdateInput wraps UpdateEventInput with CSV reference columns for bulk updates. type EventCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateEventInput } @@ -1815,7 +1877,7 @@ func (EventCSVUpdateInput) CSVInputWrapper() {} // EvidenceCSVInput wraps CreateEvidenceInput with CSV reference columns. type EvidenceCSVInput struct { - Input generated.CreateEvidenceInput + Input generated.CreateEvidenceInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -1825,8 +1887,8 @@ func (EvidenceCSVInput) CSVInputWrapper() {} // EvidenceCSVUpdateInput wraps UpdateEvidenceInput with CSV reference columns for bulk updates. type EvidenceCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateEvidenceInput + ID string `csv:"ID"` + Input generated.UpdateEvidenceInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -1844,7 +1906,7 @@ func (ExportCSVInput) CSVInputWrapper() {} // ExportCSVUpdateInput wraps UpdateExportInput with CSV reference columns for bulk updates. type ExportCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateExportInput } @@ -1862,7 +1924,7 @@ func (FileCSVInput) CSVInputWrapper() {} // FileCSVUpdateInput wraps UpdateFileInput with CSV reference columns for bulk updates. type FileCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateFileInput } @@ -1880,7 +1942,7 @@ func (FindingCSVInput) CSVInputWrapper() {} // FindingCSVUpdateInput wraps UpdateFindingInput with CSV reference columns for bulk updates. type FindingCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateFindingInput } @@ -1898,7 +1960,7 @@ func (FindingControlCSVInput) CSVInputWrapper() {} // FindingControlCSVUpdateInput wraps UpdateFindingControlInput with CSV reference columns for bulk updates. type FindingControlCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateFindingControlInput } @@ -1916,7 +1978,7 @@ func (GroupCSVInput) CSVInputWrapper() {} // GroupCSVUpdateInput wraps UpdateGroupInput with CSV reference columns for bulk updates. type GroupCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateGroupInput } @@ -1934,7 +1996,7 @@ func (GroupMembershipCSVInput) CSVInputWrapper() {} // GroupMembershipCSVUpdateInput wraps UpdateGroupMembershipInput with CSV reference columns for bulk updates. type GroupMembershipCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateGroupMembershipInput } @@ -1952,7 +2014,7 @@ func (GroupSettingCSVInput) CSVInputWrapper() {} // GroupSettingCSVUpdateInput wraps UpdateGroupSettingInput with CSV reference columns for bulk updates. type GroupSettingCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateGroupSettingInput } @@ -1970,7 +2032,7 @@ func (HushCSVInput) CSVInputWrapper() {} // HushCSVUpdateInput wraps UpdateHushInput with CSV reference columns for bulk updates. type HushCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateHushInput } @@ -1979,11 +2041,11 @@ func (HushCSVUpdateInput) CSVInputWrapper() {} // IdentityHolderCSVInput wraps CreateIdentityHolderInput with CSV reference columns. type IdentityHolderCSVInput struct { - Input generated.CreateIdentityHolderInput - EmployerEntityName string `csv:"EmployerEntityName"` + Input generated.CreateIdentityHolderInput + EmployerEntityName string `csv:"EmployerEntityName"` IdentityHolderUserEmail string `csv:"IdentityHolderUserEmail"` - InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` - InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` + InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` + InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` } // CSVInputWrapper marks IdentityHolderCSVInput for CSV header preprocessing. @@ -1992,12 +2054,12 @@ func (IdentityHolderCSVInput) CSVInputWrapper() {} // IdentityHolderCSVUpdateInput wraps UpdateIdentityHolderInput with CSV reference columns for bulk updates. type IdentityHolderCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateIdentityHolderInput - EmployerEntityName string `csv:"EmployerEntityName"` + ID string `csv:"ID"` + Input generated.UpdateIdentityHolderInput + EmployerEntityName string `csv:"EmployerEntityName"` IdentityHolderUserEmail string `csv:"IdentityHolderUserEmail"` - InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` - InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` + InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` + InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` } // CSVInputWrapper marks IdentityHolderCSVUpdateInput for CSV header preprocessing. @@ -2005,10 +2067,10 @@ func (IdentityHolderCSVUpdateInput) CSVInputWrapper() {} // InternalPolicyCSVInput wraps CreateInternalPolicyInput with CSV reference columns. type InternalPolicyCSVInput struct { - Input generated.CreateInternalPolicyInput - ApproverGroupName string `csv:"ApproverGroupName"` - ControlRefCodes []string `csv:"ControlRefCodes"` - DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` + Input generated.CreateInternalPolicyInput + ApproverGroupName string `csv:"ApproverGroupName"` + ControlRefCodes []string `csv:"ControlRefCodes"` + DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` } // CSVInputWrapper marks InternalPolicyCSVInput for CSV header preprocessing. @@ -2017,11 +2079,11 @@ func (InternalPolicyCSVInput) CSVInputWrapper() {} // InternalPolicyCSVUpdateInput wraps UpdateInternalPolicyInput with CSV reference columns for bulk updates. type InternalPolicyCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateInternalPolicyInput - ApproverGroupName string `csv:"ApproverGroupName"` - ControlRefCodes []string `csv:"ControlRefCodes"` - DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` + ID string `csv:"ID"` + Input generated.UpdateInternalPolicyInput + ApproverGroupName string `csv:"ApproverGroupName"` + ControlRefCodes []string `csv:"ControlRefCodes"` + DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` } // CSVInputWrapper marks InternalPolicyCSVUpdateInput for CSV header preprocessing. @@ -2038,7 +2100,7 @@ func (InviteCSVInput) CSVInputWrapper() {} // InviteCSVUpdateInput wraps UpdateInviteInput with CSV reference columns for bulk updates. type InviteCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateInviteInput } @@ -2056,7 +2118,7 @@ func (JobResultCSVInput) CSVInputWrapper() {} // JobResultCSVUpdateInput wraps UpdateJobResultInput with CSV reference columns for bulk updates. type JobResultCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateJobResultInput } @@ -2074,7 +2136,7 @@ func (JobRunnerCSVInput) CSVInputWrapper() {} // JobRunnerCSVUpdateInput wraps UpdateJobRunnerInput with CSV reference columns for bulk updates. type JobRunnerCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateJobRunnerInput } @@ -2092,7 +2154,7 @@ func (JobRunnerRegistrationTokenCSVInput) CSVInputWrapper() {} // JobRunnerRegistrationTokenCSVUpdateInput wraps UpdateJobRunnerRegistrationTokenInput with CSV reference columns for bulk updates. type JobRunnerRegistrationTokenCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateJobRunnerRegistrationTokenInput } @@ -2110,7 +2172,7 @@ func (JobRunnerTokenCSVInput) CSVInputWrapper() {} // JobRunnerTokenCSVUpdateInput wraps UpdateJobRunnerTokenInput with CSV reference columns for bulk updates. type JobRunnerTokenCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateJobRunnerTokenInput } @@ -2128,7 +2190,7 @@ func (JobTemplateCSVInput) CSVInputWrapper() {} // JobTemplateCSVUpdateInput wraps UpdateJobTemplateInput with CSV reference columns for bulk updates. type JobTemplateCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateJobTemplateInput } @@ -2146,7 +2208,7 @@ func (MappableDomainCSVInput) CSVInputWrapper() {} // MappableDomainCSVUpdateInput wraps UpdateMappableDomainInput with CSV reference columns for bulk updates. type MappableDomainCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateMappableDomainInput } @@ -2164,7 +2226,7 @@ func (MappedControlCSVInput) CSVInputWrapper() {} // MappedControlCSVUpdateInput wraps UpdateMappedControlInput with CSV reference columns for bulk updates. type MappedControlCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateMappedControlInput } @@ -2182,7 +2244,7 @@ func (NarrativeCSVInput) CSVInputWrapper() {} // NarrativeCSVUpdateInput wraps UpdateNarrativeInput with CSV reference columns for bulk updates. type NarrativeCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateNarrativeInput } @@ -2200,7 +2262,7 @@ func (NotificationCSVInput) CSVInputWrapper() {} // NotificationCSVUpdateInput wraps UpdateNotificationInput with CSV reference columns for bulk updates. type NotificationCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateNotificationInput } @@ -2218,7 +2280,7 @@ func (NotificationPreferenceCSVInput) CSVInputWrapper() {} // NotificationPreferenceCSVUpdateInput wraps UpdateNotificationPreferenceInput with CSV reference columns for bulk updates. type NotificationPreferenceCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateNotificationPreferenceInput } @@ -2236,7 +2298,7 @@ func (NotificationTemplateCSVInput) CSVInputWrapper() {} // NotificationTemplateCSVUpdateInput wraps UpdateNotificationTemplateInput with CSV reference columns for bulk updates. type NotificationTemplateCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateNotificationTemplateInput } @@ -2262,7 +2324,7 @@ func (OrgMembershipCSVInput) CSVInputWrapper() {} // OrgMembershipCSVUpdateInput wraps UpdateOrgMembershipInput with CSV reference columns for bulk updates. type OrgMembershipCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateOrgMembershipInput } @@ -2280,7 +2342,7 @@ func (OrganizationCSVInput) CSVInputWrapper() {} // OrganizationCSVUpdateInput wraps UpdateOrganizationInput with CSV reference columns for bulk updates. type OrganizationCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateOrganizationInput } @@ -2298,7 +2360,7 @@ func (OrganizationSettingCSVInput) CSVInputWrapper() {} // OrganizationSettingCSVUpdateInput wraps UpdateOrganizationSettingInput with CSV reference columns for bulk updates. type OrganizationSettingCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateOrganizationSettingInput } @@ -2316,7 +2378,7 @@ func (PersonalAccessTokenCSVInput) CSVInputWrapper() {} // PersonalAccessTokenCSVUpdateInput wraps UpdatePersonalAccessTokenInput with CSV reference columns for bulk updates. type PersonalAccessTokenCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdatePersonalAccessTokenInput } @@ -2325,14 +2387,14 @@ func (PersonalAccessTokenCSVUpdateInput) CSVInputWrapper() {} // PlatformCSVInput wraps CreatePlatformInput with CSV reference columns. type PlatformCSVInput struct { - Input generated.CreatePlatformInput - BusinessOwnerGroupName string `csv:"BusinessOwnerGroupName"` - BusinessOwnerUserEmail string `csv:"BusinessOwnerUserEmail"` - InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` - InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` - PlatformOwnerEmail string `csv:"PlatformOwnerEmail"` - SecurityOwnerGroupName string `csv:"SecurityOwnerGroupName"` - SecurityOwnerUserEmail string `csv:"SecurityOwnerUserEmail"` + Input generated.CreatePlatformInput + BusinessOwnerGroupName string `csv:"BusinessOwnerGroupName"` + BusinessOwnerUserEmail string `csv:"BusinessOwnerUserEmail"` + InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` + InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` + PlatformOwnerEmail string `csv:"PlatformOwnerEmail"` + SecurityOwnerGroupName string `csv:"SecurityOwnerGroupName"` + SecurityOwnerUserEmail string `csv:"SecurityOwnerUserEmail"` TechnicalOwnerGroupName string `csv:"TechnicalOwnerGroupName"` TechnicalOwnerUserEmail string `csv:"TechnicalOwnerUserEmail"` } @@ -2343,15 +2405,15 @@ func (PlatformCSVInput) CSVInputWrapper() {} // PlatformCSVUpdateInput wraps UpdatePlatformInput with CSV reference columns for bulk updates. type PlatformCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdatePlatformInput - BusinessOwnerGroupName string `csv:"BusinessOwnerGroupName"` - BusinessOwnerUserEmail string `csv:"BusinessOwnerUserEmail"` - InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` - InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` - PlatformOwnerEmail string `csv:"PlatformOwnerEmail"` - SecurityOwnerGroupName string `csv:"SecurityOwnerGroupName"` - SecurityOwnerUserEmail string `csv:"SecurityOwnerUserEmail"` + ID string `csv:"ID"` + Input generated.UpdatePlatformInput + BusinessOwnerGroupName string `csv:"BusinessOwnerGroupName"` + BusinessOwnerUserEmail string `csv:"BusinessOwnerUserEmail"` + InternalOwnerGroupName string `csv:"InternalOwnerGroupName"` + InternalOwnerUserEmail string `csv:"InternalOwnerUserEmail"` + PlatformOwnerEmail string `csv:"PlatformOwnerEmail"` + SecurityOwnerGroupName string `csv:"SecurityOwnerGroupName"` + SecurityOwnerUserEmail string `csv:"SecurityOwnerUserEmail"` TechnicalOwnerGroupName string `csv:"TechnicalOwnerGroupName"` TechnicalOwnerUserEmail string `csv:"TechnicalOwnerUserEmail"` } @@ -2361,8 +2423,8 @@ func (PlatformCSVUpdateInput) CSVInputWrapper() {} // ProcedureCSVInput wraps CreateProcedureInput with CSV reference columns. type ProcedureCSVInput struct { - Input generated.CreateProcedureInput - ApproverGroupName string `csv:"ApproverGroupName"` + Input generated.CreateProcedureInput + ApproverGroupName string `csv:"ApproverGroupName"` DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` } @@ -2372,9 +2434,9 @@ func (ProcedureCSVInput) CSVInputWrapper() {} // ProcedureCSVUpdateInput wraps UpdateProcedureInput with CSV reference columns for bulk updates. type ProcedureCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateProcedureInput - ApproverGroupName string `csv:"ApproverGroupName"` + ID string `csv:"ID"` + Input generated.UpdateProcedureInput + ApproverGroupName string `csv:"ApproverGroupName"` DocumentDelegateGroupName string `csv:"DocumentDelegateGroupName"` } @@ -2383,9 +2445,9 @@ func (ProcedureCSVUpdateInput) CSVInputWrapper() {} // ProgramCSVInput wraps CreateProgramInput with CSV reference columns. type ProgramCSVInput struct { - Input generated.CreateProgramInput - ControlRefCodes []string `csv:"ControlRefCodes"` - ProgramOwnerEmail string `csv:"ProgramOwnerEmail"` + Input generated.CreateProgramInput + ControlRefCodes []string `csv:"ControlRefCodes"` + ProgramOwnerEmail string `csv:"ProgramOwnerEmail"` } // CSVInputWrapper marks ProgramCSVInput for CSV header preprocessing. @@ -2394,10 +2456,10 @@ func (ProgramCSVInput) CSVInputWrapper() {} // ProgramCSVUpdateInput wraps UpdateProgramInput with CSV reference columns for bulk updates. type ProgramCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateProgramInput - ControlRefCodes []string `csv:"ControlRefCodes"` - ProgramOwnerEmail string `csv:"ProgramOwnerEmail"` + ID string `csv:"ID"` + Input generated.UpdateProgramInput + ControlRefCodes []string `csv:"ControlRefCodes"` + ProgramOwnerEmail string `csv:"ProgramOwnerEmail"` } // CSVInputWrapper marks ProgramCSVUpdateInput for CSV header preprocessing. @@ -2414,7 +2476,7 @@ func (ProgramMembershipCSVInput) CSVInputWrapper() {} // ProgramMembershipCSVUpdateInput wraps UpdateProgramMembershipInput with CSV reference columns for bulk updates. type ProgramMembershipCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateProgramMembershipInput } @@ -2423,7 +2485,7 @@ func (ProgramMembershipCSVUpdateInput) CSVInputWrapper() {} // RemediationCSVInput wraps CreateRemediationInput with CSV reference columns. type RemediationCSVInput struct { - Input generated.CreateRemediationInput + Input generated.CreateRemediationInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2433,8 +2495,8 @@ func (RemediationCSVInput) CSVInputWrapper() {} // RemediationCSVUpdateInput wraps UpdateRemediationInput with CSV reference columns for bulk updates. type RemediationCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateRemediationInput + ID string `csv:"ID"` + Input generated.UpdateRemediationInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2443,7 +2505,7 @@ func (RemediationCSVUpdateInput) CSVInputWrapper() {} // ReviewCSVInput wraps CreateReviewInput with CSV reference columns. type ReviewCSVInput struct { - Input generated.CreateReviewInput + Input generated.CreateReviewInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2453,8 +2515,8 @@ func (ReviewCSVInput) CSVInputWrapper() {} // ReviewCSVUpdateInput wraps UpdateReviewInput with CSV reference columns for bulk updates. type ReviewCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateReviewInput + ID string `csv:"ID"` + Input generated.UpdateReviewInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2463,10 +2525,10 @@ func (ReviewCSVUpdateInput) CSVInputWrapper() {} // RiskCSVInput wraps CreateRiskInput with CSV reference columns. type RiskCSVInput struct { - Input generated.CreateRiskInput - ControlRefCodes []string `csv:"ControlRefCodes"` - RiskDelegateGroupName string `csv:"RiskDelegateGroupName"` - StakeholderGroupName string `csv:"StakeholderGroupName"` + Input generated.CreateRiskInput + ControlRefCodes []string `csv:"ControlRefCodes"` + RiskDelegateGroupName string `csv:"RiskDelegateGroupName"` + StakeholderGroupName string `csv:"StakeholderGroupName"` } // CSVInputWrapper marks RiskCSVInput for CSV header preprocessing. @@ -2475,11 +2537,11 @@ func (RiskCSVInput) CSVInputWrapper() {} // RiskCSVUpdateInput wraps UpdateRiskInput with CSV reference columns for bulk updates. type RiskCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateRiskInput - ControlRefCodes []string `csv:"ControlRefCodes"` - RiskDelegateGroupName string `csv:"RiskDelegateGroupName"` - StakeholderGroupName string `csv:"StakeholderGroupName"` + ID string `csv:"ID"` + Input generated.UpdateRiskInput + ControlRefCodes []string `csv:"ControlRefCodes"` + RiskDelegateGroupName string `csv:"RiskDelegateGroupName"` + StakeholderGroupName string `csv:"StakeholderGroupName"` } // CSVInputWrapper marks RiskCSVUpdateInput for CSV header preprocessing. @@ -2487,14 +2549,14 @@ func (RiskCSVUpdateInput) CSVInputWrapper() {} // ScanCSVInput wraps CreateScanInput with CSV reference columns. type ScanCSVInput struct { - Input generated.CreateScanInput - AssignedToGroupName string `csv:"AssignedToGroupName"` - AssignedToUserEmail string `csv:"AssignedToUserEmail"` + Input generated.CreateScanInput + AssignedToGroupName string `csv:"AssignedToGroupName"` + AssignedToUserEmail string `csv:"AssignedToUserEmail"` GeneratedByPlatformName string `csv:"GeneratedByPlatformName"` - PerformedByGroupName string `csv:"PerformedByGroupName"` - PerformedByUserEmail string `csv:"PerformedByUserEmail"` - ReviewedByGroupName string `csv:"ReviewedByGroupName"` - ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` + PerformedByGroupName string `csv:"PerformedByGroupName"` + PerformedByUserEmail string `csv:"PerformedByUserEmail"` + ReviewedByGroupName string `csv:"ReviewedByGroupName"` + ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` } // CSVInputWrapper marks ScanCSVInput for CSV header preprocessing. @@ -2503,15 +2565,15 @@ func (ScanCSVInput) CSVInputWrapper() {} // ScanCSVUpdateInput wraps UpdateScanInput with CSV reference columns for bulk updates. type ScanCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateScanInput - AssignedToGroupName string `csv:"AssignedToGroupName"` - AssignedToUserEmail string `csv:"AssignedToUserEmail"` + ID string `csv:"ID"` + Input generated.UpdateScanInput + AssignedToGroupName string `csv:"AssignedToGroupName"` + AssignedToUserEmail string `csv:"AssignedToUserEmail"` GeneratedByPlatformName string `csv:"GeneratedByPlatformName"` - PerformedByGroupName string `csv:"PerformedByGroupName"` - PerformedByUserEmail string `csv:"PerformedByUserEmail"` - ReviewedByGroupName string `csv:"ReviewedByGroupName"` - ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` + PerformedByGroupName string `csv:"PerformedByGroupName"` + PerformedByUserEmail string `csv:"PerformedByUserEmail"` + ReviewedByGroupName string `csv:"ReviewedByGroupName"` + ReviewedByUserEmail string `csv:"ReviewedByUserEmail"` } // CSVInputWrapper marks ScanCSVUpdateInput for CSV header preprocessing. @@ -2519,7 +2581,7 @@ func (ScanCSVUpdateInput) CSVInputWrapper() {} // ScheduledJobCSVInput wraps CreateScheduledJobInput with CSV reference columns. type ScheduledJobCSVInput struct { - Input generated.CreateScheduledJobInput + Input generated.CreateScheduledJobInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2529,8 +2591,8 @@ func (ScheduledJobCSVInput) CSVInputWrapper() {} // ScheduledJobCSVUpdateInput wraps UpdateScheduledJobInput with CSV reference columns for bulk updates. type ScheduledJobCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateScheduledJobInput + ID string `csv:"ID"` + Input generated.UpdateScheduledJobInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2548,7 +2610,7 @@ func (ScheduledJobRunCSVInput) CSVInputWrapper() {} // ScheduledJobRunCSVUpdateInput wraps UpdateScheduledJobRunInput with CSV reference columns for bulk updates. type ScheduledJobRunCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateScheduledJobRunInput } @@ -2566,7 +2628,7 @@ func (StandardCSVInput) CSVInputWrapper() {} // StandardCSVUpdateInput wraps UpdateStandardInput with CSV reference columns for bulk updates. type StandardCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateStandardInput } @@ -2575,9 +2637,9 @@ func (StandardCSVUpdateInput) CSVInputWrapper() {} // SubcontrolCSVInput wraps CreateSubcontrolInput with CSV reference columns. type SubcontrolCSVInput struct { - Input generated.CreateSubcontrolInput - ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` - ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` + Input generated.CreateSubcontrolInput + ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` + ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` ResponsiblePartyEntityName string `csv:"ResponsiblePartyEntityName"` } @@ -2587,10 +2649,10 @@ func (SubcontrolCSVInput) CSVInputWrapper() {} // SubcontrolCSVUpdateInput wraps UpdateSubcontrolInput with CSV reference columns for bulk updates. type SubcontrolCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateSubcontrolInput - ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` - ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` + ID string `csv:"ID"` + Input generated.UpdateSubcontrolInput + ControlDelegateGroupName string `csv:"ControlDelegateGroupName"` + ControlOwnerGroupName string `csv:"ControlOwnerGroupName"` ResponsiblePartyEntityName string `csv:"ResponsiblePartyEntityName"` } @@ -2608,7 +2670,7 @@ func (SubprocessorCSVInput) CSVInputWrapper() {} // SubprocessorCSVUpdateInput wraps UpdateSubprocessorInput with CSV reference columns for bulk updates. type SubprocessorCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateSubprocessorInput } @@ -2626,7 +2688,7 @@ func (SubscriberCSVInput) CSVInputWrapper() {} // SubscriberCSVUpdateInput wraps UpdateSubscriberInput with CSV reference columns for bulk updates. type SubscriberCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateSubscriberInput } @@ -2644,7 +2706,7 @@ func (TFASettingCSVInput) CSVInputWrapper() {} // TFASettingCSVUpdateInput wraps UpdateTFASettingInput with CSV reference columns for bulk updates. type TFASettingCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTFASettingInput } @@ -2662,7 +2724,7 @@ func (TagDefinitionCSVInput) CSVInputWrapper() {} // TagDefinitionCSVUpdateInput wraps UpdateTagDefinitionInput with CSV reference columns for bulk updates. type TagDefinitionCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTagDefinitionInput } @@ -2671,9 +2733,9 @@ func (TagDefinitionCSVUpdateInput) CSVInputWrapper() {} // TaskCSVInput wraps CreateTaskInput with CSV reference columns. type TaskCSVInput struct { - Input generated.CreateTaskInput - AssigneeEmail string `csv:"AssigneeEmail"` - AssignerEmail string `csv:"AssignerEmail"` + Input generated.CreateTaskInput + AssigneeEmail string `csv:"AssigneeEmail"` + AssignerEmail string `csv:"AssignerEmail"` ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2683,10 +2745,10 @@ func (TaskCSVInput) CSVInputWrapper() {} // TaskCSVUpdateInput wraps UpdateTaskInput with CSV reference columns for bulk updates. type TaskCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateTaskInput - AssigneeEmail string `csv:"AssigneeEmail"` - AssignerEmail string `csv:"AssignerEmail"` + ID string `csv:"ID"` + Input generated.UpdateTaskInput + AssigneeEmail string `csv:"AssigneeEmail"` + AssignerEmail string `csv:"AssignerEmail"` ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2704,7 +2766,7 @@ func (TemplateCSVInput) CSVInputWrapper() {} // TemplateCSVUpdateInput wraps UpdateTemplateInput with CSV reference columns for bulk updates. type TemplateCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTemplateInput } @@ -2722,7 +2784,7 @@ func (TrustCenterCSVInput) CSVInputWrapper() {} // TrustCenterCSVUpdateInput wraps UpdateTrustCenterInput with CSV reference columns for bulk updates. type TrustCenterCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterInput } @@ -2740,7 +2802,7 @@ func (TrustCenterComplianceCSVInput) CSVInputWrapper() {} // TrustCenterComplianceCSVUpdateInput wraps UpdateTrustCenterComplianceInput with CSV reference columns for bulk updates. type TrustCenterComplianceCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterComplianceInput } @@ -2758,7 +2820,7 @@ func (TrustCenterDocCSVInput) CSVInputWrapper() {} // TrustCenterDocCSVUpdateInput wraps UpdateTrustCenterDocInput with CSV reference columns for bulk updates. type TrustCenterDocCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterDocInput } @@ -2776,7 +2838,7 @@ func (TrustCenterEntityCSVInput) CSVInputWrapper() {} // TrustCenterEntityCSVUpdateInput wraps UpdateTrustCenterEntityInput with CSV reference columns for bulk updates. type TrustCenterEntityCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterEntityInput } @@ -2794,7 +2856,7 @@ func (TrustCenterFAQCSVInput) CSVInputWrapper() {} // TrustCenterFAQCSVUpdateInput wraps UpdateTrustCenterFAQInput with CSV reference columns for bulk updates. type TrustCenterFAQCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterFAQInput } @@ -2812,7 +2874,7 @@ func (TrustCenterNDARequestCSVInput) CSVInputWrapper() {} // TrustCenterNDARequestCSVUpdateInput wraps UpdateTrustCenterNDARequestInput with CSV reference columns for bulk updates. type TrustCenterNDARequestCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterNDARequestInput } @@ -2830,7 +2892,7 @@ func (TrustCenterSettingCSVInput) CSVInputWrapper() {} // TrustCenterSettingCSVUpdateInput wraps UpdateTrustCenterSettingInput with CSV reference columns for bulk updates. type TrustCenterSettingCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterSettingInput } @@ -2848,7 +2910,7 @@ func (TrustCenterSubprocessorCSVInput) CSVInputWrapper() {} // TrustCenterSubprocessorCSVUpdateInput wraps UpdateTrustCenterSubprocessorInput with CSV reference columns for bulk updates. type TrustCenterSubprocessorCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterSubprocessorInput } @@ -2866,7 +2928,7 @@ func (TrustCenterWatermarkConfigCSVInput) CSVInputWrapper() {} // TrustCenterWatermarkConfigCSVUpdateInput wraps UpdateTrustCenterWatermarkConfigInput with CSV reference columns for bulk updates. type TrustCenterWatermarkConfigCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateTrustCenterWatermarkConfigInput } @@ -2884,7 +2946,7 @@ func (UserCSVInput) CSVInputWrapper() {} // UserCSVUpdateInput wraps UpdateUserInput with CSV reference columns for bulk updates. type UserCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateUserInput } @@ -2902,7 +2964,7 @@ func (UserSettingCSVInput) CSVInputWrapper() {} // UserSettingCSVUpdateInput wraps UpdateUserSettingInput with CSV reference columns for bulk updates. type UserSettingCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateUserSettingInput } @@ -2911,7 +2973,7 @@ func (UserSettingCSVUpdateInput) CSVInputWrapper() {} // VulnerabilityCSVInput wraps CreateVulnerabilityInput with CSV reference columns. type VulnerabilityCSVInput struct { - Input generated.CreateVulnerabilityInput + Input generated.CreateVulnerabilityInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2921,8 +2983,8 @@ func (VulnerabilityCSVInput) CSVInputWrapper() {} // VulnerabilityCSVUpdateInput wraps UpdateVulnerabilityInput with CSV reference columns for bulk updates. type VulnerabilityCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` - Input generated.UpdateVulnerabilityInput + ID string `csv:"ID"` + Input generated.UpdateVulnerabilityInput ControlRefCodes []string `csv:"ControlRefCodes"` } @@ -2940,7 +3002,7 @@ func (WorkflowDefinitionCSVInput) CSVInputWrapper() {} // WorkflowDefinitionCSVUpdateInput wraps UpdateWorkflowDefinitionInput with CSV reference columns for bulk updates. type WorkflowDefinitionCSVUpdateInput struct { // ID is the entity ID to update - ID string `csv:"ID"` + ID string `csv:"ID"` Input generated.UpdateWorkflowDefinitionInput } diff --git a/internal/ent/generated/control_update.go b/internal/ent/generated/control_update.go index a66852725a..bc783f3043 100644 --- a/internal/ent/generated/control_update.go +++ b/internal/ent/generated/control_update.go @@ -861,26 +861,6 @@ func (_u *ControlUpdate) ClearTrustCenterVisibility() *ControlUpdate { return _u } -// SetIsTrustCenterControl sets the "is_trust_center_control" field. -func (_u *ControlUpdate) SetIsTrustCenterControl(v bool) *ControlUpdate { - _u.mutation.SetIsTrustCenterControl(v) - return _u -} - -// SetNillableIsTrustCenterControl sets the "is_trust_center_control" field if the given value is not nil. -func (_u *ControlUpdate) SetNillableIsTrustCenterControl(v *bool) *ControlUpdate { - if v != nil { - _u.SetIsTrustCenterControl(*v) - } - return _u -} - -// ClearIsTrustCenterControl clears the value of the "is_trust_center_control" field. -func (_u *ControlUpdate) ClearIsTrustCenterControl() *ControlUpdate { - _u.mutation.ClearIsTrustCenterControl() - return _u -} - // AddEvidenceIDs adds the "evidence" edge to the Evidence entity by IDs. func (_u *ControlUpdate) AddEvidenceIDs(ids ...string) *ControlUpdate { _u.mutation.AddEvidenceIDs(ids...) @@ -2193,9 +2173,6 @@ func (_u *ControlUpdate) sqlSave(ctx context.Context) (_node int, err error) { if _u.mutation.TrustCenterVisibilityCleared() { _spec.ClearField(control.FieldTrustCenterVisibility, field.TypeEnum) } - if value, ok := _u.mutation.IsTrustCenterControl(); ok { - _spec.SetField(control.FieldIsTrustCenterControl, field.TypeBool, value) - } if _u.mutation.IsTrustCenterControlCleared() { _spec.ClearField(control.FieldIsTrustCenterControl, field.TypeBool) } @@ -4415,26 +4392,6 @@ func (_u *ControlUpdateOne) ClearTrustCenterVisibility() *ControlUpdateOne { return _u } -// SetIsTrustCenterControl sets the "is_trust_center_control" field. -func (_u *ControlUpdateOne) SetIsTrustCenterControl(v bool) *ControlUpdateOne { - _u.mutation.SetIsTrustCenterControl(v) - return _u -} - -// SetNillableIsTrustCenterControl sets the "is_trust_center_control" field if the given value is not nil. -func (_u *ControlUpdateOne) SetNillableIsTrustCenterControl(v *bool) *ControlUpdateOne { - if v != nil { - _u.SetIsTrustCenterControl(*v) - } - return _u -} - -// ClearIsTrustCenterControl clears the value of the "is_trust_center_control" field. -func (_u *ControlUpdateOne) ClearIsTrustCenterControl() *ControlUpdateOne { - _u.mutation.ClearIsTrustCenterControl() - return _u -} - // AddEvidenceIDs adds the "evidence" edge to the Evidence entity by IDs. func (_u *ControlUpdateOne) AddEvidenceIDs(ids ...string) *ControlUpdateOne { _u.mutation.AddEvidenceIDs(ids...) @@ -5777,9 +5734,6 @@ func (_u *ControlUpdateOne) sqlSave(ctx context.Context) (_node *Control, err er if _u.mutation.TrustCenterVisibilityCleared() { _spec.ClearField(control.FieldTrustCenterVisibility, field.TypeEnum) } - if value, ok := _u.mutation.IsTrustCenterControl(); ok { - _spec.SetField(control.FieldIsTrustCenterControl, field.TypeBool, value) - } if _u.mutation.IsTrustCenterControlCleared() { _spec.ClearField(control.FieldIsTrustCenterControl, field.TypeBool) } diff --git a/internal/ent/generated/migrate/schema.go b/internal/ent/generated/migrate/schema.go index d4682ebe92..15f374202b 100644 --- a/internal/ent/generated/migrate/schema.go +++ b/internal/ent/generated/migrate/schema.go @@ -4519,7 +4519,7 @@ var ( {Name: "data", Type: field.TypeJSON, Nullable: true}, {Name: "read_at", Type: field.TypeTime, Nullable: true}, {Name: "channels", Type: field.TypeJSON, Nullable: true}, - {Name: "topic", Type: field.TypeEnum, Nullable: true, Enums: []string{"TASK_ASSIGNMENT", "APPROVAL", "MENTION", "EXPORT"}}, + {Name: "topic", Type: field.TypeEnum, Nullable: true, Enums: []string{"TASK_ASSIGNMENT", "APPROVAL", "MENTION", "EXPORT", "STANDARD_UPDATE"}}, {Name: "template_id", Type: field.TypeString, Nullable: true}, {Name: "owner_id", Type: field.TypeString, Nullable: true}, {Name: "user_id", Type: field.TypeString, Nullable: true}, diff --git a/internal/ent/generated/notification/notification.go b/internal/ent/generated/notification/notification.go index 05fd613654..ef0f96e00a 100644 --- a/internal/ent/generated/notification/notification.go +++ b/internal/ent/generated/notification/notification.go @@ -154,7 +154,7 @@ func NotificationTypeValidator(nt enums.NotificationType) error { // TopicValidator is a validator for the "topic" field enum values. It is called by the builders before save. func TopicValidator(t enums.NotificationTopic) error { switch t.String() { - case "TASK_ASSIGNMENT", "APPROVAL", "MENTION", "EXPORT": + case "TASK_ASSIGNMENT", "APPROVAL", "MENTION", "EXPORT", "STANDARD_UPDATE": return nil default: return fmt.Errorf("notification: invalid enum value for topic field: %q", t) diff --git a/internal/ent/integrationgenerated/integration_mapping_generated.go b/internal/ent/integrationgenerated/integration_mapping_generated.go index 4435f1cd6a..ca955240be 100644 --- a/internal/ent/integrationgenerated/integration_mapping_generated.go +++ b/internal/ent/integrationgenerated/integration_mapping_generated.go @@ -3,20 +3,20 @@ package integrationgenerated // IntegrationMappingField describes an integration mapping target field. type IntegrationMappingField struct { - InputKey string - EntField string - Type string - Required bool + InputKey string + EntField string + Type string + Required bool UpsertKey bool } // IntegrationMappingSchema describes a schema with integration mapping fields. type IntegrationMappingSchema struct { - Name string - Fields []IntegrationMappingField - AllowedKeys map[string]struct{} + Name string + Fields []IntegrationMappingField + AllowedKeys map[string]struct{} RequiredKeys []string - UpsertKeys []string + UpsertKeys []string } const ( @@ -25,42 +25,42 @@ const ( // Integration mapping keys for Vulnerability. const ( - IntegrationMappingVulnerabilityBlocking = "blocking" - IntegrationMappingVulnerabilityCategory = "category" - IntegrationMappingVulnerabilityCveID = "cveID" - IntegrationMappingVulnerabilityDescription = "description" - IntegrationMappingVulnerabilityDiscoveredAt = "discoveredAt" - IntegrationMappingVulnerabilityDisplayName = "displayName" - IntegrationMappingVulnerabilityEnvironmentID = "environmentID" - IntegrationMappingVulnerabilityEnvironmentName = "environmentName" - IntegrationMappingVulnerabilityExploitability = "exploitability" - IntegrationMappingVulnerabilityExternalID = "externalID" - IntegrationMappingVulnerabilityExternalOwnerID = "externalOwnerID" - IntegrationMappingVulnerabilityExternalURI = "externalURI" - IntegrationMappingVulnerabilityImpact = "impact" - IntegrationMappingVulnerabilityImpacts = "impacts" - IntegrationMappingVulnerabilityInternalNotes = "internalNotes" - IntegrationMappingVulnerabilityMetadata = "metadata" - IntegrationMappingVulnerabilityOpen = "open" - IntegrationMappingVulnerabilityPriority = "priority" - IntegrationMappingVulnerabilityProduction = "production" - IntegrationMappingVulnerabilityPublic = "public" - IntegrationMappingVulnerabilityPublishedAt = "publishedAt" - IntegrationMappingVulnerabilityRawPayload = "rawPayload" - IntegrationMappingVulnerabilityReferences = "references" - IntegrationMappingVulnerabilityRemediationSLA = "remediationSLA" - IntegrationMappingVulnerabilityScopeID = "scopeID" - IntegrationMappingVulnerabilityScopeName = "scopeName" - IntegrationMappingVulnerabilityScore = "score" - IntegrationMappingVulnerabilitySeverity = "severity" - IntegrationMappingVulnerabilitySource = "source" - IntegrationMappingVulnerabilitySourceUpdatedAt = "sourceUpdatedAt" - IntegrationMappingVulnerabilityStatus = "status" - IntegrationMappingVulnerabilitySummary = "summary" + IntegrationMappingVulnerabilityBlocking = "blocking" + IntegrationMappingVulnerabilityCategory = "category" + IntegrationMappingVulnerabilityCveID = "cveID" + IntegrationMappingVulnerabilityDescription = "description" + IntegrationMappingVulnerabilityDiscoveredAt = "discoveredAt" + IntegrationMappingVulnerabilityDisplayName = "displayName" + IntegrationMappingVulnerabilityEnvironmentID = "environmentID" + IntegrationMappingVulnerabilityEnvironmentName = "environmentName" + IntegrationMappingVulnerabilityExploitability = "exploitability" + IntegrationMappingVulnerabilityExternalID = "externalID" + IntegrationMappingVulnerabilityExternalOwnerID = "externalOwnerID" + IntegrationMappingVulnerabilityExternalURI = "externalURI" + IntegrationMappingVulnerabilityImpact = "impact" + IntegrationMappingVulnerabilityImpacts = "impacts" + IntegrationMappingVulnerabilityInternalNotes = "internalNotes" + IntegrationMappingVulnerabilityMetadata = "metadata" + IntegrationMappingVulnerabilityOpen = "open" + IntegrationMappingVulnerabilityPriority = "priority" + IntegrationMappingVulnerabilityProduction = "production" + IntegrationMappingVulnerabilityPublic = "public" + IntegrationMappingVulnerabilityPublishedAt = "publishedAt" + IntegrationMappingVulnerabilityRawPayload = "rawPayload" + IntegrationMappingVulnerabilityReferences = "references" + IntegrationMappingVulnerabilityRemediationSLA = "remediationSLA" + IntegrationMappingVulnerabilityScopeID = "scopeID" + IntegrationMappingVulnerabilityScopeName = "scopeName" + IntegrationMappingVulnerabilityScore = "score" + IntegrationMappingVulnerabilitySeverity = "severity" + IntegrationMappingVulnerabilitySource = "source" + IntegrationMappingVulnerabilitySourceUpdatedAt = "sourceUpdatedAt" + IntegrationMappingVulnerabilityStatus = "status" + IntegrationMappingVulnerabilitySummary = "summary" IntegrationMappingVulnerabilitySystemInternalID = "systemInternalID" - IntegrationMappingVulnerabilityTags = "tags" - IntegrationMappingVulnerabilityValidated = "validated" - IntegrationMappingVulnerabilityVector = "vector" + IntegrationMappingVulnerabilityTags = "tags" + IntegrationMappingVulnerabilityValidated = "validated" + IntegrationMappingVulnerabilityVector = "vector" ) // IntegrationMappingSchemas maps schema names to their mapping metadata. @@ -69,295 +69,295 @@ var IntegrationMappingSchemas = map[string]IntegrationMappingSchema{ Name: "Vulnerability", Fields: []IntegrationMappingField{ { - InputKey: "blocking", - EntField: "blocking", - Type: "bool", - Required: false, + InputKey: "blocking", + EntField: "blocking", + Type: "bool", + Required: false, UpsertKey: false, }, { - InputKey: "category", - EntField: "category", - Type: "string", - Required: false, + InputKey: "category", + EntField: "category", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "cveID", - EntField: "cve_id", - Type: "string", - Required: false, + InputKey: "cveID", + EntField: "cve_id", + Type: "string", + Required: false, UpsertKey: true, }, { - InputKey: "description", - EntField: "description", - Type: "string", - Required: false, + InputKey: "description", + EntField: "description", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "discoveredAt", - EntField: "discovered_at", - Type: "time.Time", - Required: false, + InputKey: "discoveredAt", + EntField: "discovered_at", + Type: "time.Time", + Required: false, UpsertKey: false, }, { - InputKey: "displayName", - EntField: "display_name", - Type: "string", - Required: false, + InputKey: "displayName", + EntField: "display_name", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "environmentID", - EntField: "environment_id", - Type: "string", - Required: false, + InputKey: "environmentID", + EntField: "environment_id", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "environmentName", - EntField: "environment_name", - Type: "string", - Required: false, + InputKey: "environmentName", + EntField: "environment_name", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "exploitability", - EntField: "exploitability", - Type: "float64", - Required: false, + InputKey: "exploitability", + EntField: "exploitability", + Type: "float64", + Required: false, UpsertKey: false, }, { - InputKey: "externalID", - EntField: "external_id", - Type: "string", - Required: true, + InputKey: "externalID", + EntField: "external_id", + Type: "string", + Required: true, UpsertKey: true, }, { - InputKey: "externalOwnerID", - EntField: "external_owner_id", - Type: "string", - Required: false, + InputKey: "externalOwnerID", + EntField: "external_owner_id", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "externalURI", - EntField: "external_uri", - Type: "string", - Required: false, + InputKey: "externalURI", + EntField: "external_uri", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "impact", - EntField: "impact", - Type: "float64", - Required: false, + InputKey: "impact", + EntField: "impact", + Type: "float64", + Required: false, UpsertKey: false, }, { - InputKey: "impacts", - EntField: "impacts", - Type: "json.RawMessage", - Required: false, + InputKey: "impacts", + EntField: "impacts", + Type: "json.RawMessage", + Required: false, UpsertKey: false, }, { - InputKey: "internalNotes", - EntField: "internal_notes", - Type: "string", - Required: false, + InputKey: "internalNotes", + EntField: "internal_notes", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "metadata", - EntField: "metadata", - Type: "json.RawMessage", - Required: false, + InputKey: "metadata", + EntField: "metadata", + Type: "json.RawMessage", + Required: false, UpsertKey: false, }, { - InputKey: "open", - EntField: "open", - Type: "bool", - Required: false, + InputKey: "open", + EntField: "open", + Type: "bool", + Required: false, UpsertKey: false, }, { - InputKey: "priority", - EntField: "priority", - Type: "string", - Required: false, + InputKey: "priority", + EntField: "priority", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "production", - EntField: "production", - Type: "bool", - Required: false, + InputKey: "production", + EntField: "production", + Type: "bool", + Required: false, UpsertKey: false, }, { - InputKey: "public", - EntField: "public", - Type: "bool", - Required: false, + InputKey: "public", + EntField: "public", + Type: "bool", + Required: false, UpsertKey: false, }, { - InputKey: "publishedAt", - EntField: "published_at", - Type: "time.Time", - Required: false, + InputKey: "publishedAt", + EntField: "published_at", + Type: "time.Time", + Required: false, UpsertKey: false, }, { - InputKey: "rawPayload", - EntField: "raw_payload", - Type: "json.RawMessage", - Required: false, + InputKey: "rawPayload", + EntField: "raw_payload", + Type: "json.RawMessage", + Required: false, UpsertKey: false, }, { - InputKey: "references", - EntField: "references", - Type: "json.RawMessage", - Required: false, + InputKey: "references", + EntField: "references", + Type: "json.RawMessage", + Required: false, UpsertKey: false, }, { - InputKey: "remediationSLA", - EntField: "remediation_sla", - Type: "int", - Required: false, + InputKey: "remediationSLA", + EntField: "remediation_sla", + Type: "int", + Required: false, UpsertKey: false, }, { - InputKey: "scopeID", - EntField: "scope_id", - Type: "string", - Required: false, + InputKey: "scopeID", + EntField: "scope_id", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "scopeName", - EntField: "scope_name", - Type: "string", - Required: false, + InputKey: "scopeName", + EntField: "scope_name", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "score", - EntField: "score", - Type: "float64", - Required: false, + InputKey: "score", + EntField: "score", + Type: "float64", + Required: false, UpsertKey: false, }, { - InputKey: "severity", - EntField: "severity", - Type: "string", - Required: false, + InputKey: "severity", + EntField: "severity", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "source", - EntField: "source", - Type: "string", - Required: false, + InputKey: "source", + EntField: "source", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "sourceUpdatedAt", - EntField: "source_updated_at", - Type: "time.Time", - Required: false, + InputKey: "sourceUpdatedAt", + EntField: "source_updated_at", + Type: "time.Time", + Required: false, UpsertKey: false, }, { - InputKey: "status", - EntField: "status", - Type: "string", - Required: false, + InputKey: "status", + EntField: "status", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "summary", - EntField: "summary", - Type: "string", - Required: false, + InputKey: "summary", + EntField: "summary", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "systemInternalID", - EntField: "system_internal_id", - Type: "string", - Required: false, + InputKey: "systemInternalID", + EntField: "system_internal_id", + Type: "string", + Required: false, UpsertKey: false, }, { - InputKey: "tags", - EntField: "tags", - Type: "json.RawMessage", - Required: false, + InputKey: "tags", + EntField: "tags", + Type: "json.RawMessage", + Required: false, UpsertKey: false, }, { - InputKey: "validated", - EntField: "validated", - Type: "bool", - Required: false, + InputKey: "validated", + EntField: "validated", + Type: "bool", + Required: false, UpsertKey: false, }, { - InputKey: "vector", - EntField: "vector", - Type: "string", - Required: false, + InputKey: "vector", + EntField: "vector", + Type: "string", + Required: false, UpsertKey: false, }, }, AllowedKeys: map[string]struct{}{ - "blocking": {}, - "category": {}, - "cveID": {}, - "description": {}, - "discoveredAt": {}, - "displayName": {}, - "environmentID": {}, - "environmentName": {}, - "exploitability": {}, - "externalID": {}, - "externalOwnerID": {}, - "externalURI": {}, - "impact": {}, - "impacts": {}, - "internalNotes": {}, - "metadata": {}, - "open": {}, - "priority": {}, - "production": {}, - "public": {}, - "publishedAt": {}, - "rawPayload": {}, - "references": {}, - "remediationSLA": {}, - "scopeID": {}, - "scopeName": {}, - "score": {}, - "severity": {}, - "source": {}, - "sourceUpdatedAt": {}, - "status": {}, - "summary": {}, + "blocking": {}, + "category": {}, + "cveID": {}, + "description": {}, + "discoveredAt": {}, + "displayName": {}, + "environmentID": {}, + "environmentName": {}, + "exploitability": {}, + "externalID": {}, + "externalOwnerID": {}, + "externalURI": {}, + "impact": {}, + "impacts": {}, + "internalNotes": {}, + "metadata": {}, + "open": {}, + "priority": {}, + "production": {}, + "public": {}, + "publishedAt": {}, + "rawPayload": {}, + "references": {}, + "remediationSLA": {}, + "scopeID": {}, + "scopeName": {}, + "score": {}, + "severity": {}, + "source": {}, + "sourceUpdatedAt": {}, + "status": {}, + "summary": {}, "systemInternalID": {}, - "tags": {}, - "validated": {}, - "vector": {}, + "tags": {}, + "validated": {}, + "vector": {}, }, RequiredKeys: []string{ "externalID", diff --git a/internal/ent/interceptors/auditlogs.go b/internal/ent/interceptors/auditlogs.go index 669ef3b368..d68642ec7a 100644 --- a/internal/ent/interceptors/auditlogs.go +++ b/internal/ent/interceptors/auditlogs.go @@ -13,13 +13,12 @@ import ( "github.com/theopenlane/iam/auth" "github.com/theopenlane/core/internal/ent/generated" - "github.com/theopenlane/core/internal/ent/generated/intercept" "github.com/theopenlane/core/internal/ent/privacy/utils" ) // HistoryAccess is a traversal interceptor that checks if the user has the required role for the organization func HistoryAccess(relation string, orgOwned, userOwed bool, objectOwner string) ent.Interceptor { - return intercept.TraverseFunc(func(ctx context.Context, q intercept.Query) error { + return TraverseFunc(func(ctx context.Context, q Query) error { au, err := auth.GetAuthenticatedUserFromContext(ctx) if err != nil { return err @@ -71,7 +70,7 @@ func HistoryAccess(relation string, orgOwned, userOwed bool, objectOwner string) } // addFilter adds a filter to the query based on the authenticated user's organization -func addFilter(ctx context.Context, q intercept.Query, orgOwned, userOwed bool, allowedOrgs []string) error { +func addFilter(ctx context.Context, q Query, orgOwned, userOwed bool, allowedOrgs []string) error { userID, err := auth.GetSubjectIDFromContext(ctx) if err != nil { return err diff --git a/internal/ent/notifications/consts.go b/internal/ent/notifications/consts.go index da4e8cf33a..8644ccdffb 100644 --- a/internal/ent/notifications/consts.go +++ b/internal/ent/notifications/consts.go @@ -13,6 +13,7 @@ const ( riskURLPath = "risks/%s" taskURLPath = "tasks?id=%s" controlURLPath = "controls/%s" + standardURLPath = "standards/%s" evidenceURLPath = "evidence?id=%s" trustCenterNDA = "trust-center/NDAs" ) @@ -34,6 +35,8 @@ func getURLPathForObject(base, objectID, objectType string) string { return base + fmt.Sprintf(taskURLPath, objectID) case generated.TypeControl: return base + fmt.Sprintf(controlURLPath, objectID) + case generated.TypeStandard: + return base + fmt.Sprintf(standardURLPath, objectID) case generated.TypeEvidence: return base + fmt.Sprintf(evidenceURLPath, objectID) case generated.TypeTrustCenterNDARequest: diff --git a/internal/ent/notifications/events.go b/internal/ent/notifications/events.go index f76a13096d..af92be9f39 100644 --- a/internal/ent/notifications/events.go +++ b/internal/ent/notifications/events.go @@ -558,5 +558,10 @@ func RegisterGalaListeners(registry *gala.Registry) ([]gala.ListenerID, error) { Name: "notifications.export", Handle: handleExportMutation, }, + gala.Definition[eventqueue.MutationGalaPayload]{ + Topic: eventqueue.MutationTopic(eventqueue.MutationConcernNotification, generated.TypeStandard), + Name: "notifications.standard_update", + Handle: handleStandardMutation, + }, ) } diff --git a/internal/ent/notifications/events_test.go b/internal/ent/notifications/events_test.go index f489b0d5a2..4b903782b2 100644 --- a/internal/ent/notifications/events_test.go +++ b/internal/ent/notifications/events_test.go @@ -207,7 +207,7 @@ func TestRegisterGalaListeners(t *testing.T) { ids, err := RegisterGalaListeners(registry) require.NoError(t, err) - require.Len(t, ids, 6) + require.Len(t, ids, 7) assert.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, generated.TypeTask), "create")) assert.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, generated.TypeInternalPolicy), "update")) @@ -215,6 +215,7 @@ func TestRegisterGalaListeners(t *testing.T) { assert.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, generated.TypeProcedure), "update_one")) assert.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, generated.TypeNote), "create")) assert.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, generated.TypeExport), "update")) + assert.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, generated.TypeStandard), "update")) } func TestErrorConstants(t *testing.T) { diff --git a/internal/ent/notifications/standard_update.go b/internal/ent/notifications/standard_update.go new file mode 100644 index 0000000000..a9c5060b57 --- /dev/null +++ b/internal/ent/notifications/standard_update.go @@ -0,0 +1,200 @@ +package notifications + +import ( + "context" + "fmt" + + "github.com/samber/lo" + "github.com/theopenlane/iam/auth" + + "github.com/theopenlane/core/common/enums" + "github.com/theopenlane/core/common/models" + "github.com/theopenlane/core/internal/ent/eventqueue" + "github.com/theopenlane/core/internal/ent/generated" + "github.com/theopenlane/core/internal/ent/generated/control" + "github.com/theopenlane/core/internal/ent/generated/orgmembership" + "github.com/theopenlane/core/internal/ent/generated/privacy" + "github.com/theopenlane/core/internal/ent/generated/standard" + "github.com/theopenlane/core/pkg/gala" + "github.com/theopenlane/core/pkg/logx" +) + +// handleStandardMutation processes standard mutations and creates notifications +// for org admins when a system-owned standard revision is bumped up +func handleStandardMutation(ctx gala.HandlerContext, payload eventqueue.MutationGalaPayload) error { + if !isUpdateOperation(payload.Operation) { + return nil + } + + if !eventqueue.MutationFieldChanged(payload, standard.FieldRevision) { + return nil + } + + client, ok := eventqueue.ClientFromHandler(ctx) + if !ok { + return ErrFailedToGetClient + } + + props := ctx.Envelope.Headers.Properties + + standardID, ok := eventqueue.MutationEntityID(payload, props) + if !ok { + return ErrEntityIDNotFound + } + + allowCtx := privacy.DecisionContext(ctx.Context, privacy.Allow) + + std, err := client.Standard.Get(allowCtx, standardID) + if err != nil { + return fmt.Errorf("failed to query standard: %w", err) + } + + if !std.SystemOwned { + return nil + } + + type standardControl struct { + OwnerID string `json:"owner_id"` + ReferenceFrameworkRevision *string `json:"reference_framework_revision"` + } + + var controls []standardControl + + err = client.Control.Query(). + Where( + control.StandardID(standardID), + control.OwnerIDNotNil(), + ). + Select( + control.FieldOwnerID, + control.FieldReferenceFrameworkRevision, + ). + Scan(allowCtx, &controls) + if err != nil { + return fmt.Errorf("failed to query controls for standard: %w", err) + } + + if len(controls) == 0 { + return nil + } + + filteredControls := lo.Filter(controls, func(c standardControl, _ int) bool { + return c.OwnerID != "" + }) + + type organizations struct { + revision string + controlCount int + } + + groups := lo.GroupBy(filteredControls, func(c standardControl) string { + return c.OwnerID + }) + + orgMap := lo.MapValues(groups, func(cs []standardControl, _ string) organizations { + return organizations{ + revision: lo.FromPtrOr(cs[0].ReferenceFrameworkRevision, ""), + controlCount: len(cs), + } + }) + + significantOrgs := lo.PickBy(orgMap, func(_ string, info organizations) bool { + return detectVersionBump(info.revision, std.Revision) != "" + }) + + consoleURL := client.EntConfig.Notifications.ConsoleURL + + lo.ForEach(lo.Entries(significantOrgs), func(entry lo.Entry[string, organizations], _ int) { + orgID := entry.Key + value := entry.Value + + ids, err := fetchOrgAdminsAndOwners(allowCtx, client, orgID) + if err != nil { + logx.FromContext(ctx.Context).Error().Err(err). + Str("org_id", orgID). + Msg("failed to get org admin and owner IDs") + + return + } + + if len(ids) == 0 { + return + } + + data := map[string]any{ + "url": getURLPathForObject(consoleURL, standardID, generated.TypeStandard), + "standard_id": standardID, + "standard_short_name": std.ShortName, + "old_revision": value.revision, + "new_revision": std.Revision, + "change_type": detectVersionBump(value.revision, std.Revision), + "affected_controls_count": value.controlCount, + } + + topic := enums.NotificationTopicStandardUpdate + notifInput := &generated.CreateNotificationInput{ + NotificationType: enums.NotificationTypeOrganization, + Title: fmt.Sprintf("%s update available", std.ShortName), + Body: fmt.Sprintf("%s has been updated to %s", std.ShortName, std.Revision), + Data: data, + OwnerID: &orgID, + Topic: &topic, + ObjectType: generated.TypeStandard, + } + + notificationCtx := auth.WithAuthenticatedUser(ctx.Context, &auth.AuthenticatedUser{ + SubjectID: ids[0], + OrganizationID: orgID, + OrganizationIDs: []string{orgID}, + }) + + if err := newNotificationCreation(notificationCtx, client, ids, notifInput); err != nil { + logx.FromContext(ctx.Context).Error().Err(err). + Str("org_id", orgID). + Msg("failed to create standard update notification") + + return + } + }) + + return nil +} + +func fetchOrgAdminsAndOwners(ctx context.Context, client *generated.Client, orgID string) ([]string, error) { + var ids []string + + err := client.OrgMembership.Query(). + Where( + orgmembership.OrganizationIDEQ(orgID), + orgmembership.RoleIn(enums.RoleOwner, enums.RoleAdmin), + ). + Select(orgmembership.FieldUserID). + Scan(ctx, &ids) + if err != nil { + return nil, err + } + + return ids, nil +} + +func detectVersionBump(oldRevision, newRevision string) string { + oldVersion, err := models.ToSemverVersion(&oldRevision) + if err != nil { + return "major" + } + + newVersion, err := models.ToSemverVersion(&newRevision) + if err != nil { + return "major" + } + + if oldVersion.Major != newVersion.Major { + return "major" + } + + if oldVersion.Minor != newVersion.Minor { + return "minor" + } + + return "" +} diff --git a/internal/ent/notifications/standard_update_test.go b/internal/ent/notifications/standard_update_test.go new file mode 100644 index 0000000000..49905ed447 --- /dev/null +++ b/internal/ent/notifications/standard_update_test.go @@ -0,0 +1,71 @@ +package notifications + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestDetectVersionBump(t *testing.T) { + tests := []struct { + name string + oldRevision string + newRevision string + expected string + }{ + { + name: "major bump", + oldRevision: "v1.0.0", + newRevision: "v2.0.0", + expected: "major", + }, + { + name: "minor bump", + oldRevision: "v1.0.0", + newRevision: "v1.1.0", + expected: "minor", + }, + { + name: "patch only bump", + oldRevision: "v1.0.0", + newRevision: "v1.0.1", + expected: "", + }, + { + name: "same version", + oldRevision: "v1.2.3", + newRevision: "v1.2.3", + expected: "", + }, + { + name: "major and minor bump", + oldRevision: "v1.2.3", + newRevision: "v2.0.0", + expected: "major", + }, + { + name: "prerelease to release minor bump", + oldRevision: "v1.0.0-draft", + newRevision: "v1.1.0", + expected: "minor", + }, + { + name: "prerelease same major minor", + oldRevision: "v1.0.0", + newRevision: "v1.0.1-draft", + expected: "", + }, + { + name: "empty old revision", + oldRevision: "", + newRevision: "v1.0.0", + expected: "major", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + assert.Equal(t, tt.expected, detectVersionBump(tt.oldRevision, tt.newRevision)) + }) + } +} diff --git a/internal/graphapi/checksum/.history_schema_checksum b/internal/graphapi/checksum/.history_schema_checksum index 366f496c85..d95d0a5e80 100644 --- a/internal/graphapi/checksum/.history_schema_checksum +++ b/internal/graphapi/checksum/.history_schema_checksum @@ -1 +1 @@ -4911786de34f0a2a06b492b78e357729c520e27fd91d62d27e70f4ae0017205f +e456ec9fddc109e1c2ca34f0353d2e56bfd5a4eeb85bb6a4eba28d76b33985ff \ No newline at end of file diff --git a/internal/graphapi/checksum/.schema_checksum b/internal/graphapi/checksum/.schema_checksum index 115e311fe5..d85c462b61 100644 --- a/internal/graphapi/checksum/.schema_checksum +++ b/internal/graphapi/checksum/.schema_checksum @@ -1 +1 @@ -5908dc5f4c8f1271881842cf19c60ad6dfceefb71685f0aae88ebbe06b19f9e8 +55722c7460c34967c1a15453e9a65782686d0865b849d826c68784bde78e3d19 \ No newline at end of file diff --git a/internal/graphapi/clientschema/checksum/.schema_checksum b/internal/graphapi/clientschema/checksum/.schema_checksum index 635572cf96..81bbf57d85 100644 --- a/internal/graphapi/clientschema/checksum/.schema_checksum +++ b/internal/graphapi/clientschema/checksum/.schema_checksum @@ -1 +1 @@ -a08f4dccdf6401aadcbaa3711bedb58217763251e05245a451d8a04b3a707fc3 +8af1abbe81ea58a12f0b4981aefbf6f2e2cd5ddbe698a4d6a227d561f0759b51 \ No newline at end of file diff --git a/internal/graphapi/clientschema/schema.graphql b/internal/graphapi/clientschema/schema.graphql index d2fc6e3862..7f680788a0 100644 --- a/internal/graphapi/clientschema/schema.graphql +++ b/internal/graphapi/clientschema/schema.graphql @@ -7727,6 +7727,23 @@ enum ControlCategoryOrderField { referenceFramework } """ +ControlChange describes the diffs for a single control identified by refCode +""" +type ControlChange { + """ + The ref_code of the control + """ + refCode: String! + """ + The title of the control at the new revision + """ + title: String! + """ + Field-level diffs for this control + """ + diffs: [ControlFieldDiff!]! +} +""" A connection to a list of items. """ type ControlConnection { @@ -7783,6 +7800,44 @@ type ControlDeletePayload { deletedID: ID! } """ +ControlDiffInput is used to compare all controls under a standard across two revisions +""" +input ControlDiffInput { + """ + ID of the standard to compare controls for + """ + standardID: ID! + """ + base revision to compare from (e.g. "v1.0.0") + """ + oldRevision: String! + """ + target revision to compare to (e.g. "v2.0.0") + """ + newRevision: String! +} +""" +ControlDiffPayload contains the field-level diffs between two revisions of all controls under a standard +""" +type ControlDiffPayload { + """ + The standard ID being compared + """ + standardID: ID! + """ + The base revision + """ + oldRevision: String! + """ + The target revision + """ + newRevision: String! + """ + Per-control changes between the two revisions + """ + changes: [ControlChange!]! +} +""" An edge in a connection. """ type ControlEdge { @@ -7795,6 +7850,27 @@ type ControlEdge { """ cursor: Cursor! } +""" +ControlFieldDiff describes a single field that differs between two control revisions +""" +type ControlFieldDiff { + """ + Field name (snake_case) + """ + field: String! + """ + Value in the old revision + """ + oldValue: Any + """ + Value in the new revision + """ + newValue: Any + """ + Unified diff text when applicable + """ + diff: String +} type ControlGroup { category: String! controls: ControlConnection! @@ -46444,6 +46520,7 @@ enum NotificationNotificationTopic @goModel(model: "github.com/theopenlane/core/ APPROVAL MENTION EXPORT + STANDARD_UPDATE } """ NotificationNotificationType is enum for the field notification_type @@ -60848,6 +60925,10 @@ type Query { id: ID! ): Control! """ + Compare a system-owned control between two framework revisions to see which fields changed + """ + controlDiff(input: ControlDiffInput!): ControlDiffPayload! + """ All existing categories or domains used in the organization @deprecated """ controlCategories: [String!] diff --git a/internal/graphapi/controldiff_helpers.go b/internal/graphapi/controldiff_helpers.go new file mode 100644 index 0000000000..214d9ed713 --- /dev/null +++ b/internal/graphapi/controldiff_helpers.go @@ -0,0 +1,248 @@ +package graphapi + +import ( + "context" + "fmt" + "time" + + "entgo.io/ent/dialect/sql" + "github.com/rs/zerolog/log" + "github.com/samber/lo" + + "github.com/theopenlane/core/internal/ent/generated/privacy" + historygenerated "github.com/theopenlane/core/internal/ent/historygenerated" + "github.com/theopenlane/core/internal/ent/historygenerated/controlhistory" + "github.com/theopenlane/core/internal/ent/historygenerated/standardhistory" + "github.com/theopenlane/core/internal/graphapi/common" + "github.com/theopenlane/core/internal/graphapi/model" + "github.com/theopenlane/core/pkg/jsonx" +) + +var controlDiffFields = []string{ + "title", + "description", + "description_json", + "aliases", + "category", + "subcategory", + "mapped_categories", + "assessment_objectives", + "assessment_methods", + "control_questions", + "implementation_guidance", + "example_evidence", + "references", + "testing_procedures", + "evidence_requests", +} + +func (r *Resolver) controlDiff(ctx context.Context, input model.ControlDiffInput) (*model.ControlDiffPayload, error) { + historyClient := r.db.HistoryClient + if historyClient == nil { + return nil, fmt.Errorf("history client not configured") //nolint:err113 + } + + oldRevisionTime, err := getTimestampOfRevision(ctx, historyClient, input.StandardID, input.OldRevision) + if err != nil { + return nil, err + } + + newRevisionTime, err := getTimestampOfRevision(ctx, historyClient, input.StandardID, input.NewRevision) + if err != nil { + return nil, err + } + + revisionDiffCutoff, err := getNextTimestampOfRevison(ctx, historyClient, input.StandardID, input.NewRevision, newRevisionTime) + if err != nil { + return nil, err + } + + log.Debug().Str("standard_id", input.StandardID). + Time("old_revision_time", oldRevisionTime).Time("new_revision_time", newRevisionTime). + Time("revision_diff_cutoff", revisionDiffCutoff). + Msg("control diffing timestamps") + + allowCtx := privacy.DecisionContext(ctx, privacy.Allow) + + oldSnapshots, err := getControlHistories(allowCtx, historyClient, input.StandardID, oldRevisionTime) + if err != nil { + return nil, err + } + + newSnapshots, err := getControlHistories(allowCtx, historyClient, input.StandardID, revisionDiffCutoff) + if err != nil { + return nil, err + } + + oldByRef := getFirstControlByRefCode(oldSnapshots) + newByRef := getFirstControlByRefCode(newSnapshots) + + controlChanges, err := detectAndBuildControlChanges(oldByRef, newByRef) + if err != nil { + return nil, err + } + + return &model.ControlDiffPayload{ + StandardID: input.StandardID, + OldRevision: input.OldRevision, + NewRevision: input.NewRevision, + Changes: controlChanges, + }, nil +} + +func getTimestampOfRevision(ctx context.Context, hc *historygenerated.Client, standardID, revision string) (time.Time, error) { + history, err := hc.StandardHistory.Query(). + Where( + standardhistory.Ref(standardID), + standardhistory.Revision(revision), + ). + Order(standardhistory.ByHistoryTime(sql.OrderDesc())). + First(ctx) + if err != nil { + return time.Time{}, parseRequestError(ctx, err, common.Action{Action: common.ActionGet, Object: "standard history"}) + } + + return history.HistoryTime, nil +} + +// getNextTimestampOfRevison finds the timestamp of the next standard revision change +// after afterTime. if the current revision is still the latest, returns time.Now(). +func getNextTimestampOfRevison( + ctx context.Context, hc *historygenerated.Client, standardID, currentRevision string, pastTime time.Time) (time.Time, error) { + history, err := hc.StandardHistory.Query(). + Where( + standardhistory.Ref(standardID), + standardhistory.HistoryTimeGT(pastTime), + standardhistory.RevisionNEQ(currentRevision), + ). + Order(standardhistory.ByHistoryTime(sql.OrderAsc())). + First(ctx) + if err != nil { + if historygenerated.IsNotFound(err) { + return time.Now(), nil + } + + return time.Time{}, parseRequestError(ctx, err, common.Action{Action: common.ActionGet, Object: "standard history"}) + } + + return history.HistoryTime, nil +} + +func getControlHistories(ctx context.Context, hc *historygenerated.Client, standardID string, timestamp time.Time) ([]*historygenerated.ControlHistory, error) { + controlHistories, err := hc.ControlHistory.Query(). + Where( + controlhistory.StandardIDEQ(standardID), + controlhistory.HistoryTimeLTE(timestamp), + ). + Order( + controlhistory.ByHistoryTime(sql.OrderDesc()), + controlhistory.ByID(sql.OrderDesc()), + ). + All(ctx) + if err != nil { + return nil, parseRequestError(ctx, err, common.Action{Action: common.ActionGet, Object: "control history"}) + } + + return lo.UniqBy(controlHistories, func(ch *historygenerated.ControlHistory) string { + return ch.Ref + }), nil +} + +func detectAndBuildControlChanges(oldControlsByRefCode, newControlsByRefCode map[string]*historygenerated.ControlHistory) ([]*model.ControlChange, error) { + var changes []*model.ControlChange + + for code, control := range newControlsByRefCode { + oldRec, ok := oldControlsByRefCode[code] + if !ok { + continue + } + + diffs, err := diffControlHistories(oldRec, control) + if err != nil { + return nil, err + } + + if len(diffs) == 0 { + continue + } + + changes = append(changes, &model.ControlChange{ + RefCode: code, + Title: control.Title, + Diffs: diffs, + }) + } + + if changes == nil { + changes = []*model.ControlChange{} + } + + return changes, nil +} + +func getFirstControlByRefCode(snapshots []*historygenerated.ControlHistory) map[string]*historygenerated.ControlHistory { + out := make(map[string]*historygenerated.ControlHistory, len(snapshots)) + + for _, s := range snapshots { + if _, exists := out[s.RefCode]; !exists { + out[s.RefCode] = s + } + } + + return out +} + +func diffControlHistories(old, newControls *historygenerated.ControlHistory) ([]*model.ControlFieldDiff, error) { + oldMap, err := jsonx.ToMap(old) + if err != nil { + return nil, fmt.Errorf("failed to serialize old control history: %w", err) + } + + newMap, err := jsonx.ToMap(newControls) + if err != nil { + return nil, fmt.Errorf("failed to serialize new control history: %w", err) + } + + diffs := lo.FilterMap(controlDiffFields, func(field string, _ int) (*model.ControlFieldDiff, bool) { + oldVal := oldMap[field] + newVal := newMap[field] + + if controlDiffValuesEqual(oldVal, newVal) { + return nil, false + } + + diff := &model.ControlFieldDiff{ + Field: field, + OldValue: oldVal, + NewValue: newVal, + } + + diffText := workflowProposalDiff(oldVal, newVal) + if diffText != "" { + diff.Diff = &diffText + } + + return diff, true + }) + + return diffs, nil +} + +func controlDiffValuesEqual(a, b any) bool { + if a == nil && b == nil { + return true + } + + if a == nil || b == nil { + return false + } + + aStr, aOK := workflowProposalDiffString(a) + bStr, bOK := workflowProposalDiffString(b) + + if !aOK || !bOK { + return false + } + + return aStr == bStr +} diff --git a/internal/graphapi/controldiff_helpers_test.go b/internal/graphapi/controldiff_helpers_test.go new file mode 100644 index 0000000000..197834ca9a --- /dev/null +++ b/internal/graphapi/controldiff_helpers_test.go @@ -0,0 +1,80 @@ +package graphapi + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + historygenerated "github.com/theopenlane/core/internal/ent/historygenerated" +) + +func TestControlDiffValuesEqual(t *testing.T) { + tests := []struct { + name string + a, b any + expected bool + }{ + {name: "both nil", a: nil, b: nil, expected: true}, + {name: "a nil", a: nil, b: "foo", expected: false}, + {name: "b nil", a: "foo", b: nil, expected: false}, + {name: "equal strings", a: "foo", b: "foo", expected: true}, + {name: "different strings", a: "foo", b: "bar", expected: false}, + {name: "equal slices", a: []string{"a", "b"}, b: []string{"a", "b"}, expected: true}, + {name: "different slices", a: []string{"a"}, b: []string{"a", "b"}, expected: false}, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + assert.Equal(t, tt.expected, controlDiffValuesEqual(tt.a, tt.b)) + }) + } +} + +func TestDiffControlHistoryRecords(t *testing.T) { + oldRecord := &historygenerated.ControlHistory{ + Title: "Old Title", + Description: "Old Description", + Category: "Security", + Subcategory: "Access Control", + } + + newRecord := &historygenerated.ControlHistory{ + Title: "New Title", + Description: "Old Description", + Category: "Security", + Subcategory: "Identity", + } + + diffs, err := diffControlHistories(oldRecord, newRecord) + require.NoError(t, err) + + fieldNames := make([]string, len(diffs)) + for i, d := range diffs { + fieldNames[i] = d.Field + } + + assert.Contains(t, fieldNames, "title") + assert.Contains(t, fieldNames, "subcategory") + assert.NotContains(t, fieldNames, "description") + assert.NotContains(t, fieldNames, "category") + + for _, d := range diffs { + if d.Field == "title" { + assert.Equal(t, "Old Title", d.OldValue) + assert.Equal(t, "New Title", d.NewValue) + } + } +} + +func TestDiffControlHistoryRecordsNoDiffs(t *testing.T) { + record := &historygenerated.ControlHistory{ + Title: "Same", + Description: "Same", + Category: "Same", + } + + diffs, err := diffControlHistories(record, record) + require.NoError(t, err) + assert.Empty(t, diffs) +} diff --git a/internal/graphapi/controlextended.resolvers.go b/internal/graphapi/controlextended.resolvers.go index cff95850cd..3623220dbb 100644 --- a/internal/graphapi/controlextended.resolvers.go +++ b/internal/graphapi/controlextended.resolvers.go @@ -247,6 +247,11 @@ func (r *mutationResolver) CloneBulkCSVControl(ctx context.Context, input graphq return out, nil } +// ControlDiff is the resolver for the controlDiff field. +func (r *queryResolver) ControlDiff(ctx context.Context, input model.ControlDiffInput) (*model.ControlDiffPayload, error) { + return r.controlDiff(ctx, input) +} + // ControlCategories is the resolver for the controlCategories field. func (r *queryResolver) ControlCategories(ctx context.Context) ([]string, error) { categories, err := withTransactionalMutation(ctx).Control.Query().Select(control.FieldCategory). diff --git a/internal/graphapi/generated/controlextended.generated.go b/internal/graphapi/generated/controlextended.generated.go index 9eafff51b2..ebc1953b76 100644 --- a/internal/graphapi/generated/controlextended.generated.go +++ b/internal/graphapi/generated/controlextended.generated.go @@ -223,6 +223,343 @@ func (ec *executionContext) fieldContext_ControlCategoryEdge_node(_ context.Cont return fc, nil } +func (ec *executionContext) _ControlChange_refCode(ctx context.Context, field graphql.CollectedField, obj *model.ControlChange) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlChange_refCode, + func(ctx context.Context) (any, error) { + return obj.RefCode, nil + }, + nil, + ec.marshalNString2string, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlChange_refCode(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlChange", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type String does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlChange_title(ctx context.Context, field graphql.CollectedField, obj *model.ControlChange) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlChange_title, + func(ctx context.Context) (any, error) { + return obj.Title, nil + }, + nil, + ec.marshalNString2string, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlChange_title(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlChange", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type String does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlChange_diffs(ctx context.Context, field graphql.CollectedField, obj *model.ControlChange) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlChange_diffs, + func(ctx context.Context) (any, error) { + return obj.Diffs, nil + }, + nil, + ec.marshalNControlFieldDiff2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlFieldDiffᚄ, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlChange_diffs(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlChange", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + switch field.Name { + case "field": + return ec.fieldContext_ControlFieldDiff_field(ctx, field) + case "oldValue": + return ec.fieldContext_ControlFieldDiff_oldValue(ctx, field) + case "newValue": + return ec.fieldContext_ControlFieldDiff_newValue(ctx, field) + case "diff": + return ec.fieldContext_ControlFieldDiff_diff(ctx, field) + } + return nil, fmt.Errorf("no field named %q was found under type ControlFieldDiff", field.Name) + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlDiffPayload_standardID(ctx context.Context, field graphql.CollectedField, obj *model.ControlDiffPayload) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlDiffPayload_standardID, + func(ctx context.Context) (any, error) { + return obj.StandardID, nil + }, + nil, + ec.marshalNID2string, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlDiffPayload_standardID(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlDiffPayload", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type ID does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlDiffPayload_oldRevision(ctx context.Context, field graphql.CollectedField, obj *model.ControlDiffPayload) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlDiffPayload_oldRevision, + func(ctx context.Context) (any, error) { + return obj.OldRevision, nil + }, + nil, + ec.marshalNString2string, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlDiffPayload_oldRevision(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlDiffPayload", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type String does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlDiffPayload_newRevision(ctx context.Context, field graphql.CollectedField, obj *model.ControlDiffPayload) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlDiffPayload_newRevision, + func(ctx context.Context) (any, error) { + return obj.NewRevision, nil + }, + nil, + ec.marshalNString2string, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlDiffPayload_newRevision(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlDiffPayload", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type String does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlDiffPayload_changes(ctx context.Context, field graphql.CollectedField, obj *model.ControlDiffPayload) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlDiffPayload_changes, + func(ctx context.Context) (any, error) { + return obj.Changes, nil + }, + nil, + ec.marshalNControlChange2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlChangeᚄ, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlDiffPayload_changes(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlDiffPayload", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + switch field.Name { + case "refCode": + return ec.fieldContext_ControlChange_refCode(ctx, field) + case "title": + return ec.fieldContext_ControlChange_title(ctx, field) + case "diffs": + return ec.fieldContext_ControlChange_diffs(ctx, field) + } + return nil, fmt.Errorf("no field named %q was found under type ControlChange", field.Name) + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlFieldDiff_field(ctx context.Context, field graphql.CollectedField, obj *model.ControlFieldDiff) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlFieldDiff_field, + func(ctx context.Context) (any, error) { + return obj.Field, nil + }, + nil, + ec.marshalNString2string, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_ControlFieldDiff_field(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlFieldDiff", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type String does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlFieldDiff_oldValue(ctx context.Context, field graphql.CollectedField, obj *model.ControlFieldDiff) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlFieldDiff_oldValue, + func(ctx context.Context) (any, error) { + return obj.OldValue, nil + }, + nil, + ec.marshalOAny2interface, + true, + false, + ) +} + +func (ec *executionContext) fieldContext_ControlFieldDiff_oldValue(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlFieldDiff", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type Any does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlFieldDiff_newValue(ctx context.Context, field graphql.CollectedField, obj *model.ControlFieldDiff) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlFieldDiff_newValue, + func(ctx context.Context) (any, error) { + return obj.NewValue, nil + }, + nil, + ec.marshalOAny2interface, + true, + false, + ) +} + +func (ec *executionContext) fieldContext_ControlFieldDiff_newValue(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlFieldDiff", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type Any does not have child fields") + }, + } + return fc, nil +} + +func (ec *executionContext) _ControlFieldDiff_diff(ctx context.Context, field graphql.CollectedField, obj *model.ControlFieldDiff) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_ControlFieldDiff_diff, + func(ctx context.Context) (any, error) { + return obj.Diff, nil + }, + nil, + ec.marshalOString2ᚖstring, + true, + false, + ) +} + +func (ec *executionContext) fieldContext_ControlFieldDiff_diff(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "ControlFieldDiff", + Field: field, + IsMethod: false, + IsResolver: false, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + return nil, errors.New("field of type String does not have child fields") + }, + } + return fc, nil +} + func (ec *executionContext) _ControlGroup_category(ctx context.Context, field graphql.CollectedField, obj *model.ControlGroup) (ret graphql.Marshaler) { return graphql.ResolveField( ctx, @@ -575,45 +912,86 @@ func (ec *executionContext) unmarshalInputCloneControlUploadInput(ctx context.Co if err != nil { return it, err } - it.ControlInput = data + it.ControlInput = data + } + } + + return it, nil +} + +func (ec *executionContext) unmarshalInputControlCategoryOrder(ctx context.Context, obj any) (model.ControlCategoryOrder, error) { + var it model.ControlCategoryOrder + asMap := map[string]any{} + for k, v := range obj.(map[string]any) { + asMap[k] = v + } + + if _, present := asMap["direction"]; !present { + asMap["direction"] = "ASC" + } + + fieldsInOrder := [...]string{"direction", "field"} + for _, k := range fieldsInOrder { + v, ok := asMap[k] + if !ok { + continue + } + switch k { + case "direction": + ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("direction")) + data, err := ec.unmarshalNOrderDirection2entgoᚗioᚋcontribᚋentgqlᚐOrderDirection(ctx, v) + if err != nil { + return it, err + } + it.Direction = data + case "field": + ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("field")) + data, err := ec.unmarshalNControlCategoryOrderField2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryOrderField(ctx, v) + if err != nil { + return it, err + } + it.Field = data } } return it, nil } -func (ec *executionContext) unmarshalInputControlCategoryOrder(ctx context.Context, obj any) (model.ControlCategoryOrder, error) { - var it model.ControlCategoryOrder +func (ec *executionContext) unmarshalInputControlDiffInput(ctx context.Context, obj any) (model.ControlDiffInput, error) { + var it model.ControlDiffInput asMap := map[string]any{} for k, v := range obj.(map[string]any) { asMap[k] = v } - if _, present := asMap["direction"]; !present { - asMap["direction"] = "ASC" - } - - fieldsInOrder := [...]string{"direction", "field"} + fieldsInOrder := [...]string{"standardID", "oldRevision", "newRevision"} for _, k := range fieldsInOrder { v, ok := asMap[k] if !ok { continue } switch k { - case "direction": - ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("direction")) - data, err := ec.unmarshalNOrderDirection2entgoᚗioᚋcontribᚋentgqlᚐOrderDirection(ctx, v) + case "standardID": + ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("standardID")) + data, err := ec.unmarshalNID2string(ctx, v) if err != nil { return it, err } - it.Direction = data - case "field": - ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("field")) - data, err := ec.unmarshalNControlCategoryOrderField2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryOrderField(ctx, v) + it.StandardID = data + case "oldRevision": + ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("oldRevision")) + data, err := ec.unmarshalNString2string(ctx, v) if err != nil { return it, err } - it.Field = data + it.OldRevision = data + case "newRevision": + ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("newRevision")) + data, err := ec.unmarshalNString2string(ctx, v) + if err != nil { + return it, err + } + it.NewRevision = data } } @@ -754,6 +1132,154 @@ func (ec *executionContext) _ControlCategoryEdge(ctx context.Context, sel ast.Se return out } +var controlChangeImplementors = []string{"ControlChange"} + +func (ec *executionContext) _ControlChange(ctx context.Context, sel ast.SelectionSet, obj *model.ControlChange) graphql.Marshaler { + fields := graphql.CollectFields(ec.OperationContext, sel, controlChangeImplementors) + + out := graphql.NewFieldSet(fields) + deferred := make(map[string]*graphql.FieldSet) + for i, field := range fields { + switch field.Name { + case "__typename": + out.Values[i] = graphql.MarshalString("ControlChange") + case "refCode": + out.Values[i] = ec._ControlChange_refCode(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + case "title": + out.Values[i] = ec._ControlChange_title(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + case "diffs": + out.Values[i] = ec._ControlChange_diffs(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + default: + panic("unknown field " + strconv.Quote(field.Name)) + } + } + out.Dispatch(ctx) + if out.Invalids > 0 { + return graphql.Null + } + + atomic.AddInt32(&ec.deferred, int32(len(deferred))) + + for label, dfs := range deferred { + ec.processDeferredGroup(graphql.DeferredGroup{ + Label: label, + Path: graphql.GetPath(ctx), + FieldSet: dfs, + Context: ctx, + }) + } + + return out +} + +var controlDiffPayloadImplementors = []string{"ControlDiffPayload"} + +func (ec *executionContext) _ControlDiffPayload(ctx context.Context, sel ast.SelectionSet, obj *model.ControlDiffPayload) graphql.Marshaler { + fields := graphql.CollectFields(ec.OperationContext, sel, controlDiffPayloadImplementors) + + out := graphql.NewFieldSet(fields) + deferred := make(map[string]*graphql.FieldSet) + for i, field := range fields { + switch field.Name { + case "__typename": + out.Values[i] = graphql.MarshalString("ControlDiffPayload") + case "standardID": + out.Values[i] = ec._ControlDiffPayload_standardID(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + case "oldRevision": + out.Values[i] = ec._ControlDiffPayload_oldRevision(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + case "newRevision": + out.Values[i] = ec._ControlDiffPayload_newRevision(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + case "changes": + out.Values[i] = ec._ControlDiffPayload_changes(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + default: + panic("unknown field " + strconv.Quote(field.Name)) + } + } + out.Dispatch(ctx) + if out.Invalids > 0 { + return graphql.Null + } + + atomic.AddInt32(&ec.deferred, int32(len(deferred))) + + for label, dfs := range deferred { + ec.processDeferredGroup(graphql.DeferredGroup{ + Label: label, + Path: graphql.GetPath(ctx), + FieldSet: dfs, + Context: ctx, + }) + } + + return out +} + +var controlFieldDiffImplementors = []string{"ControlFieldDiff"} + +func (ec *executionContext) _ControlFieldDiff(ctx context.Context, sel ast.SelectionSet, obj *model.ControlFieldDiff) graphql.Marshaler { + fields := graphql.CollectFields(ec.OperationContext, sel, controlFieldDiffImplementors) + + out := graphql.NewFieldSet(fields) + deferred := make(map[string]*graphql.FieldSet) + for i, field := range fields { + switch field.Name { + case "__typename": + out.Values[i] = graphql.MarshalString("ControlFieldDiff") + case "field": + out.Values[i] = ec._ControlFieldDiff_field(ctx, field, obj) + if out.Values[i] == graphql.Null { + out.Invalids++ + } + case "oldValue": + out.Values[i] = ec._ControlFieldDiff_oldValue(ctx, field, obj) + case "newValue": + out.Values[i] = ec._ControlFieldDiff_newValue(ctx, field, obj) + case "diff": + out.Values[i] = ec._ControlFieldDiff_diff(ctx, field, obj) + default: + panic("unknown field " + strconv.Quote(field.Name)) + } + } + out.Dispatch(ctx) + if out.Invalids > 0 { + return graphql.Null + } + + atomic.AddInt32(&ec.deferred, int32(len(deferred))) + + for label, dfs := range deferred { + ec.processDeferredGroup(graphql.DeferredGroup{ + Label: label, + Path: graphql.GetPath(ctx), + FieldSet: dfs, + Context: ctx, + }) + } + + return out +} + var controlGroupImplementors = []string{"ControlGroup"} func (ec *executionContext) _ControlGroup(ctx context.Context, sel ast.SelectionSet, obj *model.ControlGroup) graphql.Marshaler { @@ -920,6 +1446,133 @@ func (ec *executionContext) marshalNControlCategoryOrderField2githubᚗcomᚋthe return v } +func (ec *executionContext) marshalNControlChange2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlChangeᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.ControlChange) graphql.Marshaler { + ret := make(graphql.Array, len(v)) + var wg sync.WaitGroup + isLen1 := len(v) == 1 + if !isLen1 { + wg.Add(len(v)) + } + for i := range v { + i := i + fc := &graphql.FieldContext{ + Index: &i, + Result: &v[i], + } + ctx := graphql.WithFieldContext(ctx, fc) + f := func(i int) { + defer func() { + if r := recover(); r != nil { + ec.Error(ctx, ec.Recover(ctx, r)) + ret = nil + } + }() + if !isLen1 { + defer wg.Done() + } + ret[i] = ec.marshalNControlChange2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlChange(ctx, sel, v[i]) + } + if isLen1 { + f(i) + } else { + go f(i) + } + + } + wg.Wait() + + for _, e := range ret { + if e == graphql.Null { + return graphql.Null + } + } + + return ret +} + +func (ec *executionContext) marshalNControlChange2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlChange(ctx context.Context, sel ast.SelectionSet, v *model.ControlChange) graphql.Marshaler { + if v == nil { + if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { + graphql.AddErrorf(ctx, "the requested element is null which the schema does not allow") + } + return graphql.Null + } + return ec._ControlChange(ctx, sel, v) +} + +func (ec *executionContext) unmarshalNControlDiffInput2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlDiffInput(ctx context.Context, v any) (model.ControlDiffInput, error) { + res, err := ec.unmarshalInputControlDiffInput(ctx, v) + return res, graphql.ErrorOnPath(ctx, err) +} + +func (ec *executionContext) marshalNControlDiffPayload2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlDiffPayload(ctx context.Context, sel ast.SelectionSet, v model.ControlDiffPayload) graphql.Marshaler { + return ec._ControlDiffPayload(ctx, sel, &v) +} + +func (ec *executionContext) marshalNControlDiffPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlDiffPayload(ctx context.Context, sel ast.SelectionSet, v *model.ControlDiffPayload) graphql.Marshaler { + if v == nil { + if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { + graphql.AddErrorf(ctx, "the requested element is null which the schema does not allow") + } + return graphql.Null + } + return ec._ControlDiffPayload(ctx, sel, v) +} + +func (ec *executionContext) marshalNControlFieldDiff2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlFieldDiffᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.ControlFieldDiff) graphql.Marshaler { + ret := make(graphql.Array, len(v)) + var wg sync.WaitGroup + isLen1 := len(v) == 1 + if !isLen1 { + wg.Add(len(v)) + } + for i := range v { + i := i + fc := &graphql.FieldContext{ + Index: &i, + Result: &v[i], + } + ctx := graphql.WithFieldContext(ctx, fc) + f := func(i int) { + defer func() { + if r := recover(); r != nil { + ec.Error(ctx, ec.Recover(ctx, r)) + ret = nil + } + }() + if !isLen1 { + defer wg.Done() + } + ret[i] = ec.marshalNControlFieldDiff2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlFieldDiff(ctx, sel, v[i]) + } + if isLen1 { + f(i) + } else { + go f(i) + } + + } + wg.Wait() + + for _, e := range ret { + if e == graphql.Null { + return graphql.Null + } + } + + return ret +} + +func (ec *executionContext) marshalNControlFieldDiff2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlFieldDiff(ctx context.Context, sel ast.SelectionSet, v *model.ControlFieldDiff) graphql.Marshaler { + if v == nil { + if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { + graphql.AddErrorf(ctx, "the requested element is null which the schema does not allow") + } + return graphql.Null + } + return ec._ControlFieldDiff(ctx, sel, v) +} + func (ec *executionContext) marshalNControlGroup2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlGroup(ctx context.Context, sel ast.SelectionSet, v *model.ControlGroup) graphql.Marshaler { if v == nil { if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { diff --git a/internal/graphapi/generated/ent.generated.go b/internal/graphapi/generated/ent.generated.go index a373fd0145..790889b141 100644 --- a/internal/graphapi/generated/ent.generated.go +++ b/internal/graphapi/generated/ent.generated.go @@ -185,6 +185,7 @@ type QueryResolver interface { CampaignTarget(ctx context.Context, id string) (*generated.CampaignTarget, error) Contact(ctx context.Context, id string) (*generated.Contact, error) Control(ctx context.Context, id string) (*generated.Control, error) + ControlDiff(ctx context.Context, input model.ControlDiffInput) (*model.ControlDiffPayload, error) ControlCategories(ctx context.Context) ([]string, error) ControlSubcategories(ctx context.Context) ([]string, error) ControlCategoriesByFramework(ctx context.Context, orderBy []*model.ControlCategoryOrder, where *generated.ControlWhereInput) ([]*model.ControlCategoryEdge, error) @@ -17777,6 +17778,17 @@ func (ec *executionContext) field_Query_controlCategoriesByFramework_args(ctx co return args, nil } +func (ec *executionContext) field_Query_controlDiff_args(ctx context.Context, rawArgs map[string]any) (map[string]any, error) { + var err error + args := map[string]any{} + arg0, err := graphql.ProcessArgField(ctx, rawArgs, "input", ec.unmarshalNControlDiffInput2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlDiffInput) + if err != nil { + return nil, err + } + args["input"] = arg0 + return args, nil +} + func (ec *executionContext) field_Query_controlImplementation_args(ctx context.Context, rawArgs map[string]any) (map[string]any, error) { var err error args := map[string]any{} @@ -144190,6 +144202,57 @@ func (ec *executionContext) fieldContext_Query_control(ctx context.Context, fiel return fc, nil } +func (ec *executionContext) _Query_controlDiff(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) { + return graphql.ResolveField( + ctx, + ec.OperationContext, + field, + ec.fieldContext_Query_controlDiff, + func(ctx context.Context) (any, error) { + fc := graphql.GetFieldContext(ctx) + return ec.resolvers.Query().ControlDiff(ctx, fc.Args["input"].(model.ControlDiffInput)) + }, + nil, + ec.marshalNControlDiffPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlDiffPayload, + true, + true, + ) +} + +func (ec *executionContext) fieldContext_Query_controlDiff(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { + fc = &graphql.FieldContext{ + Object: "Query", + Field: field, + IsMethod: true, + IsResolver: true, + Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { + switch field.Name { + case "standardID": + return ec.fieldContext_ControlDiffPayload_standardID(ctx, field) + case "oldRevision": + return ec.fieldContext_ControlDiffPayload_oldRevision(ctx, field) + case "newRevision": + return ec.fieldContext_ControlDiffPayload_newRevision(ctx, field) + case "changes": + return ec.fieldContext_ControlDiffPayload_changes(ctx, field) + } + return nil, fmt.Errorf("no field named %q was found under type ControlDiffPayload", field.Name) + }, + } + defer func() { + if r := recover(); r != nil { + err = ec.Recover(ctx, r) + ec.Error(ctx, err) + } + }() + ctx = graphql.WithFieldContext(ctx, fc) + if fc.Args, err = ec.field_Query_controlDiff_args(ctx, field.ArgumentMap(ec.Variables)); err != nil { + ec.Error(ctx, err) + return fc, err + } + return fc, nil +} + func (ec *executionContext) _Query_controlCategories(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) { return graphql.ResolveField( ctx, @@ -464208,6 +464271,28 @@ func (ec *executionContext) _Query(ctx context.Context, sel ast.SelectionSet) gr func(ctx context.Context) graphql.Marshaler { return innerFunc(ctx, out) }) } + out.Concurrently(i, func(ctx context.Context) graphql.Marshaler { return rrm(innerCtx) }) + case "controlDiff": + field := field + + innerFunc := func(ctx context.Context, fs *graphql.FieldSet) (res graphql.Marshaler) { + defer func() { + if r := recover(); r != nil { + ec.Error(ctx, ec.Recover(ctx, r)) + } + }() + res = ec._Query_controlDiff(ctx, field) + if res == graphql.Null { + atomic.AddUint32(&fs.Invalids, 1) + } + return res + } + + rrm := func(ctx context.Context) graphql.Marshaler { + return ec.OperationContext.RootResolverMiddleware(ctx, + func(ctx context.Context) graphql.Marshaler { return innerFunc(ctx, out) }) + } + out.Concurrently(i, func(ctx context.Context) graphql.Marshaler { return rrm(innerCtx) }) case "controlCategories": field := field diff --git a/internal/graphapi/generated/root_.generated.go b/internal/graphapi/generated/root_.generated.go index 8a340a3ba8..042a52505b 100644 --- a/internal/graphapi/generated/root_.generated.go +++ b/internal/graphapi/generated/root_.generated.go @@ -809,6 +809,12 @@ type ComplexityRoot struct { Node func(childComplexity int) int } + ControlChange struct { + Diffs func(childComplexity int) int + RefCode func(childComplexity int) int + Title func(childComplexity int) int + } + ControlConnection struct { Edges func(childComplexity int) int PageInfo func(childComplexity int) int @@ -823,11 +829,25 @@ type ComplexityRoot struct { DeletedID func(childComplexity int) int } + ControlDiffPayload struct { + Changes func(childComplexity int) int + NewRevision func(childComplexity int) int + OldRevision func(childComplexity int) int + StandardID func(childComplexity int) int + } + ControlEdge struct { Cursor func(childComplexity int) int Node func(childComplexity int) int } + ControlFieldDiff struct { + Diff func(childComplexity int) int + Field func(childComplexity int) int + NewValue func(childComplexity int) int + OldValue func(childComplexity int) int + } + ControlGroup struct { Category func(childComplexity int) int Controls func(childComplexity int) int @@ -4775,6 +4795,7 @@ type ComplexityRoot struct { Control func(childComplexity int, id string) int ControlCategories func(childComplexity int) int ControlCategoriesByFramework func(childComplexity int, orderBy []*model.ControlCategoryOrder, where *generated.ControlWhereInput) int + ControlDiff func(childComplexity int, input model.ControlDiffInput) int ControlImplementation func(childComplexity int, id string) int ControlImplementations func(childComplexity int, after *entgql.Cursor[string], first *int, before *entgql.Cursor[string], last *int, orderBy []*generated.ControlImplementationOrder, where *generated.ControlImplementationWhereInput) int ControlObjective func(childComplexity int, id string) int @@ -11014,6 +11035,27 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return e.complexity.ControlCategoryEdge.Node(childComplexity), true + case "ControlChange.diffs": + if e.complexity.ControlChange.Diffs == nil { + break + } + + return e.complexity.ControlChange.Diffs(childComplexity), true + + case "ControlChange.refCode": + if e.complexity.ControlChange.RefCode == nil { + break + } + + return e.complexity.ControlChange.RefCode(childComplexity), true + + case "ControlChange.title": + if e.complexity.ControlChange.Title == nil { + break + } + + return e.complexity.ControlChange.Title(childComplexity), true + case "ControlConnection.edges": if e.complexity.ControlConnection.Edges == nil { break @@ -11049,6 +11091,34 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return e.complexity.ControlDeletePayload.DeletedID(childComplexity), true + case "ControlDiffPayload.changes": + if e.complexity.ControlDiffPayload.Changes == nil { + break + } + + return e.complexity.ControlDiffPayload.Changes(childComplexity), true + + case "ControlDiffPayload.newRevision": + if e.complexity.ControlDiffPayload.NewRevision == nil { + break + } + + return e.complexity.ControlDiffPayload.NewRevision(childComplexity), true + + case "ControlDiffPayload.oldRevision": + if e.complexity.ControlDiffPayload.OldRevision == nil { + break + } + + return e.complexity.ControlDiffPayload.OldRevision(childComplexity), true + + case "ControlDiffPayload.standardID": + if e.complexity.ControlDiffPayload.StandardID == nil { + break + } + + return e.complexity.ControlDiffPayload.StandardID(childComplexity), true + case "ControlEdge.cursor": if e.complexity.ControlEdge.Cursor == nil { break @@ -11063,6 +11133,34 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return e.complexity.ControlEdge.Node(childComplexity), true + case "ControlFieldDiff.diff": + if e.complexity.ControlFieldDiff.Diff == nil { + break + } + + return e.complexity.ControlFieldDiff.Diff(childComplexity), true + + case "ControlFieldDiff.field": + if e.complexity.ControlFieldDiff.Field == nil { + break + } + + return e.complexity.ControlFieldDiff.Field(childComplexity), true + + case "ControlFieldDiff.newValue": + if e.complexity.ControlFieldDiff.NewValue == nil { + break + } + + return e.complexity.ControlFieldDiff.NewValue(childComplexity), true + + case "ControlFieldDiff.oldValue": + if e.complexity.ControlFieldDiff.OldValue == nil { + break + } + + return e.complexity.ControlFieldDiff.OldValue(childComplexity), true + case "ControlGroup.category": if e.complexity.ControlGroup.Category == nil { break @@ -35138,6 +35236,18 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return e.complexity.Query.ControlCategoriesByFramework(childComplexity, args["orderBy"].([]*model.ControlCategoryOrder), args["where"].(*generated.ControlWhereInput)), true + case "Query.controlDiff": + if e.complexity.Query.ControlDiff == nil { + break + } + + args, err := ec.field_Query_controlDiff_args(ctx, rawArgs) + if err != nil { + return 0, false + } + + return e.complexity.Query.ControlDiff(childComplexity, args["input"].(model.ControlDiffInput)), true + case "Query.controlImplementation": if e.complexity.Query.ControlImplementation == nil { break @@ -48367,6 +48477,7 @@ func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { ec.unmarshalInputContactOrder, ec.unmarshalInputContactWhereInput, ec.unmarshalInputControlCategoryOrder, + ec.unmarshalInputControlDiffInput, ec.unmarshalInputControlImplementationOrder, ec.unmarshalInputControlImplementationWhereInput, ec.unmarshalInputControlObjectiveOrder, @@ -50509,7 +50620,93 @@ extend type Mutation{ ): ControlBulkCreatePayload! } +""" +ControlDiffInput is used to compare all controls under a standard across two revisions +""" +input ControlDiffInput { + """ + ID of the standard to compare controls for + """ + standardID: ID! + """ + base revision to compare from (e.g. "v1.0.0") + """ + oldRevision: String! + """ + target revision to compare to (e.g. "v2.0.0") + """ + newRevision: String! +} + +""" +ControlFieldDiff describes a single field that differs between two control revisions +""" +type ControlFieldDiff { + """ + Field name (snake_case) + """ + field: String! + """ + Value in the old revision + """ + oldValue: Any + """ + Value in the new revision + """ + newValue: Any + """ + Unified diff text when applicable + """ + diff: String +} + +""" +ControlChange describes the diffs for a single control identified by refCode +""" +type ControlChange { + """ + The ref_code of the control + """ + refCode: String! + """ + The title of the control at the new revision + """ + title: String! + """ + Field-level diffs for this control + """ + diffs: [ControlFieldDiff!]! +} + +""" +ControlDiffPayload contains the field-level diffs between two revisions of all controls under a standard +""" +type ControlDiffPayload { + """ + The standard ID being compared + """ + standardID: ID! + """ + The base revision + """ + oldRevision: String! + """ + The target revision + """ + newRevision: String! + """ + Per-control changes between the two revisions + """ + changes: [ControlChange!]! +} + extend type Query { + """ + Compare a system-owned control between two framework revisions to see which fields changed + """ + controlDiff( + input: ControlDiffInput! + ): ControlDiffPayload! """ All existing categories or domains used in the organization @deprecated """ @@ -89986,6 +90183,7 @@ enum NotificationNotificationTopic @goModel(model: "github.com/theopenlane/core/ APPROVAL MENTION EXPORT + STANDARD_UPDATE } """ NotificationNotificationType is enum for the field notification_type diff --git a/internal/graphapi/historyschema/checksum/.history_schema_checksum b/internal/graphapi/historyschema/checksum/.history_schema_checksum index 2d53e50238..0cf77a999f 100644 --- a/internal/graphapi/historyschema/checksum/.history_schema_checksum +++ b/internal/graphapi/historyschema/checksum/.history_schema_checksum @@ -1 +1 @@ -4fb2a97648d565c82594603e3f19cd58cdaa1f7f94a74b5191c57a29983ef2eb +1602c2c7b3b5f59e40007a6e37ad3e2ddf44c905e29108320bc31f4d437e189c \ No newline at end of file diff --git a/internal/graphapi/model/gen_models.go b/internal/graphapi/model/gen_models.go index 9dd897d223..3f44815ed6 100644 --- a/internal/graphapi/model/gen_models.go +++ b/internal/graphapi/model/gen_models.go @@ -396,6 +396,16 @@ type ControlCategoryOrder struct { Field ControlCategoryOrderField `json:"field"` } +// ControlChange describes the diffs for a single control identified by refCode +type ControlChange struct { + // The ref_code of the control + RefCode string `json:"refCode"` + // The title of the control at the new revision + Title string `json:"title"` + // Field-level diffs for this control + Diffs []*ControlFieldDiff `json:"diffs"` +} + // Return response for createControl mutation type ControlCreatePayload struct { // Created control @@ -408,6 +418,40 @@ type ControlDeletePayload struct { DeletedID string `json:"deletedID"` } +// ControlDiffInput is used to compare all controls under a standard across two revisions +type ControlDiffInput struct { + // ID of the standard to compare controls for + StandardID string `json:"standardID"` + // base revision to compare from (e.g. "v1.0.0") + OldRevision string `json:"oldRevision"` + // target revision to compare to (e.g. "v2.0.0") + NewRevision string `json:"newRevision"` +} + +// ControlDiffPayload contains the field-level diffs between two revisions of all controls under a standard +type ControlDiffPayload struct { + // The standard ID being compared + StandardID string `json:"standardID"` + // The base revision + OldRevision string `json:"oldRevision"` + // The target revision + NewRevision string `json:"newRevision"` + // Per-control changes between the two revisions + Changes []*ControlChange `json:"changes"` +} + +// ControlFieldDiff describes a single field that differs between two control revisions +type ControlFieldDiff struct { + // Field name (snake_case) + Field string `json:"field"` + // Value in the old revision + OldValue any `json:"oldValue,omitempty"` + // Value in the new revision + NewValue any `json:"newValue,omitempty"` + // Unified diff text when applicable + Diff *string `json:"diff,omitempty"` +} + type ControlGroup struct { Category string `json:"category"` Controls *generated.ControlConnection `json:"controls"` diff --git a/internal/graphapi/schema/controlextended.graphql b/internal/graphapi/schema/controlextended.graphql index ece4a16810..40ef393385 100644 --- a/internal/graphapi/schema/controlextended.graphql +++ b/internal/graphapi/schema/controlextended.graphql @@ -111,7 +111,93 @@ extend type Mutation{ ): ControlBulkCreatePayload! } +""" +ControlDiffInput is used to compare all controls under a standard across two revisions +""" +input ControlDiffInput { + """ + ID of the standard to compare controls for + """ + standardID: ID! + """ + base revision to compare from (e.g. "v1.0.0") + """ + oldRevision: String! + """ + target revision to compare to (e.g. "v2.0.0") + """ + newRevision: String! +} + +""" +ControlFieldDiff describes a single field that differs between two control revisions +""" +type ControlFieldDiff { + """ + Field name (snake_case) + """ + field: String! + """ + Value in the old revision + """ + oldValue: Any + """ + Value in the new revision + """ + newValue: Any + """ + Unified diff text when applicable + """ + diff: String +} + +""" +ControlChange describes the diffs for a single control identified by refCode +""" +type ControlChange { + """ + The ref_code of the control + """ + refCode: String! + """ + The title of the control at the new revision + """ + title: String! + """ + Field-level diffs for this control + """ + diffs: [ControlFieldDiff!]! +} + +""" +ControlDiffPayload contains the field-level diffs between two revisions of all controls under a standard +""" +type ControlDiffPayload { + """ + The standard ID being compared + """ + standardID: ID! + """ + The base revision + """ + oldRevision: String! + """ + The target revision + """ + newRevision: String! + """ + Per-control changes between the two revisions + """ + changes: [ControlChange!]! +} + extend type Query { + """ + Compare a system-owned control between two framework revisions to see which fields changed + """ + controlDiff( + input: ControlDiffInput! + ): ControlDiffPayload! """ All existing categories or domains used in the organization @deprecated """ diff --git a/internal/graphapi/schema/ent.graphql b/internal/graphapi/schema/ent.graphql index fb9c5f0e3b..014ce49067 100644 --- a/internal/graphapi/schema/ent.graphql +++ b/internal/graphapi/schema/ent.graphql @@ -37570,6 +37570,7 @@ enum NotificationNotificationTopic @goModel(model: "github.com/theopenlane/core/ APPROVAL MENTION EXPORT + STANDARD_UPDATE } """ NotificationNotificationType is enum for the field notification_type diff --git a/internal/graphapi/testclient/checksum/.client_checksum b/internal/graphapi/testclient/checksum/.client_checksum index 36f345752c..d149d1502c 100644 --- a/internal/graphapi/testclient/checksum/.client_checksum +++ b/internal/graphapi/testclient/checksum/.client_checksum @@ -1 +1 @@ -afc707269dfb759f6d8a23e58ad5e2b0833222f7b425ae5c56f852dac2acc52f +1c8a65eabfd127781ea0733353b52f0401443e3e300d4fdaa68be0e15f88030f \ No newline at end of file diff --git a/internal/graphapi/testclient/models.go b/internal/graphapi/testclient/models.go index 8900d01d70..76b9497cb4 100644 --- a/internal/graphapi/testclient/models.go +++ b/internal/graphapi/testclient/models.go @@ -4001,6 +4001,16 @@ type ControlCategoryOrder struct { Field ControlCategoryOrderField `json:"field"` } +// ControlChange describes the diffs for a single control identified by refCode +type ControlChange struct { + // The ref_code of the control + RefCode string `json:"refCode"` + // The title of the control at the new revision + Title string `json:"title"` + // Field-level diffs for this control + Diffs []*ControlFieldDiff `json:"diffs"` +} + // A connection to a list of items. type ControlConnection struct { // A list of edges. @@ -4023,6 +4033,28 @@ type ControlDeletePayload struct { DeletedID string `json:"deletedID"` } +// ControlDiffInput is used to compare all controls under a standard across two revisions +type ControlDiffInput struct { + // ID of the standard to compare controls for + StandardID string `json:"standardID"` + // base revision to compare from (e.g. "v1.0.0") + OldRevision string `json:"oldRevision"` + // target revision to compare to (e.g. "v2.0.0") + NewRevision string `json:"newRevision"` +} + +// ControlDiffPayload contains the field-level diffs between two revisions of all controls under a standard +type ControlDiffPayload struct { + // The standard ID being compared + StandardID string `json:"standardID"` + // The base revision + OldRevision string `json:"oldRevision"` + // The target revision + NewRevision string `json:"newRevision"` + // Per-control changes between the two revisions + Changes []*ControlChange `json:"changes"` +} + // An edge in a connection. type ControlEdge struct { // The item at the end of the edge. @@ -4031,6 +4063,18 @@ type ControlEdge struct { Cursor string `json:"cursor"` } +// ControlFieldDiff describes a single field that differs between two control revisions +type ControlFieldDiff struct { + // Field name (snake_case) + Field string `json:"field"` + // Value in the old revision + OldValue any `json:"oldValue,omitempty"` + // Value in the new revision + NewValue any `json:"newValue,omitempty"` + // Unified diff text when applicable + Diff *string `json:"diff,omitempty"` +} + type ControlGroup struct { Category string `json:"category"` Controls *ControlConnection `json:"controls"` From 432130275b57e905a4e411396b6a1af8ed982c6c Mon Sep 17 00:00:00 2001 From: Lanre Adelowo Date: Wed, 25 Feb 2026 21:55:47 +0100 Subject: [PATCH 2/4] extend tests --- .../hooks/listeners_gala_registration_test.go | 3 +- internal/graphapi/controldiff_helpers_test.go | 199 ++++++++++++++---- 2 files changed, 164 insertions(+), 38 deletions(-) diff --git a/internal/ent/hooks/listeners_gala_registration_test.go b/internal/ent/hooks/listeners_gala_registration_test.go index 9dd4cba6b4..b754908719 100644 --- a/internal/ent/hooks/listeners_gala_registration_test.go +++ b/internal/ent/hooks/listeners_gala_registration_test.go @@ -88,7 +88,7 @@ func TestRegisterGalaNotificationListeners(t *testing.T) { ids, err := RegisterGalaNotificationListeners(registry) require.NoError(t, err) - require.Len(t, ids, 6) + require.Len(t, ids, 7) require.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, entgen.TypeTask), ent.OpCreate.String())) require.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, entgen.TypeInternalPolicy), ent.OpUpdate.String())) @@ -96,4 +96,5 @@ func TestRegisterGalaNotificationListeners(t *testing.T) { require.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, entgen.TypeProcedure), ent.OpUpdateOne.String())) require.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, entgen.TypeNote), ent.OpCreate.String())) require.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, entgen.TypeExport), ent.OpUpdate.String())) + require.True(t, registry.InterestedIn(eventqueue.MutationTopicName(eventqueue.MutationConcernNotification, entgen.TypeStandard), ent.OpUpdate.String())) } diff --git a/internal/graphapi/controldiff_helpers_test.go b/internal/graphapi/controldiff_helpers_test.go index 197834ca9a..a0a27fd3ff 100644 --- a/internal/graphapi/controldiff_helpers_test.go +++ b/internal/graphapi/controldiff_helpers_test.go @@ -20,8 +20,13 @@ func TestControlDiffValuesEqual(t *testing.T) { {name: "b nil", a: "foo", b: nil, expected: false}, {name: "equal strings", a: "foo", b: "foo", expected: true}, {name: "different strings", a: "foo", b: "bar", expected: false}, + {name: "empty strings", a: "", b: "", expected: true}, + {name: "empty vs non-empty string", a: "", b: "something", expected: false}, {name: "equal slices", a: []string{"a", "b"}, b: []string{"a", "b"}, expected: true}, {name: "different slices", a: []string{"a"}, b: []string{"a", "b"}, expected: false}, + {name: "both empty slices", a: []string{}, b: []string{}, expected: true}, + {name: "equal integers", a: 42, b: 42, expected: true}, + {name: "different integers", a: 42, b: 99, expected: false}, } for _, tt := range tests { @@ -31,50 +36,170 @@ func TestControlDiffValuesEqual(t *testing.T) { } } -func TestDiffControlHistoryRecords(t *testing.T) { - oldRecord := &historygenerated.ControlHistory{ - Title: "Old Title", - Description: "Old Description", - Category: "Security", - Subcategory: "Access Control", - } +func TestDiffControlHistories(t *testing.T) { + t.Run("detects title and subcategory changes", func(t *testing.T) { + oldRecord := &historygenerated.ControlHistory{ + Title: "Old Title", + Description: "Same Description", + Category: "Security", + Subcategory: "Access Control", + } - newRecord := &historygenerated.ControlHistory{ - Title: "New Title", - Description: "Old Description", - Category: "Security", - Subcategory: "Identity", - } + newRecord := &historygenerated.ControlHistory{ + Title: "New Title", + Description: "Same Description", + Category: "Security", + Subcategory: "Identity", + } - diffs, err := diffControlHistories(oldRecord, newRecord) - require.NoError(t, err) + diffs, err := diffControlHistories(oldRecord, newRecord) + require.NoError(t, err) - fieldNames := make([]string, len(diffs)) - for i, d := range diffs { - fieldNames[i] = d.Field - } + fieldNames := make([]string, len(diffs)) + for i, d := range diffs { + fieldNames[i] = d.Field + } - assert.Contains(t, fieldNames, "title") - assert.Contains(t, fieldNames, "subcategory") - assert.NotContains(t, fieldNames, "description") - assert.NotContains(t, fieldNames, "category") + assert.Contains(t, fieldNames, "title") + assert.Contains(t, fieldNames, "subcategory") + assert.NotContains(t, fieldNames, "description") + assert.NotContains(t, fieldNames, "category") + }) - for _, d := range diffs { - if d.Field == "title" { - assert.Equal(t, "Old Title", d.OldValue) - assert.Equal(t, "New Title", d.NewValue) + t.Run("no diffs when records are identical", func(t *testing.T) { + record := &historygenerated.ControlHistory{ + Title: "Same", + Description: "Same", + Category: "Same", } - } + + diffs, err := diffControlHistories(record, record) + require.NoError(t, err) + assert.Empty(t, diffs) + }) + + t.Run("slice field changes detected", func(t *testing.T) { + oldRecord := &historygenerated.ControlHistory{ + Aliases: []string{"AC-1", "AC-2"}, + MappedCategories: []string{"NIST"}, + ControlQuestions: []string{"Q1"}, + } + + newRecord := &historygenerated.ControlHistory{ + Aliases: []string{"AC-1", "AC-2", "AC-3"}, + MappedCategories: []string{"NIST"}, + ControlQuestions: []string{"Q1", "Q2"}, + } + + diffs, err := diffControlHistories(oldRecord, newRecord) + require.NoError(t, err) + + fieldNames := make([]string, len(diffs)) + for i, d := range diffs { + fieldNames[i] = d.Field + } + + assert.Contains(t, fieldNames, "aliases") + assert.Contains(t, fieldNames, "control_questions") + assert.NotContains(t, fieldNames, "mapped_categories") + }) + + t.Run("detects change from empty to non-empty", func(t *testing.T) { + oldRecord := &historygenerated.ControlHistory{ + Title: "", + Description: "", + } + + newRecord := &historygenerated.ControlHistory{ + Title: "There is now a title", + Description: "", + } + + diffs, err := diffControlHistories(oldRecord, newRecord) + require.NoError(t, err) + + require.Len(t, diffs, 1) + assert.Equal(t, "title", diffs[0].Field) + }) + + t.Run("zero value produces no diff", func(t *testing.T) { + diffs, err := diffControlHistories( + &historygenerated.ControlHistory{}, + &historygenerated.ControlHistory{}, + ) + require.NoError(t, err) + assert.Empty(t, diffs) + }) } -func TestDiffControlHistoryRecordsNoDiffs(t *testing.T) { - record := &historygenerated.ControlHistory{ - Title: "Same", - Description: "Same", - Category: "Same", - } +func TestDetectAndBuildControlChanges(t *testing.T) { + t.Run("detected between old and new", func(t *testing.T) { + oldByRef := map[string]*historygenerated.ControlHistory{ + "AC-1": {RefCode: "AC-1", Title: "Old Title", Description: "Same"}, + "AC-2": {RefCode: "AC-2", Title: "Unchanged", Description: "Same"}, + } + + newByRef := map[string]*historygenerated.ControlHistory{ + "AC-1": {RefCode: "AC-1", Title: "New Title", Description: "Same"}, + "AC-2": {RefCode: "AC-2", Title: "Unchanged", Description: "Same"}, + } + + changes, err := detectAndBuildControlChanges(oldByRef, newByRef) + require.NoError(t, err) + require.Len(t, changes, 1) + assert.Equal(t, "AC-1", changes[0].RefCode) + assert.Equal(t, "New Title", changes[0].Title) + + assert.Len(t, changes[0].Diffs, 1) + assert.Equal(t, "title", changes[0].Diffs[0].Field) + }) + + t.Run("controls skipped in new revision", func(t *testing.T) { + oldByRef := map[string]*historygenerated.ControlHistory{} + + newByRef := map[string]*historygenerated.ControlHistory{ + "AC-1": {RefCode: "AC-1", Title: "Brand New"}, + } + + changes, err := detectAndBuildControlChanges(oldByRef, newByRef) + require.NoError(t, err) + assert.Empty(t, changes) + }) + + t.Run("empty map returns empty slice", func(t *testing.T) { + changes, err := detectAndBuildControlChanges( + map[string]*historygenerated.ControlHistory{}, + map[string]*historygenerated.ControlHistory{}, + ) + require.NoError(t, err) + require.NotNil(t, changes) + assert.Empty(t, changes) + }) + + t.Run("multiple controls contain changes", func(t *testing.T) { + oldRecordsByRef := map[string]*historygenerated.ControlHistory{ + "AC-1": {RefCode: "AC-1", Title: "Old1", Category: "Cat1"}, + "AC-2": {RefCode: "AC-2", Title: "Old2", Category: "Cat2"}, + "AC-3": {RefCode: "AC-3", Title: "Same", Category: "Same"}, + } + + newRecordsByRef := map[string]*historygenerated.ControlHistory{ + "AC-1": {RefCode: "AC-1", Title: "New1", Category: "Cat1"}, + "AC-2": {RefCode: "AC-2", Title: "Old2", Category: "NewCat2"}, + "AC-3": {RefCode: "AC-3", Title: "Same", Category: "Same"}, + } + + changes, err := detectAndBuildControlChanges(oldRecordsByRef, newRecordsByRef) + require.NoError(t, err) + assert.Len(t, changes, 2) + + changesByRef := make(map[string]bool) + for _, c := range changes { + changesByRef[c.RefCode] = true + } - diffs, err := diffControlHistories(record, record) - require.NoError(t, err) - assert.Empty(t, diffs) + assert.True(t, changesByRef["AC-1"]) + assert.True(t, changesByRef["AC-2"]) + assert.False(t, changesByRef["AC-3"]) + }) } From b21765e9b9c583d13695062a675b07003c2200b1 Mon Sep 17 00:00:00 2001 From: Lanre Adelowo Date: Wed, 25 Feb 2026 22:33:38 +0100 Subject: [PATCH 3/4] task regenerate --- .task/checksum/generate-ent-smart | 2 +- .task/checksum/generate-graphql-smart | 2 +- cli/go.mod | 1 + cli/go.sum | 3 +- .../ent/checksum/.history_schema_checksum | 2 +- internal/ent/checksum/.schema_checksum | 2 +- internal/ent/notifications/standard_update.go | 2 +- .../checksum/.history_schema_checksum | 2 +- internal/graphapi/checksum/.schema_checksum | 2 +- .../clientschema/checksum/.schema_checksum | 2 +- .../generated/actionplan.generated.go | 1158 +- .../graphapi/generated/apitoken.generated.go | 24 +- .../generated/assessment.generated.go | 16 +- .../generated/assessmentresponse.generated.go | 8 +- .../graphapi/generated/asset.generated.go | 24 +- .../graphapi/generated/campaign.generated.go | 16 +- .../generated/campaignextended.generated.go | 16 +- .../generated/campaigntarget.generated.go | 16 +- .../graphapi/generated/contact.generated.go | 24 +- .../graphapi/generated/control.generated.go | 24 +- .../generated/controlextended.generated.go | 231 +- .../controlimplementation.generated.go | 24 +- .../generated/controlobjective.generated.go | 24 +- .../generated/customdomain.generated.go | 28 +- .../generated/customtypeenum.generated.go | 16 +- .../generated/directoryaccount.generated.go | 16 +- .../generated/directorygroup.generated.go | 16 +- .../directorymembership.generated.go | 16 +- .../generated/directorysyncrun.generated.go | 16 +- .../generated/discussion.generated.go | 16 +- .../generated/dnsverification.generated.go | 24 +- .../generated/documentdata.generated.go | 24 +- .../generated/emailbranding.generated.go | 24 +- .../generated/emailtemplate.generated.go | 24 +- internal/graphapi/generated/ent.generated.go | 13247 +++-------- .../graphapi/generated/entity.generated.go | 24 +- .../generated/entitytype.generated.go | 24 +- .../graphapi/generated/event.generated.go | 24 +- .../graphapi/generated/evidence.generated.go | 24 +- .../graphapi/generated/export.generated.go | 20 +- internal/graphapi/generated/file.generated.go | 4 +- .../graphapi/generated/finding.generated.go | 16 +- .../generated/findingcontrol.generated.go | 16 +- .../graphapi/generated/group.generated.go | 24 +- .../generated/groupextended.generated.go | 54 +- .../generated/groupmembership.generated.go | 24 +- .../generated/groupsetting.generated.go | 24 +- internal/graphapi/generated/hush.generated.go | 24 +- .../generated/identityholder.generated.go | 24 +- .../generated/integration.generated.go | 4 +- .../generated/internalpolicy.generated.go | 24 +- .../graphapi/generated/invite.generated.go | 24 +- .../graphapi/generated/jobresult.generated.go | 12 +- .../graphapi/generated/jobrunner.generated.go | 12 +- .../jobrunnerregistrationtoken.generated.go | 12 +- .../generated/jobrunnertoken.generated.go | 12 +- .../generated/jobtemplate.generated.go | 24 +- .../generated/mappabledomain.generated.go | 24 +- .../generated/mappedcontrol.generated.go | 24 +- .../graphapi/generated/narrative.generated.go | 24 +- internal/graphapi/generated/note.generated.go | 5 +- .../generated/notification.generated.go | 8 +- .../notificationpreference.generated.go | 24 +- .../notificationtemplate.generated.go | 24 +- .../generated/onboarding.generated.go | 4 +- .../generated/organization.generated.go | 16 +- .../organizationsetting.generated.go | 24 +- .../generated/orgextended.generated.go | 5 +- .../generated/orgmembership.generated.go | 24 +- .../personalaccesstoken.generated.go | 16 +- .../graphapi/generated/platform.generated.go | 16 +- .../graphapi/generated/prelude.generated.go | 329 +- .../graphapi/generated/procedure.generated.go | 24 +- .../graphapi/generated/program.generated.go | 24 +- .../generated/programextended.generated.go | 5 - .../generated/programmembership.generated.go | 24 +- .../generated/remediation.generated.go | 16 +- .../graphapi/generated/review.generated.go | 16 +- internal/graphapi/generated/risk.generated.go | 24 +- .../graphapi/generated/root_.generated.go | 19665 ++++++++-------- internal/graphapi/generated/scan.generated.go | 24 +- .../generated/scheduledjob.generated.go | 24 +- .../generated/scheduledjobrun.generated.go | 12 +- .../graphapi/generated/search.generated.go | 4 +- .../generated/search_ext.generated.go | 85 +- .../graphapi/generated/standard.generated.go | 16 +- .../generated/subcontrol.generated.go | 24 +- .../generated/subprocessor.generated.go | 24 +- .../generated/subscriber.generated.go | 16 +- .../generated/subscription.generated.go | 2 +- .../generated/tagdefinition.generated.go | 16 +- internal/graphapi/generated/task.generated.go | 24 +- .../graphapi/generated/template.generated.go | 24 +- .../generated/tfasetting.generated.go | 8 +- .../generated/trustcenter.generated.go | 12 +- .../trustcentercompliance.generated.go | 24 +- .../generated/trustcenterdoc.generated.go | 24 +- .../generated/trustcenterdomain.generated.go | 5 +- .../generated/trustcenterentity.generated.go | 16 +- .../generated/trustcenterfaq.generated.go | 24 +- .../generated/trustcenternda.generated.go | 14 +- .../trustcenterndarequest.generated.go | 28 +- .../trustcenterpreviewsetting.generated.go | 5 +- .../generated/trustcentersetting.generated.go | 16 +- .../trustcentersubprocessor.generated.go | 24 +- .../trustcenterwatermarkconfig.generated.go | 16 +- internal/graphapi/generated/user.generated.go | 16 +- .../generated/usersetting.generated.go | 20 +- .../generated/vulnerability.generated.go | 16 +- .../vulnerability_extended.generated.go | 5 +- .../vulnerability_summary.generated.go | 47 +- .../graphapi/generated/webauthn.generated.go | 4 +- .../generated/workflowadmin.generated.go | 14 +- .../workflowassignmentextended.generated.go | 8 +- .../generated/workflowdefinition.generated.go | 16 +- .../workflowdefinitionextended.generated.go | 89 +- .../workflowinstanceextended.generated.go | 85 +- .../workflowproposalextended.generated.go | 13 +- .../historygenerated/ent.generated.go | 10409 ++------ .../historygenerated/prelude.generated.go | 329 +- .../historygenerated/root_.generated.go | 9657 ++++---- .../checksum/.history_schema_checksum | 2 +- .../testclient/checksum/.client_checksum | 2 +- 123 files changed, 20917 insertions(+), 36233 deletions(-) diff --git a/.task/checksum/generate-ent-smart b/.task/checksum/generate-ent-smart index d121e94afe..3dd8ae9d91 100644 --- a/.task/checksum/generate-ent-smart +++ b/.task/checksum/generate-ent-smart @@ -1 +1 @@ -f670462bfc175e35ac6916a5b473d1a7 +bc97112060064a0367b26d233edd5551 diff --git a/.task/checksum/generate-graphql-smart b/.task/checksum/generate-graphql-smart index a6c390f4e7..b960407429 100644 --- a/.task/checksum/generate-graphql-smart +++ b/.task/checksum/generate-graphql-smart @@ -1 +1 @@ -a11929fa810e3184318b12fe761a218 +9a11019d5ad3213ea43292c4dd320cd diff --git a/cli/go.mod b/cli/go.mod index e198153e04..f8291e0e3b 100644 --- a/cli/go.mod +++ b/cli/go.mod @@ -29,6 +29,7 @@ require ( require ( al.essio.dev/pkg/shellescape v1.6.0 // indirect + github.com/alicebob/miniredis/v2 v2.37.0 // indirect github.com/bahlo/generic-list-go v0.2.0 // indirect github.com/buger/jsonparser v1.1.1 // indirect github.com/cespare/xxhash/v2 v2.3.0 // indirect diff --git a/cli/go.sum b/cli/go.sum index 08ad6fc664..c2e8ae84f9 100644 --- a/cli/go.sum +++ b/cli/go.sum @@ -6,8 +6,7 @@ github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 h1:ZBbLwSJqkH github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2/go.mod h1:VSw57q4QFiWDbRnjdX8Cb3Ow0SFncRw+bA/ofY6Q83w= github.com/agnivade/levenshtein v1.2.1 h1:EHBY3UOn1gwdy/VbFwgo4cxecRznFk7fKWN1KOX7eoM= github.com/agnivade/levenshtein v1.2.1/go.mod h1:QVVI16kDrtSuwcpd0p1+xMC6Z/VfhtCyDIjcwga4/DU= -github.com/alicebob/miniredis/v2 v2.36.1 h1:Dvc5oAnNOr7BIfPn7tF269U8DvRW1dBG2D5n0WrfYMI= -github.com/alicebob/miniredis/v2 v2.36.1/go.mod h1:TcL7YfarKPGDAthEtl5NBeHZfeUQj6OXMm/+iu5cLMM= +github.com/alicebob/miniredis/v2 v2.37.0 h1:RheObYW32G1aiJIj81XVt78ZHJpHonHLHW7OLIshq68= github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ= github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk= diff --git a/internal/ent/checksum/.history_schema_checksum b/internal/ent/checksum/.history_schema_checksum index 098522b538..4d58604576 100644 --- a/internal/ent/checksum/.history_schema_checksum +++ b/internal/ent/checksum/.history_schema_checksum @@ -1 +1 @@ -9799fe17fb4256a7df5d9e064bd04f6a3d9d275eef04e164edb8acb1266f337d \ No newline at end of file +b70c80ada6dc313778439ffd3c4855bb6b021abc7e777e691e6a778556cd1648 \ No newline at end of file diff --git a/internal/ent/checksum/.schema_checksum b/internal/ent/checksum/.schema_checksum index f6a021e684..2135d74044 100644 --- a/internal/ent/checksum/.schema_checksum +++ b/internal/ent/checksum/.schema_checksum @@ -1 +1 @@ -2b5916313bfeaef2aece947018ce7c69102ee71b4bc3b5af67873dd3c24d44a9 \ No newline at end of file +71076f05700cb25041318216dcb8aa9cd8cbf08c5366c0b7f48507c05cb54d8a \ No newline at end of file diff --git a/internal/ent/notifications/standard_update.go b/internal/ent/notifications/standard_update.go index a9c5060b57..2a0cbf2f23 100644 --- a/internal/ent/notifications/standard_update.go +++ b/internal/ent/notifications/standard_update.go @@ -30,7 +30,7 @@ func handleStandardMutation(ctx gala.HandlerContext, payload eventqueue.Mutation return nil } - client, ok := eventqueue.ClientFromHandler(ctx) + ctx, client, ok := eventqueue.ClientFromHandler(ctx) if !ok { return ErrFailedToGetClient } diff --git a/internal/graphapi/checksum/.history_schema_checksum b/internal/graphapi/checksum/.history_schema_checksum index 53e00e3e90..736dab1fef 100644 --- a/internal/graphapi/checksum/.history_schema_checksum +++ b/internal/graphapi/checksum/.history_schema_checksum @@ -1 +1 @@ -e496c5ff00789b85608926fbcc0a37f4cfab973560b8481c4c0317c782758a9e \ No newline at end of file +a720cc2d0f8ae83a16640f03860f9663b5e5cc71f25efd05e4c02bbb8f59cfe0 \ No newline at end of file diff --git a/internal/graphapi/checksum/.schema_checksum b/internal/graphapi/checksum/.schema_checksum index 5925560e84..3b51766c3a 100644 --- a/internal/graphapi/checksum/.schema_checksum +++ b/internal/graphapi/checksum/.schema_checksum @@ -1 +1 @@ -25b209af2446f9dd931cd99e164b841b8674a6a4d8841370e353f3f52b434e03 \ No newline at end of file +58104a5fb81319de0377a6547a776b4c07ae3dff15dac2636d554382fa782744 \ No newline at end of file diff --git a/internal/graphapi/clientschema/checksum/.schema_checksum b/internal/graphapi/clientschema/checksum/.schema_checksum index c713227675..ce5c28813e 100644 --- a/internal/graphapi/clientschema/checksum/.schema_checksum +++ b/internal/graphapi/clientschema/checksum/.schema_checksum @@ -1 +1 @@ -80c06cda7a14bfe5d4bc3c378424023f69185c0eb12193e8b315aa183e885dbc \ No newline at end of file +4347d75b2be23be38a9c08fb6e701df10b95d97dc06fe0fb41fefac8db890cde \ No newline at end of file diff --git a/internal/graphapi/generated/actionplan.generated.go b/internal/graphapi/generated/actionplan.generated.go index 9804f840e2..02e30e6e68 100644 --- a/internal/graphapi/generated/actionplan.generated.go +++ b/internal/graphapi/generated/actionplan.generated.go @@ -8548,7 +8548,7 @@ func (ec *executionContext) _Mutation_createActionPlan(ctx context.Context, fiel ec.fieldContext_Mutation_createActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateActionPlan(ctx, fc.Args["input"].(generated.CreateActionPlanInput)) + return ec.Resolvers.Mutation().CreateActionPlan(ctx, fc.Args["input"].(generated.CreateActionPlanInput)) }, nil, ec.marshalNActionPlanCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanCreatePayload, @@ -8593,7 +8593,7 @@ func (ec *executionContext) _Mutation_createBulkActionPlan(ctx context.Context, ec.fieldContext_Mutation_createBulkActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkActionPlan(ctx, fc.Args["input"].([]*generated.CreateActionPlanInput)) + return ec.Resolvers.Mutation().CreateBulkActionPlan(ctx, fc.Args["input"].([]*generated.CreateActionPlanInput)) }, nil, ec.marshalNActionPlanBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanBulkCreatePayload, @@ -8638,7 +8638,7 @@ func (ec *executionContext) _Mutation_createBulkCSVActionPlan(ctx context.Contex ec.fieldContext_Mutation_createBulkCSVActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVActionPlan(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVActionPlan(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNActionPlanBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanBulkCreatePayload, @@ -8683,7 +8683,7 @@ func (ec *executionContext) _Mutation_updateBulkActionPlan(ctx context.Context, ec.fieldContext_Mutation_updateBulkActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkActionPlan(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateActionPlanInput)) + return ec.Resolvers.Mutation().UpdateBulkActionPlan(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateActionPlanInput)) }, nil, ec.marshalNActionPlanBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanBulkUpdatePayload, @@ -8730,7 +8730,7 @@ func (ec *executionContext) _Mutation_updateActionPlan(ctx context.Context, fiel ec.fieldContext_Mutation_updateActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateActionPlan(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateActionPlanInput)) + return ec.Resolvers.Mutation().UpdateActionPlan(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateActionPlanInput)) }, nil, ec.marshalNActionPlanUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanUpdatePayload, @@ -8775,7 +8775,7 @@ func (ec *executionContext) _Mutation_deleteActionPlan(ctx context.Context, fiel ec.fieldContext_Mutation_deleteActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteActionPlan(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteActionPlan(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNActionPlanDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanDeletePayload, @@ -8820,7 +8820,7 @@ func (ec *executionContext) _Mutation_deleteBulkActionPlan(ctx context.Context, ec.fieldContext_Mutation_deleteBulkActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkActionPlan(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkActionPlan(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNActionPlanBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanBulkDeletePayload, @@ -8865,7 +8865,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVActionPlan(ctx context.Contex ec.fieldContext_Mutation_updateBulkCSVActionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVActionPlan(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVActionPlan(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNActionPlanBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionPlanBulkUpdatePayload, @@ -8912,7 +8912,7 @@ func (ec *executionContext) _Mutation_createAPIToken(ctx context.Context, field ec.fieldContext_Mutation_createAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateAPIToken(ctx, fc.Args["input"].(generated.CreateAPITokenInput)) + return ec.Resolvers.Mutation().CreateAPIToken(ctx, fc.Args["input"].(generated.CreateAPITokenInput)) }, nil, ec.marshalNAPITokenCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenCreatePayload, @@ -8957,7 +8957,7 @@ func (ec *executionContext) _Mutation_createBulkAPIToken(ctx context.Context, fi ec.fieldContext_Mutation_createBulkAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkAPIToken(ctx, fc.Args["input"].([]*generated.CreateAPITokenInput)) + return ec.Resolvers.Mutation().CreateBulkAPIToken(ctx, fc.Args["input"].([]*generated.CreateAPITokenInput)) }, nil, ec.marshalNAPITokenBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenBulkCreatePayload, @@ -9002,7 +9002,7 @@ func (ec *executionContext) _Mutation_createBulkCSVAPIToken(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVAPIToken(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVAPIToken(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNAPITokenBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenBulkCreatePayload, @@ -9047,7 +9047,7 @@ func (ec *executionContext) _Mutation_updateAPIToken(ctx context.Context, field ec.fieldContext_Mutation_updateAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateAPIToken(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateAPITokenInput)) + return ec.Resolvers.Mutation().UpdateAPIToken(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateAPITokenInput)) }, nil, ec.marshalNAPITokenUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenUpdatePayload, @@ -9092,7 +9092,7 @@ func (ec *executionContext) _Mutation_deleteAPIToken(ctx context.Context, field ec.fieldContext_Mutation_deleteAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteAPIToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteAPIToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAPITokenDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenDeletePayload, @@ -9137,7 +9137,7 @@ func (ec *executionContext) _Mutation_deleteBulkAPIToken(ctx context.Context, fi ec.fieldContext_Mutation_deleteBulkAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkAPIToken(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkAPIToken(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNAPITokenBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenBulkDeletePayload, @@ -9182,7 +9182,7 @@ func (ec *executionContext) _Mutation_updateBulkAPIToken(ctx context.Context, fi ec.fieldContext_Mutation_updateBulkAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkAPIToken(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateAPITokenInput)) + return ec.Resolvers.Mutation().UpdateBulkAPIToken(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateAPITokenInput)) }, nil, ec.marshalNAPITokenBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenBulkUpdatePayload, @@ -9229,7 +9229,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVAPIToken(ctx context.Context, ec.fieldContext_Mutation_updateBulkCSVAPIToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVAPIToken(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVAPIToken(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNAPITokenBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAPITokenBulkUpdatePayload, @@ -9276,7 +9276,7 @@ func (ec *executionContext) _Mutation_createAssessment(ctx context.Context, fiel ec.fieldContext_Mutation_createAssessment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateAssessment(ctx, fc.Args["input"].(generated.CreateAssessmentInput)) + return ec.Resolvers.Mutation().CreateAssessment(ctx, fc.Args["input"].(generated.CreateAssessmentInput)) }, nil, ec.marshalNAssessmentCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssessmentCreatePayload, @@ -9321,7 +9321,7 @@ func (ec *executionContext) _Mutation_updateAssessment(ctx context.Context, fiel ec.fieldContext_Mutation_updateAssessment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateAssessment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateAssessmentInput)) + return ec.Resolvers.Mutation().UpdateAssessment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateAssessmentInput)) }, nil, ec.marshalNAssessmentUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssessmentUpdatePayload, @@ -9366,7 +9366,7 @@ func (ec *executionContext) _Mutation_deleteAssessment(ctx context.Context, fiel ec.fieldContext_Mutation_deleteAssessment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteAssessment(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteAssessment(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAssessmentDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssessmentDeletePayload, @@ -9411,7 +9411,7 @@ func (ec *executionContext) _Mutation_deleteBulkAssessment(ctx context.Context, ec.fieldContext_Mutation_deleteBulkAssessment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkAssessment(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkAssessment(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNAssessmentBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssessmentBulkDeletePayload, @@ -9456,7 +9456,7 @@ func (ec *executionContext) _Mutation_createAssessmentResponse(ctx context.Conte ec.fieldContext_Mutation_createAssessmentResponse, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateAssessmentResponse(ctx, fc.Args["input"].(generated.CreateAssessmentResponseInput)) + return ec.Resolvers.Mutation().CreateAssessmentResponse(ctx, fc.Args["input"].(generated.CreateAssessmentResponseInput)) }, nil, ec.marshalNAssessmentResponseCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssessmentResponseCreatePayload, @@ -9501,7 +9501,7 @@ func (ec *executionContext) _Mutation_deleteAssessmentResponse(ctx context.Conte ec.fieldContext_Mutation_deleteAssessmentResponse, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteAssessmentResponse(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteAssessmentResponse(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAssessmentResponseDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssessmentResponseDeletePayload, @@ -9546,7 +9546,7 @@ func (ec *executionContext) _Mutation_createAsset(ctx context.Context, field gra ec.fieldContext_Mutation_createAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateAsset(ctx, fc.Args["input"].(generated.CreateAssetInput)) + return ec.Resolvers.Mutation().CreateAsset(ctx, fc.Args["input"].(generated.CreateAssetInput)) }, nil, ec.marshalNAssetCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetCreatePayload, @@ -9591,7 +9591,7 @@ func (ec *executionContext) _Mutation_createBulkAsset(ctx context.Context, field ec.fieldContext_Mutation_createBulkAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkAsset(ctx, fc.Args["input"].([]*generated.CreateAssetInput)) + return ec.Resolvers.Mutation().CreateBulkAsset(ctx, fc.Args["input"].([]*generated.CreateAssetInput)) }, nil, ec.marshalNAssetBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetBulkCreatePayload, @@ -9636,7 +9636,7 @@ func (ec *executionContext) _Mutation_createBulkCSVAsset(ctx context.Context, fi ec.fieldContext_Mutation_createBulkCSVAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVAsset(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVAsset(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNAssetBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetBulkCreatePayload, @@ -9681,7 +9681,7 @@ func (ec *executionContext) _Mutation_updateAsset(ctx context.Context, field gra ec.fieldContext_Mutation_updateAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateAsset(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateAssetInput)) + return ec.Resolvers.Mutation().UpdateAsset(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateAssetInput)) }, nil, ec.marshalNAssetUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetUpdatePayload, @@ -9726,7 +9726,7 @@ func (ec *executionContext) _Mutation_deleteAsset(ctx context.Context, field gra ec.fieldContext_Mutation_deleteAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteAsset(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteAsset(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAssetDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetDeletePayload, @@ -9771,7 +9771,7 @@ func (ec *executionContext) _Mutation_deleteBulkAsset(ctx context.Context, field ec.fieldContext_Mutation_deleteBulkAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkAsset(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkAsset(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNAssetBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetBulkDeletePayload, @@ -9816,7 +9816,7 @@ func (ec *executionContext) _Mutation_updateBulkAsset(ctx context.Context, field ec.fieldContext_Mutation_updateBulkAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkAsset(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateAssetInput)) + return ec.Resolvers.Mutation().UpdateBulkAsset(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateAssetInput)) }, nil, ec.marshalNAssetBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetBulkUpdatePayload, @@ -9863,7 +9863,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVAsset(ctx context.Context, fi ec.fieldContext_Mutation_updateBulkCSVAsset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVAsset(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVAsset(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNAssetBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐAssetBulkUpdatePayload, @@ -9910,7 +9910,7 @@ func (ec *executionContext) _Mutation_createCampaign(ctx context.Context, field ec.fieldContext_Mutation_createCampaign, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateCampaign(ctx, fc.Args["input"].(generated.CreateCampaignInput)) + return ec.Resolvers.Mutation().CreateCampaign(ctx, fc.Args["input"].(generated.CreateCampaignInput)) }, nil, ec.marshalNCampaignCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignCreatePayload, @@ -9955,7 +9955,7 @@ func (ec *executionContext) _Mutation_createBulkCampaign(ctx context.Context, fi ec.fieldContext_Mutation_createBulkCampaign, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCampaign(ctx, fc.Args["input"].([]*generated.CreateCampaignInput)) + return ec.Resolvers.Mutation().CreateBulkCampaign(ctx, fc.Args["input"].([]*generated.CreateCampaignInput)) }, nil, ec.marshalNCampaignBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignBulkCreatePayload, @@ -10000,7 +10000,7 @@ func (ec *executionContext) _Mutation_createBulkCSVCampaign(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVCampaign, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVCampaign(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVCampaign(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNCampaignBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignBulkCreatePayload, @@ -10045,7 +10045,7 @@ func (ec *executionContext) _Mutation_updateCampaign(ctx context.Context, field ec.fieldContext_Mutation_updateCampaign, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateCampaign(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCampaignInput)) + return ec.Resolvers.Mutation().UpdateCampaign(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCampaignInput)) }, nil, ec.marshalNCampaignUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignUpdatePayload, @@ -10090,7 +10090,7 @@ func (ec *executionContext) _Mutation_deleteCampaign(ctx context.Context, field ec.fieldContext_Mutation_deleteCampaign, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteCampaign(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteCampaign(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCampaignDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignDeletePayload, @@ -10135,7 +10135,7 @@ func (ec *executionContext) _Mutation_createCampaignWithTargets(ctx context.Cont ec.fieldContext_Mutation_createCampaignWithTargets, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateCampaignWithTargets(ctx, fc.Args["input"].(model.CreateCampaignWithTargetsInput)) + return ec.Resolvers.Mutation().CreateCampaignWithTargets(ctx, fc.Args["input"].(model.CreateCampaignWithTargetsInput)) }, nil, ec.marshalNCampaignCreateWithTargetsPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignCreateWithTargetsPayload, @@ -10182,7 +10182,7 @@ func (ec *executionContext) _Mutation_createCampaignWithTargetsCSV(ctx context.C ec.fieldContext_Mutation_createCampaignWithTargetsCSV, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateCampaignWithTargetsCSV(ctx, fc.Args["campaign"].(generated.CreateCampaignInput), fc.Args["targets"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateCampaignWithTargetsCSV(ctx, fc.Args["campaign"].(generated.CreateCampaignInput), fc.Args["targets"].(graphql.Upload)) }, nil, ec.marshalNCampaignCreateWithTargetsPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignCreateWithTargetsPayload, @@ -10229,7 +10229,7 @@ func (ec *executionContext) _Mutation_launchCampaign(ctx context.Context, field ec.fieldContext_Mutation_launchCampaign, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().LaunchCampaign(ctx, fc.Args["input"].(model.LaunchCampaignInput)) + return ec.Resolvers.Mutation().LaunchCampaign(ctx, fc.Args["input"].(model.LaunchCampaignInput)) }, nil, ec.marshalNCampaignLaunchPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignLaunchPayload, @@ -10278,7 +10278,7 @@ func (ec *executionContext) _Mutation_resendCampaignIncompleteTargets(ctx contex ec.fieldContext_Mutation_resendCampaignIncompleteTargets, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().ResendCampaignIncompleteTargets(ctx, fc.Args["input"].(model.ResendCampaignIncompleteInput)) + return ec.Resolvers.Mutation().ResendCampaignIncompleteTargets(ctx, fc.Args["input"].(model.ResendCampaignIncompleteInput)) }, nil, ec.marshalNCampaignLaunchPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignLaunchPayload, @@ -10327,7 +10327,7 @@ func (ec *executionContext) _Mutation_sendCampaignTestEmail(ctx context.Context, ec.fieldContext_Mutation_sendCampaignTestEmail, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().SendCampaignTestEmail(ctx, fc.Args["input"].(model.SendCampaignTestEmailInput)) + return ec.Resolvers.Mutation().SendCampaignTestEmail(ctx, fc.Args["input"].(model.SendCampaignTestEmailInput)) }, nil, ec.marshalNCampaignTestEmailPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignTestEmailPayload, @@ -10376,7 +10376,7 @@ func (ec *executionContext) _Mutation_createCampaignTarget(ctx context.Context, ec.fieldContext_Mutation_createCampaignTarget, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateCampaignTarget(ctx, fc.Args["input"].(generated.CreateCampaignTargetInput)) + return ec.Resolvers.Mutation().CreateCampaignTarget(ctx, fc.Args["input"].(generated.CreateCampaignTargetInput)) }, nil, ec.marshalNCampaignTargetCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignTargetCreatePayload, @@ -10421,7 +10421,7 @@ func (ec *executionContext) _Mutation_createBulkCampaignTarget(ctx context.Conte ec.fieldContext_Mutation_createBulkCampaignTarget, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCampaignTarget(ctx, fc.Args["input"].([]*generated.CreateCampaignTargetInput)) + return ec.Resolvers.Mutation().CreateBulkCampaignTarget(ctx, fc.Args["input"].([]*generated.CreateCampaignTargetInput)) }, nil, ec.marshalNCampaignTargetBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignTargetBulkCreatePayload, @@ -10466,7 +10466,7 @@ func (ec *executionContext) _Mutation_createBulkCSVCampaignTarget(ctx context.Co ec.fieldContext_Mutation_createBulkCSVCampaignTarget, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVCampaignTarget(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVCampaignTarget(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNCampaignTargetBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignTargetBulkCreatePayload, @@ -10511,7 +10511,7 @@ func (ec *executionContext) _Mutation_updateCampaignTarget(ctx context.Context, ec.fieldContext_Mutation_updateCampaignTarget, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateCampaignTarget(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCampaignTargetInput)) + return ec.Resolvers.Mutation().UpdateCampaignTarget(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCampaignTargetInput)) }, nil, ec.marshalNCampaignTargetUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignTargetUpdatePayload, @@ -10556,7 +10556,7 @@ func (ec *executionContext) _Mutation_deleteCampaignTarget(ctx context.Context, ec.fieldContext_Mutation_deleteCampaignTarget, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteCampaignTarget(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteCampaignTarget(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCampaignTargetDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCampaignTargetDeletePayload, @@ -10601,7 +10601,7 @@ func (ec *executionContext) _Mutation_createContact(ctx context.Context, field g ec.fieldContext_Mutation_createContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateContact(ctx, fc.Args["input"].(generated.CreateContactInput)) + return ec.Resolvers.Mutation().CreateContact(ctx, fc.Args["input"].(generated.CreateContactInput)) }, nil, ec.marshalNContactCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactCreatePayload, @@ -10646,7 +10646,7 @@ func (ec *executionContext) _Mutation_createBulkContact(ctx context.Context, fie ec.fieldContext_Mutation_createBulkContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkContact(ctx, fc.Args["input"].([]*generated.CreateContactInput)) + return ec.Resolvers.Mutation().CreateBulkContact(ctx, fc.Args["input"].([]*generated.CreateContactInput)) }, nil, ec.marshalNContactBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactBulkCreatePayload, @@ -10691,7 +10691,7 @@ func (ec *executionContext) _Mutation_createBulkCSVContact(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVContact(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVContact(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNContactBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactBulkCreatePayload, @@ -10736,7 +10736,7 @@ func (ec *executionContext) _Mutation_updateBulkContact(ctx context.Context, fie ec.fieldContext_Mutation_updateBulkContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkContact(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateContactInput)) + return ec.Resolvers.Mutation().UpdateBulkContact(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateContactInput)) }, nil, ec.marshalNContactBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactBulkUpdatePayload, @@ -10783,7 +10783,7 @@ func (ec *executionContext) _Mutation_updateContact(ctx context.Context, field g ec.fieldContext_Mutation_updateContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateContact(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateContactInput)) + return ec.Resolvers.Mutation().UpdateContact(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateContactInput)) }, nil, ec.marshalNContactUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactUpdatePayload, @@ -10828,7 +10828,7 @@ func (ec *executionContext) _Mutation_deleteContact(ctx context.Context, field g ec.fieldContext_Mutation_deleteContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteContact(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteContact(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNContactDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactDeletePayload, @@ -10873,7 +10873,7 @@ func (ec *executionContext) _Mutation_deleteBulkContact(ctx context.Context, fie ec.fieldContext_Mutation_deleteBulkContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkContact(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkContact(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNContactBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactBulkDeletePayload, @@ -10918,7 +10918,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVContact(ctx context.Context, ec.fieldContext_Mutation_updateBulkCSVContact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVContact(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVContact(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNContactBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐContactBulkUpdatePayload, @@ -10965,7 +10965,7 @@ func (ec *executionContext) _Mutation_createControl(ctx context.Context, field g ec.fieldContext_Mutation_createControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateControl(ctx, fc.Args["input"].(generated.CreateControlInput)) + return ec.Resolvers.Mutation().CreateControl(ctx, fc.Args["input"].(generated.CreateControlInput)) }, nil, ec.marshalNControlCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCreatePayload, @@ -11010,7 +11010,7 @@ func (ec *executionContext) _Mutation_createBulkControl(ctx context.Context, fie ec.fieldContext_Mutation_createBulkControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkControl(ctx, fc.Args["input"].([]*generated.CreateControlInput)) + return ec.Resolvers.Mutation().CreateBulkControl(ctx, fc.Args["input"].([]*generated.CreateControlInput)) }, nil, ec.marshalNControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlBulkCreatePayload, @@ -11055,7 +11055,7 @@ func (ec *executionContext) _Mutation_createBulkCSVControl(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVControl(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVControl(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlBulkCreatePayload, @@ -11100,7 +11100,7 @@ func (ec *executionContext) _Mutation_updateBulkControl(ctx context.Context, fie ec.fieldContext_Mutation_updateBulkControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkControl(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateControlInput)) + return ec.Resolvers.Mutation().UpdateBulkControl(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateControlInput)) }, nil, ec.marshalNControlBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlBulkUpdatePayload, @@ -11147,7 +11147,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVControl(ctx context.Context, ec.fieldContext_Mutation_updateBulkCSVControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVControl(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVControl(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNControlBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlBulkUpdatePayload, @@ -11194,7 +11194,7 @@ func (ec *executionContext) _Mutation_updateControl(ctx context.Context, field g ec.fieldContext_Mutation_updateControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateControl(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateControlInput)) + return ec.Resolvers.Mutation().UpdateControl(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateControlInput)) }, nil, ec.marshalNControlUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlUpdatePayload, @@ -11239,7 +11239,7 @@ func (ec *executionContext) _Mutation_deleteControl(ctx context.Context, field g ec.fieldContext_Mutation_deleteControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteControl(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteControl(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNControlDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlDeletePayload, @@ -11284,7 +11284,7 @@ func (ec *executionContext) _Mutation_deleteBulkControl(ctx context.Context, fie ec.fieldContext_Mutation_deleteBulkControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkControl(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkControl(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNControlBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlBulkDeletePayload, @@ -11329,7 +11329,7 @@ func (ec *executionContext) _Mutation_createControlsByClone(ctx context.Context, ec.fieldContext_Mutation_createControlsByClone, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateControlsByClone(ctx, fc.Args["input"].(*model.CloneControlInput)) + return ec.Resolvers.Mutation().CreateControlsByClone(ctx, fc.Args["input"].(*model.CloneControlInput)) }, nil, ec.marshalNControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlBulkCreatePayload, @@ -11374,7 +11374,7 @@ func (ec *executionContext) _Mutation_cloneBulkCSVControl(ctx context.Context, f ec.fieldContext_Mutation_cloneBulkCSVControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CloneBulkCSVControl(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CloneBulkCSVControl(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlBulkCreatePayload, @@ -11419,7 +11419,7 @@ func (ec *executionContext) _Mutation_createControlImplementation(ctx context.Co ec.fieldContext_Mutation_createControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateControlImplementation(ctx, fc.Args["input"].(generated.CreateControlImplementationInput)) + return ec.Resolvers.Mutation().CreateControlImplementation(ctx, fc.Args["input"].(generated.CreateControlImplementationInput)) }, nil, ec.marshalNControlImplementationCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationCreatePayload, @@ -11464,7 +11464,7 @@ func (ec *executionContext) _Mutation_createBulkControlImplementation(ctx contex ec.fieldContext_Mutation_createBulkControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkControlImplementation(ctx, fc.Args["input"].([]*generated.CreateControlImplementationInput)) + return ec.Resolvers.Mutation().CreateBulkControlImplementation(ctx, fc.Args["input"].([]*generated.CreateControlImplementationInput)) }, nil, ec.marshalNControlImplementationBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationBulkCreatePayload, @@ -11509,7 +11509,7 @@ func (ec *executionContext) _Mutation_createBulkCSVControlImplementation(ctx con ec.fieldContext_Mutation_createBulkCSVControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVControlImplementation(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVControlImplementation(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNControlImplementationBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationBulkCreatePayload, @@ -11554,7 +11554,7 @@ func (ec *executionContext) _Mutation_updateControlImplementation(ctx context.Co ec.fieldContext_Mutation_updateControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateControlImplementation(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateControlImplementationInput)) + return ec.Resolvers.Mutation().UpdateControlImplementation(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateControlImplementationInput)) }, nil, ec.marshalNControlImplementationUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationUpdatePayload, @@ -11599,7 +11599,7 @@ func (ec *executionContext) _Mutation_deleteControlImplementation(ctx context.Co ec.fieldContext_Mutation_deleteControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteControlImplementation(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteControlImplementation(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNControlImplementationDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationDeletePayload, @@ -11644,7 +11644,7 @@ func (ec *executionContext) _Mutation_deleteBulkControlImplementation(ctx contex ec.fieldContext_Mutation_deleteBulkControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkControlImplementation(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkControlImplementation(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNControlImplementationBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationBulkDeletePayload, @@ -11689,7 +11689,7 @@ func (ec *executionContext) _Mutation_updateBulkControlImplementation(ctx contex ec.fieldContext_Mutation_updateBulkControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkControlImplementation(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateControlImplementationInput)) + return ec.Resolvers.Mutation().UpdateBulkControlImplementation(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateControlImplementationInput)) }, nil, ec.marshalNControlImplementationBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationBulkUpdatePayload, @@ -11736,7 +11736,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVControlImplementation(ctx con ec.fieldContext_Mutation_updateBulkCSVControlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVControlImplementation(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVControlImplementation(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNControlImplementationBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlImplementationBulkUpdatePayload, @@ -11783,7 +11783,7 @@ func (ec *executionContext) _Mutation_createControlObjective(ctx context.Context ec.fieldContext_Mutation_createControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateControlObjective(ctx, fc.Args["input"].(generated.CreateControlObjectiveInput)) + return ec.Resolvers.Mutation().CreateControlObjective(ctx, fc.Args["input"].(generated.CreateControlObjectiveInput)) }, nil, ec.marshalNControlObjectiveCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveCreatePayload, @@ -11828,7 +11828,7 @@ func (ec *executionContext) _Mutation_createBulkControlObjective(ctx context.Con ec.fieldContext_Mutation_createBulkControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkControlObjective(ctx, fc.Args["input"].([]*generated.CreateControlObjectiveInput)) + return ec.Resolvers.Mutation().CreateBulkControlObjective(ctx, fc.Args["input"].([]*generated.CreateControlObjectiveInput)) }, nil, ec.marshalNControlObjectiveBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveBulkCreatePayload, @@ -11873,7 +11873,7 @@ func (ec *executionContext) _Mutation_createBulkCSVControlObjective(ctx context. ec.fieldContext_Mutation_createBulkCSVControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVControlObjective(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVControlObjective(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNControlObjectiveBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveBulkCreatePayload, @@ -11918,7 +11918,7 @@ func (ec *executionContext) _Mutation_updateControlObjective(ctx context.Context ec.fieldContext_Mutation_updateControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateControlObjective(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateControlObjectiveInput)) + return ec.Resolvers.Mutation().UpdateControlObjective(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateControlObjectiveInput)) }, nil, ec.marshalNControlObjectiveUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveUpdatePayload, @@ -11963,7 +11963,7 @@ func (ec *executionContext) _Mutation_deleteControlObjective(ctx context.Context ec.fieldContext_Mutation_deleteControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteControlObjective(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteControlObjective(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNControlObjectiveDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveDeletePayload, @@ -12008,7 +12008,7 @@ func (ec *executionContext) _Mutation_deleteBulkControlObjective(ctx context.Con ec.fieldContext_Mutation_deleteBulkControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkControlObjective(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkControlObjective(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNControlObjectiveBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveBulkDeletePayload, @@ -12053,7 +12053,7 @@ func (ec *executionContext) _Mutation_updateBulkControlObjective(ctx context.Con ec.fieldContext_Mutation_updateBulkControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkControlObjective(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateControlObjectiveInput)) + return ec.Resolvers.Mutation().UpdateBulkControlObjective(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateControlObjectiveInput)) }, nil, ec.marshalNControlObjectiveBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveBulkUpdatePayload, @@ -12100,7 +12100,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVControlObjective(ctx context. ec.fieldContext_Mutation_updateBulkCSVControlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVControlObjective(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVControlObjective(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNControlObjectiveBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlObjectiveBulkUpdatePayload, @@ -12147,7 +12147,7 @@ func (ec *executionContext) _Mutation_createCustomDomain(ctx context.Context, fi ec.fieldContext_Mutation_createCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateCustomDomain(ctx, fc.Args["input"].(generated.CreateCustomDomainInput)) + return ec.Resolvers.Mutation().CreateCustomDomain(ctx, fc.Args["input"].(generated.CreateCustomDomainInput)) }, nil, ec.marshalNCustomDomainCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainCreatePayload, @@ -12192,7 +12192,7 @@ func (ec *executionContext) _Mutation_createBulkCustomDomain(ctx context.Context ec.fieldContext_Mutation_createBulkCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCustomDomain(ctx, fc.Args["input"].([]*generated.CreateCustomDomainInput)) + return ec.Resolvers.Mutation().CreateBulkCustomDomain(ctx, fc.Args["input"].([]*generated.CreateCustomDomainInput)) }, nil, ec.marshalNCustomDomainBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainBulkCreatePayload, @@ -12237,7 +12237,7 @@ func (ec *executionContext) _Mutation_createBulkCSVCustomDomain(ctx context.Cont ec.fieldContext_Mutation_createBulkCSVCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVCustomDomain(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVCustomDomain(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNCustomDomainBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainBulkCreatePayload, @@ -12282,7 +12282,7 @@ func (ec *executionContext) _Mutation_updateCustomDomain(ctx context.Context, fi ec.fieldContext_Mutation_updateCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateCustomDomain(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCustomDomainInput)) + return ec.Resolvers.Mutation().UpdateCustomDomain(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCustomDomainInput)) }, nil, ec.marshalNCustomDomainUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainUpdatePayload, @@ -12327,7 +12327,7 @@ func (ec *executionContext) _Mutation_deleteCustomDomain(ctx context.Context, fi ec.fieldContext_Mutation_deleteCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteCustomDomain(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteCustomDomain(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCustomDomainDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainDeletePayload, @@ -12372,7 +12372,7 @@ func (ec *executionContext) _Mutation_deleteBulkCustomDomain(ctx context.Context ec.fieldContext_Mutation_deleteBulkCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkCustomDomain(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkCustomDomain(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNCustomDomainBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainBulkDeletePayload, @@ -12417,7 +12417,7 @@ func (ec *executionContext) _Mutation_validateCustomDomain(ctx context.Context, ec.fieldContext_Mutation_validateCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().ValidateCustomDomain(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().ValidateCustomDomain(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCustomDomainValidatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainValidatePayload, @@ -12462,7 +12462,7 @@ func (ec *executionContext) _Mutation_updateBulkCustomDomain(ctx context.Context ec.fieldContext_Mutation_updateBulkCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCustomDomain(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateCustomDomainInput)) + return ec.Resolvers.Mutation().UpdateBulkCustomDomain(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateCustomDomainInput)) }, nil, ec.marshalNCustomDomainBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainBulkUpdatePayload, @@ -12509,7 +12509,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVCustomDomain(ctx context.Cont ec.fieldContext_Mutation_updateBulkCSVCustomDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVCustomDomain(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVCustomDomain(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNCustomDomainBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomDomainBulkUpdatePayload, @@ -12556,7 +12556,7 @@ func (ec *executionContext) _Mutation_createCustomTypeEnum(ctx context.Context, ec.fieldContext_Mutation_createCustomTypeEnum, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateCustomTypeEnum(ctx, fc.Args["input"].(generated.CreateCustomTypeEnumInput)) + return ec.Resolvers.Mutation().CreateCustomTypeEnum(ctx, fc.Args["input"].(generated.CreateCustomTypeEnumInput)) }, nil, ec.marshalNCustomTypeEnumCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomTypeEnumCreatePayload, @@ -12601,7 +12601,7 @@ func (ec *executionContext) _Mutation_createBulkCustomTypeEnum(ctx context.Conte ec.fieldContext_Mutation_createBulkCustomTypeEnum, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCustomTypeEnum(ctx, fc.Args["input"].([]*generated.CreateCustomTypeEnumInput)) + return ec.Resolvers.Mutation().CreateBulkCustomTypeEnum(ctx, fc.Args["input"].([]*generated.CreateCustomTypeEnumInput)) }, nil, ec.marshalNCustomTypeEnumBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomTypeEnumBulkCreatePayload, @@ -12646,7 +12646,7 @@ func (ec *executionContext) _Mutation_createBulkCSVCustomTypeEnum(ctx context.Co ec.fieldContext_Mutation_createBulkCSVCustomTypeEnum, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVCustomTypeEnum(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVCustomTypeEnum(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNCustomTypeEnumBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomTypeEnumBulkCreatePayload, @@ -12691,7 +12691,7 @@ func (ec *executionContext) _Mutation_updateCustomTypeEnum(ctx context.Context, ec.fieldContext_Mutation_updateCustomTypeEnum, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateCustomTypeEnum(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCustomTypeEnumInput)) + return ec.Resolvers.Mutation().UpdateCustomTypeEnum(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateCustomTypeEnumInput)) }, nil, ec.marshalNCustomTypeEnumUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomTypeEnumUpdatePayload, @@ -12736,7 +12736,7 @@ func (ec *executionContext) _Mutation_deleteCustomTypeEnum(ctx context.Context, ec.fieldContext_Mutation_deleteCustomTypeEnum, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteCustomTypeEnum(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteCustomTypeEnum(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCustomTypeEnumDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐCustomTypeEnumDeletePayload, @@ -12781,7 +12781,7 @@ func (ec *executionContext) _Mutation_createDirectoryAccount(ctx context.Context ec.fieldContext_Mutation_createDirectoryAccount, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateDirectoryAccount(ctx, fc.Args["input"].(generated.CreateDirectoryAccountInput)) + return ec.Resolvers.Mutation().CreateDirectoryAccount(ctx, fc.Args["input"].(generated.CreateDirectoryAccountInput)) }, nil, ec.marshalNDirectoryAccountCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryAccountCreatePayload, @@ -12826,7 +12826,7 @@ func (ec *executionContext) _Mutation_createBulkDirectoryAccount(ctx context.Con ec.fieldContext_Mutation_createBulkDirectoryAccount, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkDirectoryAccount(ctx, fc.Args["input"].([]*generated.CreateDirectoryAccountInput)) + return ec.Resolvers.Mutation().CreateBulkDirectoryAccount(ctx, fc.Args["input"].([]*generated.CreateDirectoryAccountInput)) }, nil, ec.marshalNDirectoryAccountBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryAccountBulkCreatePayload, @@ -12871,7 +12871,7 @@ func (ec *executionContext) _Mutation_createBulkCSVDirectoryAccount(ctx context. ec.fieldContext_Mutation_createBulkCSVDirectoryAccount, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVDirectoryAccount(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVDirectoryAccount(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDirectoryAccountBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryAccountBulkCreatePayload, @@ -12916,7 +12916,7 @@ func (ec *executionContext) _Mutation_updateDirectoryAccount(ctx context.Context ec.fieldContext_Mutation_updateDirectoryAccount, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateDirectoryAccount(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectoryAccountInput)) + return ec.Resolvers.Mutation().UpdateDirectoryAccount(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectoryAccountInput)) }, nil, ec.marshalNDirectoryAccountUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryAccountUpdatePayload, @@ -12961,7 +12961,7 @@ func (ec *executionContext) _Mutation_deleteDirectoryAccount(ctx context.Context ec.fieldContext_Mutation_deleteDirectoryAccount, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteDirectoryAccount(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteDirectoryAccount(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectoryAccountDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryAccountDeletePayload, @@ -13006,7 +13006,7 @@ func (ec *executionContext) _Mutation_createDirectoryGroup(ctx context.Context, ec.fieldContext_Mutation_createDirectoryGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateDirectoryGroup(ctx, fc.Args["input"].(generated.CreateDirectoryGroupInput)) + return ec.Resolvers.Mutation().CreateDirectoryGroup(ctx, fc.Args["input"].(generated.CreateDirectoryGroupInput)) }, nil, ec.marshalNDirectoryGroupCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryGroupCreatePayload, @@ -13051,7 +13051,7 @@ func (ec *executionContext) _Mutation_createBulkDirectoryGroup(ctx context.Conte ec.fieldContext_Mutation_createBulkDirectoryGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkDirectoryGroup(ctx, fc.Args["input"].([]*generated.CreateDirectoryGroupInput)) + return ec.Resolvers.Mutation().CreateBulkDirectoryGroup(ctx, fc.Args["input"].([]*generated.CreateDirectoryGroupInput)) }, nil, ec.marshalNDirectoryGroupBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryGroupBulkCreatePayload, @@ -13096,7 +13096,7 @@ func (ec *executionContext) _Mutation_createBulkCSVDirectoryGroup(ctx context.Co ec.fieldContext_Mutation_createBulkCSVDirectoryGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVDirectoryGroup(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVDirectoryGroup(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDirectoryGroupBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryGroupBulkCreatePayload, @@ -13141,7 +13141,7 @@ func (ec *executionContext) _Mutation_updateDirectoryGroup(ctx context.Context, ec.fieldContext_Mutation_updateDirectoryGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateDirectoryGroup(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectoryGroupInput)) + return ec.Resolvers.Mutation().UpdateDirectoryGroup(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectoryGroupInput)) }, nil, ec.marshalNDirectoryGroupUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryGroupUpdatePayload, @@ -13186,7 +13186,7 @@ func (ec *executionContext) _Mutation_deleteDirectoryGroup(ctx context.Context, ec.fieldContext_Mutation_deleteDirectoryGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteDirectoryGroup(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteDirectoryGroup(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectoryGroupDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryGroupDeletePayload, @@ -13231,7 +13231,7 @@ func (ec *executionContext) _Mutation_createDirectoryMembership(ctx context.Cont ec.fieldContext_Mutation_createDirectoryMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateDirectoryMembership(ctx, fc.Args["input"].(generated.CreateDirectoryMembershipInput)) + return ec.Resolvers.Mutation().CreateDirectoryMembership(ctx, fc.Args["input"].(generated.CreateDirectoryMembershipInput)) }, nil, ec.marshalNDirectoryMembershipCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryMembershipCreatePayload, @@ -13276,7 +13276,7 @@ func (ec *executionContext) _Mutation_createBulkDirectoryMembership(ctx context. ec.fieldContext_Mutation_createBulkDirectoryMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkDirectoryMembership(ctx, fc.Args["input"].([]*generated.CreateDirectoryMembershipInput)) + return ec.Resolvers.Mutation().CreateBulkDirectoryMembership(ctx, fc.Args["input"].([]*generated.CreateDirectoryMembershipInput)) }, nil, ec.marshalNDirectoryMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryMembershipBulkCreatePayload, @@ -13321,7 +13321,7 @@ func (ec *executionContext) _Mutation_createBulkCSVDirectoryMembership(ctx conte ec.fieldContext_Mutation_createBulkCSVDirectoryMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVDirectoryMembership(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVDirectoryMembership(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDirectoryMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryMembershipBulkCreatePayload, @@ -13366,7 +13366,7 @@ func (ec *executionContext) _Mutation_updateDirectoryMembership(ctx context.Cont ec.fieldContext_Mutation_updateDirectoryMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateDirectoryMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectoryMembershipInput)) + return ec.Resolvers.Mutation().UpdateDirectoryMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectoryMembershipInput)) }, nil, ec.marshalNDirectoryMembershipUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryMembershipUpdatePayload, @@ -13411,7 +13411,7 @@ func (ec *executionContext) _Mutation_deleteDirectoryMembership(ctx context.Cont ec.fieldContext_Mutation_deleteDirectoryMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteDirectoryMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteDirectoryMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectoryMembershipDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectoryMembershipDeletePayload, @@ -13456,7 +13456,7 @@ func (ec *executionContext) _Mutation_createDirectorySyncRun(ctx context.Context ec.fieldContext_Mutation_createDirectorySyncRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateDirectorySyncRun(ctx, fc.Args["input"].(generated.CreateDirectorySyncRunInput)) + return ec.Resolvers.Mutation().CreateDirectorySyncRun(ctx, fc.Args["input"].(generated.CreateDirectorySyncRunInput)) }, nil, ec.marshalNDirectorySyncRunCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectorySyncRunCreatePayload, @@ -13501,7 +13501,7 @@ func (ec *executionContext) _Mutation_createBulkDirectorySyncRun(ctx context.Con ec.fieldContext_Mutation_createBulkDirectorySyncRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkDirectorySyncRun(ctx, fc.Args["input"].([]*generated.CreateDirectorySyncRunInput)) + return ec.Resolvers.Mutation().CreateBulkDirectorySyncRun(ctx, fc.Args["input"].([]*generated.CreateDirectorySyncRunInput)) }, nil, ec.marshalNDirectorySyncRunBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectorySyncRunBulkCreatePayload, @@ -13546,7 +13546,7 @@ func (ec *executionContext) _Mutation_createBulkCSVDirectorySyncRun(ctx context. ec.fieldContext_Mutation_createBulkCSVDirectorySyncRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVDirectorySyncRun(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVDirectorySyncRun(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDirectorySyncRunBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectorySyncRunBulkCreatePayload, @@ -13591,7 +13591,7 @@ func (ec *executionContext) _Mutation_updateDirectorySyncRun(ctx context.Context ec.fieldContext_Mutation_updateDirectorySyncRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateDirectorySyncRun(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectorySyncRunInput)) + return ec.Resolvers.Mutation().UpdateDirectorySyncRun(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDirectorySyncRunInput)) }, nil, ec.marshalNDirectorySyncRunUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectorySyncRunUpdatePayload, @@ -13636,7 +13636,7 @@ func (ec *executionContext) _Mutation_deleteDirectorySyncRun(ctx context.Context ec.fieldContext_Mutation_deleteDirectorySyncRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteDirectorySyncRun(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteDirectorySyncRun(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectorySyncRunDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDirectorySyncRunDeletePayload, @@ -13681,7 +13681,7 @@ func (ec *executionContext) _Mutation_createDiscussion(ctx context.Context, fiel ec.fieldContext_Mutation_createDiscussion, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateDiscussion(ctx, fc.Args["input"].(generated.CreateDiscussionInput)) + return ec.Resolvers.Mutation().CreateDiscussion(ctx, fc.Args["input"].(generated.CreateDiscussionInput)) }, nil, ec.marshalNDiscussionCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDiscussionCreatePayload, @@ -13726,7 +13726,7 @@ func (ec *executionContext) _Mutation_createBulkDiscussion(ctx context.Context, ec.fieldContext_Mutation_createBulkDiscussion, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkDiscussion(ctx, fc.Args["input"].([]*generated.CreateDiscussionInput)) + return ec.Resolvers.Mutation().CreateBulkDiscussion(ctx, fc.Args["input"].([]*generated.CreateDiscussionInput)) }, nil, ec.marshalNDiscussionBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDiscussionBulkCreatePayload, @@ -13771,7 +13771,7 @@ func (ec *executionContext) _Mutation_createBulkCSVDiscussion(ctx context.Contex ec.fieldContext_Mutation_createBulkCSVDiscussion, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVDiscussion(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVDiscussion(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDiscussionBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDiscussionBulkCreatePayload, @@ -13816,7 +13816,7 @@ func (ec *executionContext) _Mutation_updateDiscussion(ctx context.Context, fiel ec.fieldContext_Mutation_updateDiscussion, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateDiscussion(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDiscussionInput)) + return ec.Resolvers.Mutation().UpdateDiscussion(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDiscussionInput)) }, nil, ec.marshalNDiscussionUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDiscussionUpdatePayload, @@ -13861,7 +13861,7 @@ func (ec *executionContext) _Mutation_deleteDiscussion(ctx context.Context, fiel ec.fieldContext_Mutation_deleteDiscussion, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteDiscussion(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteDiscussion(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDiscussionDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDiscussionDeletePayload, @@ -13906,7 +13906,7 @@ func (ec *executionContext) _Mutation_createDNSVerification(ctx context.Context, ec.fieldContext_Mutation_createDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateDNSVerification(ctx, fc.Args["input"].(generated.CreateDNSVerificationInput)) + return ec.Resolvers.Mutation().CreateDNSVerification(ctx, fc.Args["input"].(generated.CreateDNSVerificationInput)) }, nil, ec.marshalNDNSVerificationCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationCreatePayload, @@ -13951,7 +13951,7 @@ func (ec *executionContext) _Mutation_createBulkDNSVerification(ctx context.Cont ec.fieldContext_Mutation_createBulkDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkDNSVerification(ctx, fc.Args["input"].([]*generated.CreateDNSVerificationInput)) + return ec.Resolvers.Mutation().CreateBulkDNSVerification(ctx, fc.Args["input"].([]*generated.CreateDNSVerificationInput)) }, nil, ec.marshalNDNSVerificationBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationBulkCreatePayload, @@ -13996,7 +13996,7 @@ func (ec *executionContext) _Mutation_createBulkCSVDNSVerification(ctx context.C ec.fieldContext_Mutation_createBulkCSVDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVDNSVerification(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVDNSVerification(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDNSVerificationBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationBulkCreatePayload, @@ -14041,7 +14041,7 @@ func (ec *executionContext) _Mutation_updateDNSVerification(ctx context.Context, ec.fieldContext_Mutation_updateDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateDNSVerification(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDNSVerificationInput)) + return ec.Resolvers.Mutation().UpdateDNSVerification(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDNSVerificationInput)) }, nil, ec.marshalNDNSVerificationUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationUpdatePayload, @@ -14086,7 +14086,7 @@ func (ec *executionContext) _Mutation_deleteDNSVerification(ctx context.Context, ec.fieldContext_Mutation_deleteDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteDNSVerification(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteDNSVerification(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDNSVerificationDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationDeletePayload, @@ -14131,7 +14131,7 @@ func (ec *executionContext) _Mutation_deleteBulkDNSVerification(ctx context.Cont ec.fieldContext_Mutation_deleteBulkDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkDNSVerification(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkDNSVerification(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNDNSVerificationBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationBulkDeletePayload, @@ -14176,7 +14176,7 @@ func (ec *executionContext) _Mutation_updateBulkDNSVerification(ctx context.Cont ec.fieldContext_Mutation_updateBulkDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkDNSVerification(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateDNSVerificationInput)) + return ec.Resolvers.Mutation().UpdateBulkDNSVerification(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateDNSVerificationInput)) }, nil, ec.marshalNDNSVerificationBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationBulkUpdatePayload, @@ -14223,7 +14223,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVDNSVerification(ctx context.C ec.fieldContext_Mutation_updateBulkCSVDNSVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVDNSVerification(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVDNSVerification(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDNSVerificationBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDNSVerificationBulkUpdatePayload, @@ -14270,7 +14270,7 @@ func (ec *executionContext) _Mutation_createDocumentData(ctx context.Context, fi ec.fieldContext_Mutation_createDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateDocumentData(ctx, fc.Args["input"].(generated.CreateDocumentDataInput)) + return ec.Resolvers.Mutation().CreateDocumentData(ctx, fc.Args["input"].(generated.CreateDocumentDataInput)) }, nil, ec.marshalNDocumentDataCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataCreatePayload, @@ -14315,7 +14315,7 @@ func (ec *executionContext) _Mutation_createBulkDocumentData(ctx context.Context ec.fieldContext_Mutation_createBulkDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkDocumentData(ctx, fc.Args["input"].([]*generated.CreateDocumentDataInput)) + return ec.Resolvers.Mutation().CreateBulkDocumentData(ctx, fc.Args["input"].([]*generated.CreateDocumentDataInput)) }, nil, ec.marshalNDocumentDataBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataBulkCreatePayload, @@ -14360,7 +14360,7 @@ func (ec *executionContext) _Mutation_createBulkCSVDocumentData(ctx context.Cont ec.fieldContext_Mutation_createBulkCSVDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVDocumentData(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVDocumentData(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDocumentDataBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataBulkCreatePayload, @@ -14405,7 +14405,7 @@ func (ec *executionContext) _Mutation_updateDocumentData(ctx context.Context, fi ec.fieldContext_Mutation_updateDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateDocumentData(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDocumentDataInput), fc.Args["documentDataFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateDocumentData(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateDocumentDataInput), fc.Args["documentDataFile"].(*graphql.Upload)) }, nil, ec.marshalNDocumentDataUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataUpdatePayload, @@ -14450,7 +14450,7 @@ func (ec *executionContext) _Mutation_deleteDocumentData(ctx context.Context, fi ec.fieldContext_Mutation_deleteDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteDocumentData(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteDocumentData(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDocumentDataDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataDeletePayload, @@ -14495,7 +14495,7 @@ func (ec *executionContext) _Mutation_deleteBulkDocumentData(ctx context.Context ec.fieldContext_Mutation_deleteBulkDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkDocumentData(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkDocumentData(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNDocumentDataBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataBulkDeletePayload, @@ -14540,7 +14540,7 @@ func (ec *executionContext) _Mutation_updateBulkDocumentData(ctx context.Context ec.fieldContext_Mutation_updateBulkDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkDocumentData(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateDocumentDataInput)) + return ec.Resolvers.Mutation().UpdateBulkDocumentData(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateDocumentDataInput)) }, nil, ec.marshalNDocumentDataBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataBulkUpdatePayload, @@ -14587,7 +14587,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVDocumentData(ctx context.Cont ec.fieldContext_Mutation_updateBulkCSVDocumentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVDocumentData(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVDocumentData(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNDocumentDataBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐDocumentDataBulkUpdatePayload, @@ -14634,7 +14634,7 @@ func (ec *executionContext) _Mutation_createEmailBranding(ctx context.Context, f ec.fieldContext_Mutation_createEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateEmailBranding(ctx, fc.Args["input"].(generated.CreateEmailBrandingInput)) + return ec.Resolvers.Mutation().CreateEmailBranding(ctx, fc.Args["input"].(generated.CreateEmailBrandingInput)) }, nil, ec.marshalNEmailBrandingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingCreatePayload, @@ -14679,7 +14679,7 @@ func (ec *executionContext) _Mutation_createBulkEmailBranding(ctx context.Contex ec.fieldContext_Mutation_createBulkEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkEmailBranding(ctx, fc.Args["input"].([]*generated.CreateEmailBrandingInput)) + return ec.Resolvers.Mutation().CreateBulkEmailBranding(ctx, fc.Args["input"].([]*generated.CreateEmailBrandingInput)) }, nil, ec.marshalNEmailBrandingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingBulkCreatePayload, @@ -14724,7 +14724,7 @@ func (ec *executionContext) _Mutation_createBulkCSVEmailBranding(ctx context.Con ec.fieldContext_Mutation_createBulkCSVEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVEmailBranding(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVEmailBranding(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEmailBrandingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingBulkCreatePayload, @@ -14769,7 +14769,7 @@ func (ec *executionContext) _Mutation_updateBulkEmailBranding(ctx context.Contex ec.fieldContext_Mutation_updateBulkEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkEmailBranding(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEmailBrandingInput)) + return ec.Resolvers.Mutation().UpdateBulkEmailBranding(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEmailBrandingInput)) }, nil, ec.marshalNEmailBrandingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingBulkUpdatePayload, @@ -14816,7 +14816,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVEmailBranding(ctx context.Con ec.fieldContext_Mutation_updateBulkCSVEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVEmailBranding(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVEmailBranding(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEmailBrandingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingBulkUpdatePayload, @@ -14863,7 +14863,7 @@ func (ec *executionContext) _Mutation_updateEmailBranding(ctx context.Context, f ec.fieldContext_Mutation_updateEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateEmailBranding(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEmailBrandingInput)) + return ec.Resolvers.Mutation().UpdateEmailBranding(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEmailBrandingInput)) }, nil, ec.marshalNEmailBrandingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingUpdatePayload, @@ -14908,7 +14908,7 @@ func (ec *executionContext) _Mutation_deleteEmailBranding(ctx context.Context, f ec.fieldContext_Mutation_deleteEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteEmailBranding(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteEmailBranding(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEmailBrandingDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingDeletePayload, @@ -14953,7 +14953,7 @@ func (ec *executionContext) _Mutation_deleteBulkEmailBranding(ctx context.Contex ec.fieldContext_Mutation_deleteBulkEmailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkEmailBranding(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkEmailBranding(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNEmailBrandingBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailBrandingBulkDeletePayload, @@ -14998,7 +14998,7 @@ func (ec *executionContext) _Mutation_createEmailTemplate(ctx context.Context, f ec.fieldContext_Mutation_createEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateEmailTemplate(ctx, fc.Args["input"].(generated.CreateEmailTemplateInput)) + return ec.Resolvers.Mutation().CreateEmailTemplate(ctx, fc.Args["input"].(generated.CreateEmailTemplateInput)) }, nil, ec.marshalNEmailTemplateCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateCreatePayload, @@ -15043,7 +15043,7 @@ func (ec *executionContext) _Mutation_createBulkEmailTemplate(ctx context.Contex ec.fieldContext_Mutation_createBulkEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkEmailTemplate(ctx, fc.Args["input"].([]*generated.CreateEmailTemplateInput)) + return ec.Resolvers.Mutation().CreateBulkEmailTemplate(ctx, fc.Args["input"].([]*generated.CreateEmailTemplateInput)) }, nil, ec.marshalNEmailTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateBulkCreatePayload, @@ -15088,7 +15088,7 @@ func (ec *executionContext) _Mutation_createBulkCSVEmailTemplate(ctx context.Con ec.fieldContext_Mutation_createBulkCSVEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVEmailTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVEmailTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEmailTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateBulkCreatePayload, @@ -15133,7 +15133,7 @@ func (ec *executionContext) _Mutation_updateBulkEmailTemplate(ctx context.Contex ec.fieldContext_Mutation_updateBulkEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkEmailTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEmailTemplateInput)) + return ec.Resolvers.Mutation().UpdateBulkEmailTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEmailTemplateInput)) }, nil, ec.marshalNEmailTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateBulkUpdatePayload, @@ -15180,7 +15180,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVEmailTemplate(ctx context.Con ec.fieldContext_Mutation_updateBulkCSVEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVEmailTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVEmailTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEmailTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateBulkUpdatePayload, @@ -15227,7 +15227,7 @@ func (ec *executionContext) _Mutation_updateEmailTemplate(ctx context.Context, f ec.fieldContext_Mutation_updateEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateEmailTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEmailTemplateInput)) + return ec.Resolvers.Mutation().UpdateEmailTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEmailTemplateInput)) }, nil, ec.marshalNEmailTemplateUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateUpdatePayload, @@ -15272,7 +15272,7 @@ func (ec *executionContext) _Mutation_deleteEmailTemplate(ctx context.Context, f ec.fieldContext_Mutation_deleteEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteEmailTemplate(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteEmailTemplate(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEmailTemplateDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateDeletePayload, @@ -15317,7 +15317,7 @@ func (ec *executionContext) _Mutation_deleteBulkEmailTemplate(ctx context.Contex ec.fieldContext_Mutation_deleteBulkEmailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkEmailTemplate(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkEmailTemplate(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNEmailTemplateBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEmailTemplateBulkDeletePayload, @@ -15362,7 +15362,7 @@ func (ec *executionContext) _Mutation_createEntity(ctx context.Context, field gr ec.fieldContext_Mutation_createEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateEntity(ctx, fc.Args["input"].(generated.CreateEntityInput), fc.Args["entityTypeName"].(*string)) + return ec.Resolvers.Mutation().CreateEntity(ctx, fc.Args["input"].(generated.CreateEntityInput), fc.Args["entityTypeName"].(*string)) }, nil, ec.marshalNEntityCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityCreatePayload, @@ -15407,7 +15407,7 @@ func (ec *executionContext) _Mutation_createBulkEntity(ctx context.Context, fiel ec.fieldContext_Mutation_createBulkEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkEntity(ctx, fc.Args["input"].([]*generated.CreateEntityInput), fc.Args["entityTypeName"].(*string)) + return ec.Resolvers.Mutation().CreateBulkEntity(ctx, fc.Args["input"].([]*generated.CreateEntityInput), fc.Args["entityTypeName"].(*string)) }, nil, ec.marshalNEntityBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityBulkCreatePayload, @@ -15452,7 +15452,7 @@ func (ec *executionContext) _Mutation_createBulkCSVEntity(ctx context.Context, f ec.fieldContext_Mutation_createBulkCSVEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVEntity(ctx, fc.Args["input"].(graphql.Upload), fc.Args["entityTypeName"].(*string)) + return ec.Resolvers.Mutation().CreateBulkCSVEntity(ctx, fc.Args["input"].(graphql.Upload), fc.Args["entityTypeName"].(*string)) }, nil, ec.marshalNEntityBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityBulkCreatePayload, @@ -15497,7 +15497,7 @@ func (ec *executionContext) _Mutation_updateEntity(ctx context.Context, field gr ec.fieldContext_Mutation_updateEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateEntity(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEntityInput)) + return ec.Resolvers.Mutation().UpdateEntity(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEntityInput)) }, nil, ec.marshalNEntityUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityUpdatePayload, @@ -15542,7 +15542,7 @@ func (ec *executionContext) _Mutation_deleteEntity(ctx context.Context, field gr ec.fieldContext_Mutation_deleteEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteEntity(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteEntity(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEntityDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityDeletePayload, @@ -15587,7 +15587,7 @@ func (ec *executionContext) _Mutation_deleteBulkEntity(ctx context.Context, fiel ec.fieldContext_Mutation_deleteBulkEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkEntity(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkEntity(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNEntityBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityBulkDeletePayload, @@ -15632,7 +15632,7 @@ func (ec *executionContext) _Mutation_updateBulkEntity(ctx context.Context, fiel ec.fieldContext_Mutation_updateBulkEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkEntity(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEntityInput)) + return ec.Resolvers.Mutation().UpdateBulkEntity(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEntityInput)) }, nil, ec.marshalNEntityBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityBulkUpdatePayload, @@ -15679,7 +15679,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVEntity(ctx context.Context, f ec.fieldContext_Mutation_updateBulkCSVEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVEntity(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVEntity(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEntityBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityBulkUpdatePayload, @@ -15726,7 +15726,7 @@ func (ec *executionContext) _Mutation_createEntityType(ctx context.Context, fiel ec.fieldContext_Mutation_createEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateEntityType(ctx, fc.Args["input"].(generated.CreateEntityTypeInput)) + return ec.Resolvers.Mutation().CreateEntityType(ctx, fc.Args["input"].(generated.CreateEntityTypeInput)) }, nil, ec.marshalNEntityTypeCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeCreatePayload, @@ -15771,7 +15771,7 @@ func (ec *executionContext) _Mutation_createBulkEntityType(ctx context.Context, ec.fieldContext_Mutation_createBulkEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkEntityType(ctx, fc.Args["input"].([]*generated.CreateEntityTypeInput)) + return ec.Resolvers.Mutation().CreateBulkEntityType(ctx, fc.Args["input"].([]*generated.CreateEntityTypeInput)) }, nil, ec.marshalNEntityTypeBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeBulkCreatePayload, @@ -15816,7 +15816,7 @@ func (ec *executionContext) _Mutation_createBulkCSVEntityType(ctx context.Contex ec.fieldContext_Mutation_createBulkCSVEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVEntityType(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVEntityType(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEntityTypeBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeBulkCreatePayload, @@ -15861,7 +15861,7 @@ func (ec *executionContext) _Mutation_updateEntityType(ctx context.Context, fiel ec.fieldContext_Mutation_updateEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateEntityType(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEntityTypeInput)) + return ec.Resolvers.Mutation().UpdateEntityType(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEntityTypeInput)) }, nil, ec.marshalNEntityTypeUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeUpdatePayload, @@ -15906,7 +15906,7 @@ func (ec *executionContext) _Mutation_deleteEntityType(ctx context.Context, fiel ec.fieldContext_Mutation_deleteEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteEntityType(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteEntityType(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEntityTypeDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeDeletePayload, @@ -15951,7 +15951,7 @@ func (ec *executionContext) _Mutation_deleteBulkEntityType(ctx context.Context, ec.fieldContext_Mutation_deleteBulkEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkEntityType(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkEntityType(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNEntityTypeBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeBulkDeletePayload, @@ -15996,7 +15996,7 @@ func (ec *executionContext) _Mutation_updateBulkEntityType(ctx context.Context, ec.fieldContext_Mutation_updateBulkEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkEntityType(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEntityTypeInput)) + return ec.Resolvers.Mutation().UpdateBulkEntityType(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEntityTypeInput)) }, nil, ec.marshalNEntityTypeBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeBulkUpdatePayload, @@ -16043,7 +16043,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVEntityType(ctx context.Contex ec.fieldContext_Mutation_updateBulkCSVEntityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVEntityType(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVEntityType(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEntityTypeBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEntityTypeBulkUpdatePayload, @@ -16090,7 +16090,7 @@ func (ec *executionContext) _Mutation_createEvent(ctx context.Context, field gra ec.fieldContext_Mutation_createEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateEvent(ctx, fc.Args["input"].(generated.CreateEventInput)) + return ec.Resolvers.Mutation().CreateEvent(ctx, fc.Args["input"].(generated.CreateEventInput)) }, nil, ec.marshalNEventCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventCreatePayload, @@ -16135,7 +16135,7 @@ func (ec *executionContext) _Mutation_createBulkEvent(ctx context.Context, field ec.fieldContext_Mutation_createBulkEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkEvent(ctx, fc.Args["input"].([]*generated.CreateEventInput)) + return ec.Resolvers.Mutation().CreateBulkEvent(ctx, fc.Args["input"].([]*generated.CreateEventInput)) }, nil, ec.marshalNEventBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventBulkCreatePayload, @@ -16180,7 +16180,7 @@ func (ec *executionContext) _Mutation_createBulkCSVEvent(ctx context.Context, fi ec.fieldContext_Mutation_createBulkCSVEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVEvent(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVEvent(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEventBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventBulkCreatePayload, @@ -16225,7 +16225,7 @@ func (ec *executionContext) _Mutation_updateEvent(ctx context.Context, field gra ec.fieldContext_Mutation_updateEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateEvent(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEventInput)) + return ec.Resolvers.Mutation().UpdateEvent(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEventInput)) }, nil, ec.marshalNEventUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventUpdatePayload, @@ -16270,7 +16270,7 @@ func (ec *executionContext) _Mutation_deleteEvent(ctx context.Context, field gra ec.fieldContext_Mutation_deleteEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteEvent(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteEvent(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEventDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventDeletePayload, @@ -16315,7 +16315,7 @@ func (ec *executionContext) _Mutation_deleteBulkEvent(ctx context.Context, field ec.fieldContext_Mutation_deleteBulkEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkEvent(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkEvent(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNEventBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventBulkDeletePayload, @@ -16360,7 +16360,7 @@ func (ec *executionContext) _Mutation_updateBulkEvent(ctx context.Context, field ec.fieldContext_Mutation_updateBulkEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkEvent(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEventInput)) + return ec.Resolvers.Mutation().UpdateBulkEvent(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEventInput)) }, nil, ec.marshalNEventBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventBulkUpdatePayload, @@ -16407,7 +16407,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVEvent(ctx context.Context, fi ec.fieldContext_Mutation_updateBulkCSVEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVEvent(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVEvent(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEventBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEventBulkUpdatePayload, @@ -16454,7 +16454,7 @@ func (ec *executionContext) _Mutation_createEvidence(ctx context.Context, field ec.fieldContext_Mutation_createEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateEvidence(ctx, fc.Args["input"].(generated.CreateEvidenceInput), fc.Args["evidenceFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().CreateEvidence(ctx, fc.Args["input"].(generated.CreateEvidenceInput), fc.Args["evidenceFiles"].([]*graphql.Upload)) }, nil, ec.marshalNEvidenceCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceCreatePayload, @@ -16499,7 +16499,7 @@ func (ec *executionContext) _Mutation_createBulkEvidence(ctx context.Context, fi ec.fieldContext_Mutation_createBulkEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkEvidence(ctx, fc.Args["input"].([]*generated.CreateEvidenceInput)) + return ec.Resolvers.Mutation().CreateBulkEvidence(ctx, fc.Args["input"].([]*generated.CreateEvidenceInput)) }, nil, ec.marshalNEvidenceBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceBulkCreatePayload, @@ -16544,7 +16544,7 @@ func (ec *executionContext) _Mutation_createBulkCSVEvidence(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVEvidence(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVEvidence(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEvidenceBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceBulkCreatePayload, @@ -16589,7 +16589,7 @@ func (ec *executionContext) _Mutation_updateBulkEvidence(ctx context.Context, fi ec.fieldContext_Mutation_updateBulkEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkEvidence(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEvidenceInput)) + return ec.Resolvers.Mutation().UpdateBulkEvidence(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateEvidenceInput)) }, nil, ec.marshalNEvidenceBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceBulkUpdatePayload, @@ -16636,7 +16636,7 @@ func (ec *executionContext) _Mutation_updateEvidence(ctx context.Context, field ec.fieldContext_Mutation_updateEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateEvidence(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEvidenceInput), fc.Args["evidenceFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateEvidence(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateEvidenceInput), fc.Args["evidenceFiles"].([]*graphql.Upload)) }, nil, ec.marshalNEvidenceUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceUpdatePayload, @@ -16681,7 +16681,7 @@ func (ec *executionContext) _Mutation_deleteEvidence(ctx context.Context, field ec.fieldContext_Mutation_deleteEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteEvidence(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteEvidence(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEvidenceDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceDeletePayload, @@ -16726,7 +16726,7 @@ func (ec *executionContext) _Mutation_deleteBulkEvidence(ctx context.Context, fi ec.fieldContext_Mutation_deleteBulkEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkEvidence(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkEvidence(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNEvidenceBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceBulkDeletePayload, @@ -16771,7 +16771,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVEvidence(ctx context.Context, ec.fieldContext_Mutation_updateBulkCSVEvidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVEvidence(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVEvidence(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNEvidenceBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceBulkUpdatePayload, @@ -16818,7 +16818,7 @@ func (ec *executionContext) _Mutation_createExport(ctx context.Context, field gr ec.fieldContext_Mutation_createExport, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateExport(ctx, fc.Args["input"].(generated.CreateExportInput)) + return ec.Resolvers.Mutation().CreateExport(ctx, fc.Args["input"].(generated.CreateExportInput)) }, nil, ec.marshalNExportCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐExportCreatePayload, @@ -16863,7 +16863,7 @@ func (ec *executionContext) _Mutation_updateExport(ctx context.Context, field gr ec.fieldContext_Mutation_updateExport, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateExport(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateExportInput), fc.Args["exportFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateExport(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateExportInput), fc.Args["exportFiles"].([]*graphql.Upload)) }, nil, ec.marshalNExportUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐExportUpdatePayload, @@ -16908,7 +16908,7 @@ func (ec *executionContext) _Mutation_deleteExport(ctx context.Context, field gr ec.fieldContext_Mutation_deleteExport, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteExport(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteExport(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNExportDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐExportDeletePayload, @@ -16953,7 +16953,7 @@ func (ec *executionContext) _Mutation_deleteBulkExport(ctx context.Context, fiel ec.fieldContext_Mutation_deleteBulkExport, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkExport(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkExport(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNExportBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐExportBulkDeletePayload, @@ -16998,7 +16998,7 @@ func (ec *executionContext) _Mutation_deleteFile(ctx context.Context, field grap ec.fieldContext_Mutation_deleteFile, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteFile(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteFile(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNFileDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFileDeletePayload, @@ -17043,7 +17043,7 @@ func (ec *executionContext) _Mutation_createFinding(ctx context.Context, field g ec.fieldContext_Mutation_createFinding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateFinding(ctx, fc.Args["input"].(generated.CreateFindingInput)) + return ec.Resolvers.Mutation().CreateFinding(ctx, fc.Args["input"].(generated.CreateFindingInput)) }, nil, ec.marshalNFindingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingCreatePayload, @@ -17088,7 +17088,7 @@ func (ec *executionContext) _Mutation_createBulkFinding(ctx context.Context, fie ec.fieldContext_Mutation_createBulkFinding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkFinding(ctx, fc.Args["input"].([]*generated.CreateFindingInput)) + return ec.Resolvers.Mutation().CreateBulkFinding(ctx, fc.Args["input"].([]*generated.CreateFindingInput)) }, nil, ec.marshalNFindingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingBulkCreatePayload, @@ -17133,7 +17133,7 @@ func (ec *executionContext) _Mutation_createBulkCSVFinding(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVFinding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVFinding(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVFinding(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNFindingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingBulkCreatePayload, @@ -17178,7 +17178,7 @@ func (ec *executionContext) _Mutation_updateFinding(ctx context.Context, field g ec.fieldContext_Mutation_updateFinding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateFinding(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateFindingInput)) + return ec.Resolvers.Mutation().UpdateFinding(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateFindingInput)) }, nil, ec.marshalNFindingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingUpdatePayload, @@ -17223,7 +17223,7 @@ func (ec *executionContext) _Mutation_deleteFinding(ctx context.Context, field g ec.fieldContext_Mutation_deleteFinding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteFinding(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteFinding(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNFindingDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingDeletePayload, @@ -17268,7 +17268,7 @@ func (ec *executionContext) _Mutation_createFindingControl(ctx context.Context, ec.fieldContext_Mutation_createFindingControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateFindingControl(ctx, fc.Args["input"].(generated.CreateFindingControlInput)) + return ec.Resolvers.Mutation().CreateFindingControl(ctx, fc.Args["input"].(generated.CreateFindingControlInput)) }, nil, ec.marshalNFindingControlCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingControlCreatePayload, @@ -17313,7 +17313,7 @@ func (ec *executionContext) _Mutation_createBulkFindingControl(ctx context.Conte ec.fieldContext_Mutation_createBulkFindingControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkFindingControl(ctx, fc.Args["input"].([]*generated.CreateFindingControlInput)) + return ec.Resolvers.Mutation().CreateBulkFindingControl(ctx, fc.Args["input"].([]*generated.CreateFindingControlInput)) }, nil, ec.marshalNFindingControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingControlBulkCreatePayload, @@ -17358,7 +17358,7 @@ func (ec *executionContext) _Mutation_createBulkCSVFindingControl(ctx context.Co ec.fieldContext_Mutation_createBulkCSVFindingControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVFindingControl(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVFindingControl(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNFindingControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingControlBulkCreatePayload, @@ -17403,7 +17403,7 @@ func (ec *executionContext) _Mutation_updateFindingControl(ctx context.Context, ec.fieldContext_Mutation_updateFindingControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateFindingControl(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateFindingControlInput)) + return ec.Resolvers.Mutation().UpdateFindingControl(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateFindingControlInput)) }, nil, ec.marshalNFindingControlUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingControlUpdatePayload, @@ -17448,7 +17448,7 @@ func (ec *executionContext) _Mutation_deleteFindingControl(ctx context.Context, ec.fieldContext_Mutation_deleteFindingControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteFindingControl(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteFindingControl(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNFindingControlDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐFindingControlDeletePayload, @@ -17493,7 +17493,7 @@ func (ec *executionContext) _Mutation_createGroup(ctx context.Context, field gra ec.fieldContext_Mutation_createGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateGroup(ctx, fc.Args["input"].(generated.CreateGroupInput)) + return ec.Resolvers.Mutation().CreateGroup(ctx, fc.Args["input"].(generated.CreateGroupInput)) }, nil, ec.marshalNGroupCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupCreatePayload, @@ -17538,7 +17538,7 @@ func (ec *executionContext) _Mutation_createBulkGroup(ctx context.Context, field ec.fieldContext_Mutation_createBulkGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkGroup(ctx, fc.Args["input"].([]*generated.CreateGroupInput)) + return ec.Resolvers.Mutation().CreateBulkGroup(ctx, fc.Args["input"].([]*generated.CreateGroupInput)) }, nil, ec.marshalNGroupBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupBulkCreatePayload, @@ -17583,7 +17583,7 @@ func (ec *executionContext) _Mutation_createBulkCSVGroup(ctx context.Context, fi ec.fieldContext_Mutation_createBulkCSVGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVGroup(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVGroup(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNGroupBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupBulkCreatePayload, @@ -17628,7 +17628,7 @@ func (ec *executionContext) _Mutation_updateGroup(ctx context.Context, field gra ec.fieldContext_Mutation_updateGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateGroup(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateGroupInput)) + return ec.Resolvers.Mutation().UpdateGroup(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateGroupInput)) }, nil, ec.marshalNGroupUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupUpdatePayload, @@ -17673,7 +17673,7 @@ func (ec *executionContext) _Mutation_deleteGroup(ctx context.Context, field gra ec.fieldContext_Mutation_deleteGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteGroup(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteGroup(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNGroupDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupDeletePayload, @@ -17718,7 +17718,7 @@ func (ec *executionContext) _Mutation_deleteBulkGroup(ctx context.Context, field ec.fieldContext_Mutation_deleteBulkGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkGroup(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkGroup(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNGroupBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupBulkDeletePayload, @@ -17763,7 +17763,7 @@ func (ec *executionContext) _Mutation_updateBulkGroup(ctx context.Context, field ec.fieldContext_Mutation_updateBulkGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkGroup(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateGroupInput)) + return ec.Resolvers.Mutation().UpdateBulkGroup(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateGroupInput)) }, nil, ec.marshalNGroupBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupBulkUpdatePayload, @@ -17810,7 +17810,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVGroup(ctx context.Context, fi ec.fieldContext_Mutation_updateBulkCSVGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVGroup(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVGroup(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNGroupBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupBulkUpdatePayload, @@ -17857,7 +17857,7 @@ func (ec *executionContext) _Mutation_createGroupWithMembers(ctx context.Context ec.fieldContext_Mutation_createGroupWithMembers, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateGroupWithMembers(ctx, fc.Args["groupInput"].(generated.CreateGroupInput), fc.Args["members"].([]*model.GroupMembersInput)) + return ec.Resolvers.Mutation().CreateGroupWithMembers(ctx, fc.Args["groupInput"].(generated.CreateGroupInput), fc.Args["members"].([]*model.GroupMembersInput)) }, nil, ec.marshalNGroupCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupCreatePayload, @@ -17902,7 +17902,7 @@ func (ec *executionContext) _Mutation_createGroupByClone(ctx context.Context, fi ec.fieldContext_Mutation_createGroupByClone, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateGroupByClone(ctx, fc.Args["groupInput"].(generated.CreateGroupInput), fc.Args["members"].([]*model.GroupMembersInput), fc.Args["inheritGroupPermissions"].(*string), fc.Args["cloneGroupMembers"].(*string)) + return ec.Resolvers.Mutation().CreateGroupByClone(ctx, fc.Args["groupInput"].(generated.CreateGroupInput), fc.Args["members"].([]*model.GroupMembersInput), fc.Args["inheritGroupPermissions"].(*string), fc.Args["cloneGroupMembers"].(*string)) }, nil, ec.marshalNGroupCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupCreatePayload, @@ -17947,7 +17947,7 @@ func (ec *executionContext) _Mutation_createGroupMembership(ctx context.Context, ec.fieldContext_Mutation_createGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateGroupMembership(ctx, fc.Args["input"].(generated.CreateGroupMembershipInput)) + return ec.Resolvers.Mutation().CreateGroupMembership(ctx, fc.Args["input"].(generated.CreateGroupMembershipInput)) }, nil, ec.marshalNGroupMembershipCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipCreatePayload, @@ -17992,7 +17992,7 @@ func (ec *executionContext) _Mutation_createBulkGroupMembership(ctx context.Cont ec.fieldContext_Mutation_createBulkGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkGroupMembership(ctx, fc.Args["input"].([]*generated.CreateGroupMembershipInput)) + return ec.Resolvers.Mutation().CreateBulkGroupMembership(ctx, fc.Args["input"].([]*generated.CreateGroupMembershipInput)) }, nil, ec.marshalNGroupMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipBulkCreatePayload, @@ -18037,7 +18037,7 @@ func (ec *executionContext) _Mutation_createBulkCSVGroupMembership(ctx context.C ec.fieldContext_Mutation_createBulkCSVGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVGroupMembership(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVGroupMembership(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNGroupMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipBulkCreatePayload, @@ -18082,7 +18082,7 @@ func (ec *executionContext) _Mutation_updateGroupMembership(ctx context.Context, ec.fieldContext_Mutation_updateGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateGroupMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateGroupMembershipInput)) + return ec.Resolvers.Mutation().UpdateGroupMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateGroupMembershipInput)) }, nil, ec.marshalNGroupMembershipUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipUpdatePayload, @@ -18127,7 +18127,7 @@ func (ec *executionContext) _Mutation_deleteGroupMembership(ctx context.Context, ec.fieldContext_Mutation_deleteGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteGroupMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteGroupMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNGroupMembershipDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipDeletePayload, @@ -18172,7 +18172,7 @@ func (ec *executionContext) _Mutation_deleteBulkGroupMembership(ctx context.Cont ec.fieldContext_Mutation_deleteBulkGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkGroupMembership(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkGroupMembership(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNGroupMembershipBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipBulkDeletePayload, @@ -18217,7 +18217,7 @@ func (ec *executionContext) _Mutation_updateBulkGroupMembership(ctx context.Cont ec.fieldContext_Mutation_updateBulkGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkGroupMembership(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateGroupMembershipInput)) + return ec.Resolvers.Mutation().UpdateBulkGroupMembership(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateGroupMembershipInput)) }, nil, ec.marshalNGroupMembershipBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipBulkUpdatePayload, @@ -18264,7 +18264,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVGroupMembership(ctx context.C ec.fieldContext_Mutation_updateBulkCSVGroupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVGroupMembership(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVGroupMembership(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNGroupMembershipBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupMembershipBulkUpdatePayload, @@ -18311,7 +18311,7 @@ func (ec *executionContext) _Mutation_createGroupSetting(ctx context.Context, fi ec.fieldContext_Mutation_createGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateGroupSetting(ctx, fc.Args["input"].(generated.CreateGroupSettingInput)) + return ec.Resolvers.Mutation().CreateGroupSetting(ctx, fc.Args["input"].(generated.CreateGroupSettingInput)) }, nil, ec.marshalNGroupSettingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingCreatePayload, @@ -18356,7 +18356,7 @@ func (ec *executionContext) _Mutation_createBulkGroupSetting(ctx context.Context ec.fieldContext_Mutation_createBulkGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkGroupSetting(ctx, fc.Args["input"].([]*generated.CreateGroupSettingInput)) + return ec.Resolvers.Mutation().CreateBulkGroupSetting(ctx, fc.Args["input"].([]*generated.CreateGroupSettingInput)) }, nil, ec.marshalNGroupSettingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingBulkCreatePayload, @@ -18401,7 +18401,7 @@ func (ec *executionContext) _Mutation_createBulkCSVGroupSetting(ctx context.Cont ec.fieldContext_Mutation_createBulkCSVGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVGroupSetting(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVGroupSetting(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNGroupSettingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingBulkCreatePayload, @@ -18446,7 +18446,7 @@ func (ec *executionContext) _Mutation_updateGroupSetting(ctx context.Context, fi ec.fieldContext_Mutation_updateGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateGroupSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateGroupSettingInput)) + return ec.Resolvers.Mutation().UpdateGroupSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateGroupSettingInput)) }, nil, ec.marshalNGroupSettingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingUpdatePayload, @@ -18491,7 +18491,7 @@ func (ec *executionContext) _Mutation_deleteGroupSetting(ctx context.Context, fi ec.fieldContext_Mutation_deleteGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteGroupSetting(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteGroupSetting(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNGroupSettingDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingDeletePayload, @@ -18536,7 +18536,7 @@ func (ec *executionContext) _Mutation_deleteBulkGroupSetting(ctx context.Context ec.fieldContext_Mutation_deleteBulkGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkGroupSetting(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkGroupSetting(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNGroupSettingBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingBulkDeletePayload, @@ -18581,7 +18581,7 @@ func (ec *executionContext) _Mutation_updateBulkGroupSetting(ctx context.Context ec.fieldContext_Mutation_updateBulkGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkGroupSetting(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateGroupSettingInput)) + return ec.Resolvers.Mutation().UpdateBulkGroupSetting(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateGroupSettingInput)) }, nil, ec.marshalNGroupSettingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingBulkUpdatePayload, @@ -18628,7 +18628,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVGroupSetting(ctx context.Cont ec.fieldContext_Mutation_updateBulkCSVGroupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVGroupSetting(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVGroupSetting(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNGroupSettingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupSettingBulkUpdatePayload, @@ -18675,7 +18675,7 @@ func (ec *executionContext) _Mutation_createHush(ctx context.Context, field grap ec.fieldContext_Mutation_createHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateHush(ctx, fc.Args["input"].(generated.CreateHushInput)) + return ec.Resolvers.Mutation().CreateHush(ctx, fc.Args["input"].(generated.CreateHushInput)) }, nil, ec.marshalNHushCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushCreatePayload, @@ -18720,7 +18720,7 @@ func (ec *executionContext) _Mutation_createBulkHush(ctx context.Context, field ec.fieldContext_Mutation_createBulkHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkHush(ctx, fc.Args["input"].([]*generated.CreateHushInput)) + return ec.Resolvers.Mutation().CreateBulkHush(ctx, fc.Args["input"].([]*generated.CreateHushInput)) }, nil, ec.marshalNHushBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushBulkCreatePayload, @@ -18765,7 +18765,7 @@ func (ec *executionContext) _Mutation_createBulkCSVHush(ctx context.Context, fie ec.fieldContext_Mutation_createBulkCSVHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVHush(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVHush(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNHushBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushBulkCreatePayload, @@ -18810,7 +18810,7 @@ func (ec *executionContext) _Mutation_updateBulkHush(ctx context.Context, field ec.fieldContext_Mutation_updateBulkHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkHush(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateHushInput)) + return ec.Resolvers.Mutation().UpdateBulkHush(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateHushInput)) }, nil, ec.marshalNHushBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushBulkUpdatePayload, @@ -18857,7 +18857,7 @@ func (ec *executionContext) _Mutation_updateHush(ctx context.Context, field grap ec.fieldContext_Mutation_updateHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateHush(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateHushInput)) + return ec.Resolvers.Mutation().UpdateHush(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateHushInput)) }, nil, ec.marshalNHushUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushUpdatePayload, @@ -18902,7 +18902,7 @@ func (ec *executionContext) _Mutation_deleteHush(ctx context.Context, field grap ec.fieldContext_Mutation_deleteHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteHush(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteHush(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNHushDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushDeletePayload, @@ -18947,7 +18947,7 @@ func (ec *executionContext) _Mutation_deleteBulkHush(ctx context.Context, field ec.fieldContext_Mutation_deleteBulkHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkHush(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkHush(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNHushBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushBulkDeletePayload, @@ -18992,7 +18992,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVHush(ctx context.Context, fie ec.fieldContext_Mutation_updateBulkCSVHush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVHush(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVHush(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNHushBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐHushBulkUpdatePayload, @@ -19039,7 +19039,7 @@ func (ec *executionContext) _Mutation_createIdentityHolder(ctx context.Context, ec.fieldContext_Mutation_createIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateIdentityHolder(ctx, fc.Args["input"].(generated.CreateIdentityHolderInput)) + return ec.Resolvers.Mutation().CreateIdentityHolder(ctx, fc.Args["input"].(generated.CreateIdentityHolderInput)) }, nil, ec.marshalNIdentityHolderCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderCreatePayload, @@ -19084,7 +19084,7 @@ func (ec *executionContext) _Mutation_createBulkIdentityHolder(ctx context.Conte ec.fieldContext_Mutation_createBulkIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkIdentityHolder(ctx, fc.Args["input"].([]*generated.CreateIdentityHolderInput)) + return ec.Resolvers.Mutation().CreateBulkIdentityHolder(ctx, fc.Args["input"].([]*generated.CreateIdentityHolderInput)) }, nil, ec.marshalNIdentityHolderBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderBulkCreatePayload, @@ -19129,7 +19129,7 @@ func (ec *executionContext) _Mutation_createBulkCSVIdentityHolder(ctx context.Co ec.fieldContext_Mutation_createBulkCSVIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVIdentityHolder(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVIdentityHolder(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNIdentityHolderBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderBulkCreatePayload, @@ -19174,7 +19174,7 @@ func (ec *executionContext) _Mutation_updateIdentityHolder(ctx context.Context, ec.fieldContext_Mutation_updateIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateIdentityHolder(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateIdentityHolderInput)) + return ec.Resolvers.Mutation().UpdateIdentityHolder(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateIdentityHolderInput)) }, nil, ec.marshalNIdentityHolderUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderUpdatePayload, @@ -19219,7 +19219,7 @@ func (ec *executionContext) _Mutation_deleteIdentityHolder(ctx context.Context, ec.fieldContext_Mutation_deleteIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteIdentityHolder(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteIdentityHolder(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNIdentityHolderDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderDeletePayload, @@ -19264,7 +19264,7 @@ func (ec *executionContext) _Mutation_deleteBulkIdentityHolder(ctx context.Conte ec.fieldContext_Mutation_deleteBulkIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkIdentityHolder(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkIdentityHolder(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNIdentityHolderBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderBulkDeletePayload, @@ -19309,7 +19309,7 @@ func (ec *executionContext) _Mutation_updateBulkIdentityHolder(ctx context.Conte ec.fieldContext_Mutation_updateBulkIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkIdentityHolder(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateIdentityHolderInput)) + return ec.Resolvers.Mutation().UpdateBulkIdentityHolder(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateIdentityHolderInput)) }, nil, ec.marshalNIdentityHolderBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderBulkUpdatePayload, @@ -19356,7 +19356,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVIdentityHolder(ctx context.Co ec.fieldContext_Mutation_updateBulkCSVIdentityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVIdentityHolder(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVIdentityHolder(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNIdentityHolderBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIdentityHolderBulkUpdatePayload, @@ -19403,7 +19403,7 @@ func (ec *executionContext) _Mutation_deleteIntegration(ctx context.Context, fie ec.fieldContext_Mutation_deleteIntegration, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteIntegration(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteIntegration(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNIntegrationDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐIntegrationDeletePayload, @@ -19448,7 +19448,7 @@ func (ec *executionContext) _Mutation_createInternalPolicy(ctx context.Context, ec.fieldContext_Mutation_createInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateInternalPolicy(ctx, fc.Args["input"].(generated.CreateInternalPolicyInput)) + return ec.Resolvers.Mutation().CreateInternalPolicy(ctx, fc.Args["input"].(generated.CreateInternalPolicyInput)) }, nil, ec.marshalNInternalPolicyCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyCreatePayload, @@ -19493,7 +19493,7 @@ func (ec *executionContext) _Mutation_createUploadInternalPolicy(ctx context.Con ec.fieldContext_Mutation_createUploadInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateUploadInternalPolicy(ctx, fc.Args["internalPolicyFile"].(graphql.Upload), fc.Args["ownerID"].(*string)) + return ec.Resolvers.Mutation().CreateUploadInternalPolicy(ctx, fc.Args["internalPolicyFile"].(graphql.Upload), fc.Args["ownerID"].(*string)) }, nil, ec.marshalNInternalPolicyCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyCreatePayload, @@ -19538,7 +19538,7 @@ func (ec *executionContext) _Mutation_createBulkInternalPolicy(ctx context.Conte ec.fieldContext_Mutation_createBulkInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkInternalPolicy(ctx, fc.Args["input"].([]*generated.CreateInternalPolicyInput)) + return ec.Resolvers.Mutation().CreateBulkInternalPolicy(ctx, fc.Args["input"].([]*generated.CreateInternalPolicyInput)) }, nil, ec.marshalNInternalPolicyBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyBulkCreatePayload, @@ -19583,7 +19583,7 @@ func (ec *executionContext) _Mutation_createBulkCSVInternalPolicy(ctx context.Co ec.fieldContext_Mutation_createBulkCSVInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVInternalPolicy(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVInternalPolicy(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNInternalPolicyBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyBulkCreatePayload, @@ -19628,7 +19628,7 @@ func (ec *executionContext) _Mutation_updateBulkInternalPolicy(ctx context.Conte ec.fieldContext_Mutation_updateBulkInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkInternalPolicy(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateInternalPolicyInput)) + return ec.Resolvers.Mutation().UpdateBulkInternalPolicy(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateInternalPolicyInput)) }, nil, ec.marshalNInternalPolicyBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyBulkUpdatePayload, @@ -19675,7 +19675,7 @@ func (ec *executionContext) _Mutation_updateInternalPolicy(ctx context.Context, ec.fieldContext_Mutation_updateInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateInternalPolicy(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateInternalPolicyInput), fc.Args["internalPolicyFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateInternalPolicy(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateInternalPolicyInput), fc.Args["internalPolicyFile"].(*graphql.Upload)) }, nil, ec.marshalNInternalPolicyUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyUpdatePayload, @@ -19720,7 +19720,7 @@ func (ec *executionContext) _Mutation_deleteInternalPolicy(ctx context.Context, ec.fieldContext_Mutation_deleteInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteInternalPolicy(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteInternalPolicy(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNInternalPolicyDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyDeletePayload, @@ -19765,7 +19765,7 @@ func (ec *executionContext) _Mutation_deleteBulkInternalPolicy(ctx context.Conte ec.fieldContext_Mutation_deleteBulkInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkInternalPolicy(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkInternalPolicy(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNInternalPolicyBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyBulkDeletePayload, @@ -19810,7 +19810,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVInternalPolicy(ctx context.Co ec.fieldContext_Mutation_updateBulkCSVInternalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVInternalPolicy(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVInternalPolicy(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNInternalPolicyBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyBulkUpdatePayload, @@ -19857,7 +19857,7 @@ func (ec *executionContext) _Mutation_createInvite(ctx context.Context, field gr ec.fieldContext_Mutation_createInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateInvite(ctx, fc.Args["input"].(generated.CreateInviteInput)) + return ec.Resolvers.Mutation().CreateInvite(ctx, fc.Args["input"].(generated.CreateInviteInput)) }, nil, ec.marshalNInviteCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteCreatePayload, @@ -19902,7 +19902,7 @@ func (ec *executionContext) _Mutation_createBulkInvite(ctx context.Context, fiel ec.fieldContext_Mutation_createBulkInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkInvite(ctx, fc.Args["input"].([]*generated.CreateInviteInput)) + return ec.Resolvers.Mutation().CreateBulkInvite(ctx, fc.Args["input"].([]*generated.CreateInviteInput)) }, nil, ec.marshalNInviteBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteBulkCreatePayload, @@ -19947,7 +19947,7 @@ func (ec *executionContext) _Mutation_createBulkCSVInvite(ctx context.Context, f ec.fieldContext_Mutation_createBulkCSVInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVInvite(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVInvite(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNInviteBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteBulkCreatePayload, @@ -19992,7 +19992,7 @@ func (ec *executionContext) _Mutation_updateInvite(ctx context.Context, field gr ec.fieldContext_Mutation_updateInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateInvite(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateInviteInput)) + return ec.Resolvers.Mutation().UpdateInvite(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateInviteInput)) }, nil, ec.marshalNInviteUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteUpdatePayload, @@ -20037,7 +20037,7 @@ func (ec *executionContext) _Mutation_deleteInvite(ctx context.Context, field gr ec.fieldContext_Mutation_deleteInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteInvite(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteInvite(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNInviteDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteDeletePayload, @@ -20082,7 +20082,7 @@ func (ec *executionContext) _Mutation_deleteBulkInvite(ctx context.Context, fiel ec.fieldContext_Mutation_deleteBulkInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkInvite(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkInvite(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNInviteBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteBulkDeletePayload, @@ -20127,7 +20127,7 @@ func (ec *executionContext) _Mutation_updateBulkInvite(ctx context.Context, fiel ec.fieldContext_Mutation_updateBulkInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkInvite(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateInviteInput)) + return ec.Resolvers.Mutation().UpdateBulkInvite(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateInviteInput)) }, nil, ec.marshalNInviteBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteBulkUpdatePayload, @@ -20174,7 +20174,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVInvite(ctx context.Context, f ec.fieldContext_Mutation_updateBulkCSVInvite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVInvite(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVInvite(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNInviteBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInviteBulkUpdatePayload, @@ -20221,7 +20221,7 @@ func (ec *executionContext) _Mutation_createJobResult(ctx context.Context, field ec.fieldContext_Mutation_createJobResult, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateJobResult(ctx, fc.Args["input"].(generated.CreateJobResultInput), fc.Args["jobResultFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().CreateJobResult(ctx, fc.Args["input"].(generated.CreateJobResultInput), fc.Args["jobResultFiles"].([]*graphql.Upload)) }, nil, ec.marshalNJobResultCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobResultCreatePayload, @@ -20266,7 +20266,7 @@ func (ec *executionContext) _Mutation_updateJobResult(ctx context.Context, field ec.fieldContext_Mutation_updateJobResult, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateJobResult(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateJobResultInput), fc.Args["jobResultFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateJobResult(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateJobResultInput), fc.Args["jobResultFiles"].([]*graphql.Upload)) }, nil, ec.marshalNJobResultUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobResultUpdatePayload, @@ -20311,7 +20311,7 @@ func (ec *executionContext) _Mutation_deleteJobResult(ctx context.Context, field ec.fieldContext_Mutation_deleteJobResult, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteJobResult(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteJobResult(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobResultDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobResultDeletePayload, @@ -20356,7 +20356,7 @@ func (ec *executionContext) _Mutation_createJobRunner(ctx context.Context, field ec.fieldContext_Mutation_createJobRunner, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateJobRunner(ctx, fc.Args["input"].(generated.CreateJobRunnerInput)) + return ec.Resolvers.Mutation().CreateJobRunner(ctx, fc.Args["input"].(generated.CreateJobRunnerInput)) }, nil, ec.marshalNJobRunnerCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobRunnerCreatePayload, @@ -20401,7 +20401,7 @@ func (ec *executionContext) _Mutation_updateJobRunner(ctx context.Context, field ec.fieldContext_Mutation_updateJobRunner, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateJobRunner(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateJobRunnerInput)) + return ec.Resolvers.Mutation().UpdateJobRunner(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateJobRunnerInput)) }, nil, ec.marshalNJobRunnerUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobRunnerUpdatePayload, @@ -20446,7 +20446,7 @@ func (ec *executionContext) _Mutation_deleteJobRunner(ctx context.Context, field ec.fieldContext_Mutation_deleteJobRunner, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteJobRunner(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteJobRunner(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobRunnerDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobRunnerDeletePayload, @@ -20491,7 +20491,7 @@ func (ec *executionContext) _Mutation_createJobRunnerRegistrationToken(ctx conte ec.fieldContext_Mutation_createJobRunnerRegistrationToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateJobRunnerRegistrationToken(ctx, fc.Args["input"].(generated.CreateJobRunnerRegistrationTokenInput)) + return ec.Resolvers.Mutation().CreateJobRunnerRegistrationToken(ctx, fc.Args["input"].(generated.CreateJobRunnerRegistrationTokenInput)) }, nil, ec.marshalNJobRunnerRegistrationTokenCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobRunnerRegistrationTokenCreatePayload, @@ -20536,7 +20536,7 @@ func (ec *executionContext) _Mutation_deleteJobRunnerRegistrationToken(ctx conte ec.fieldContext_Mutation_deleteJobRunnerRegistrationToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteJobRunnerRegistrationToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteJobRunnerRegistrationToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobRunnerRegistrationTokenDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobRunnerRegistrationTokenDeletePayload, @@ -20581,7 +20581,7 @@ func (ec *executionContext) _Mutation_createJobRunnerToken(ctx context.Context, ec.fieldContext_Mutation_createJobRunnerToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateJobRunnerToken(ctx, fc.Args["input"].(generated.CreateJobRunnerTokenInput)) + return ec.Resolvers.Mutation().CreateJobRunnerToken(ctx, fc.Args["input"].(generated.CreateJobRunnerTokenInput)) }, nil, ec.marshalNJobRunnerTokenCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobRunnerTokenCreatePayload, @@ -20626,7 +20626,7 @@ func (ec *executionContext) _Mutation_deleteJobRunnerToken(ctx context.Context, ec.fieldContext_Mutation_deleteJobRunnerToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteJobRunnerToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteJobRunnerToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobRunnerTokenDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobRunnerTokenDeletePayload, @@ -20671,7 +20671,7 @@ func (ec *executionContext) _Mutation_createJobTemplate(ctx context.Context, fie ec.fieldContext_Mutation_createJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateJobTemplate(ctx, fc.Args["input"].(generated.CreateJobTemplateInput)) + return ec.Resolvers.Mutation().CreateJobTemplate(ctx, fc.Args["input"].(generated.CreateJobTemplateInput)) }, nil, ec.marshalNJobTemplateCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateCreatePayload, @@ -20716,7 +20716,7 @@ func (ec *executionContext) _Mutation_createBulkJobTemplate(ctx context.Context, ec.fieldContext_Mutation_createBulkJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkJobTemplate(ctx, fc.Args["input"].([]*generated.CreateJobTemplateInput)) + return ec.Resolvers.Mutation().CreateBulkJobTemplate(ctx, fc.Args["input"].([]*generated.CreateJobTemplateInput)) }, nil, ec.marshalNJobTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateBulkCreatePayload, @@ -20761,7 +20761,7 @@ func (ec *executionContext) _Mutation_createBulkCSVJobTemplate(ctx context.Conte ec.fieldContext_Mutation_createBulkCSVJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVJobTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVJobTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNJobTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateBulkCreatePayload, @@ -20806,7 +20806,7 @@ func (ec *executionContext) _Mutation_updateJobTemplate(ctx context.Context, fie ec.fieldContext_Mutation_updateJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateJobTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateJobTemplateInput)) + return ec.Resolvers.Mutation().UpdateJobTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateJobTemplateInput)) }, nil, ec.marshalNJobTemplateUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateUpdatePayload, @@ -20851,7 +20851,7 @@ func (ec *executionContext) _Mutation_deleteJobTemplate(ctx context.Context, fie ec.fieldContext_Mutation_deleteJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteJobTemplate(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteJobTemplate(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobTemplateDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateDeletePayload, @@ -20896,7 +20896,7 @@ func (ec *executionContext) _Mutation_deleteBulkJobTemplate(ctx context.Context, ec.fieldContext_Mutation_deleteBulkJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkJobTemplate(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkJobTemplate(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNJobTemplateBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateBulkDeletePayload, @@ -20941,7 +20941,7 @@ func (ec *executionContext) _Mutation_updateBulkJobTemplate(ctx context.Context, ec.fieldContext_Mutation_updateBulkJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkJobTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateJobTemplateInput)) + return ec.Resolvers.Mutation().UpdateBulkJobTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateJobTemplateInput)) }, nil, ec.marshalNJobTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateBulkUpdatePayload, @@ -20988,7 +20988,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVJobTemplate(ctx context.Conte ec.fieldContext_Mutation_updateBulkCSVJobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVJobTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVJobTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNJobTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐJobTemplateBulkUpdatePayload, @@ -21035,7 +21035,7 @@ func (ec *executionContext) _Mutation_createMappableDomain(ctx context.Context, ec.fieldContext_Mutation_createMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateMappableDomain(ctx, fc.Args["input"].(generated.CreateMappableDomainInput)) + return ec.Resolvers.Mutation().CreateMappableDomain(ctx, fc.Args["input"].(generated.CreateMappableDomainInput)) }, nil, ec.marshalNMappableDomainCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainCreatePayload, @@ -21080,7 +21080,7 @@ func (ec *executionContext) _Mutation_createBulkMappableDomain(ctx context.Conte ec.fieldContext_Mutation_createBulkMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkMappableDomain(ctx, fc.Args["input"].([]*generated.CreateMappableDomainInput)) + return ec.Resolvers.Mutation().CreateBulkMappableDomain(ctx, fc.Args["input"].([]*generated.CreateMappableDomainInput)) }, nil, ec.marshalNMappableDomainBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainBulkCreatePayload, @@ -21125,7 +21125,7 @@ func (ec *executionContext) _Mutation_createBulkCSVMappableDomain(ctx context.Co ec.fieldContext_Mutation_createBulkCSVMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVMappableDomain(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVMappableDomain(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNMappableDomainBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainBulkCreatePayload, @@ -21170,7 +21170,7 @@ func (ec *executionContext) _Mutation_updateMappableDomain(ctx context.Context, ec.fieldContext_Mutation_updateMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateMappableDomain(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateMappableDomainInput)) + return ec.Resolvers.Mutation().UpdateMappableDomain(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateMappableDomainInput)) }, nil, ec.marshalNMappableDomainUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainUpdatePayload, @@ -21215,7 +21215,7 @@ func (ec *executionContext) _Mutation_deleteMappableDomain(ctx context.Context, ec.fieldContext_Mutation_deleteMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteMappableDomain(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteMappableDomain(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNMappableDomainDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainDeletePayload, @@ -21260,7 +21260,7 @@ func (ec *executionContext) _Mutation_deleteBulkMappableDomain(ctx context.Conte ec.fieldContext_Mutation_deleteBulkMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkMappableDomain(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkMappableDomain(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNMappableDomainBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainBulkDeletePayload, @@ -21305,7 +21305,7 @@ func (ec *executionContext) _Mutation_updateBulkMappableDomain(ctx context.Conte ec.fieldContext_Mutation_updateBulkMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkMappableDomain(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateMappableDomainInput)) + return ec.Resolvers.Mutation().UpdateBulkMappableDomain(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateMappableDomainInput)) }, nil, ec.marshalNMappableDomainBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainBulkUpdatePayload, @@ -21352,7 +21352,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVMappableDomain(ctx context.Co ec.fieldContext_Mutation_updateBulkCSVMappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVMappableDomain(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVMappableDomain(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNMappableDomainBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappableDomainBulkUpdatePayload, @@ -21399,7 +21399,7 @@ func (ec *executionContext) _Mutation_createMappedControl(ctx context.Context, f ec.fieldContext_Mutation_createMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateMappedControl(ctx, fc.Args["input"].(generated.CreateMappedControlInput)) + return ec.Resolvers.Mutation().CreateMappedControl(ctx, fc.Args["input"].(generated.CreateMappedControlInput)) }, nil, ec.marshalNMappedControlCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlCreatePayload, @@ -21444,7 +21444,7 @@ func (ec *executionContext) _Mutation_createBulkMappedControl(ctx context.Contex ec.fieldContext_Mutation_createBulkMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkMappedControl(ctx, fc.Args["input"].([]*generated.CreateMappedControlInput)) + return ec.Resolvers.Mutation().CreateBulkMappedControl(ctx, fc.Args["input"].([]*generated.CreateMappedControlInput)) }, nil, ec.marshalNMappedControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlBulkCreatePayload, @@ -21489,7 +21489,7 @@ func (ec *executionContext) _Mutation_createBulkCSVMappedControl(ctx context.Con ec.fieldContext_Mutation_createBulkCSVMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVMappedControl(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVMappedControl(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNMappedControlBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlBulkCreatePayload, @@ -21534,7 +21534,7 @@ func (ec *executionContext) _Mutation_updateMappedControl(ctx context.Context, f ec.fieldContext_Mutation_updateMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateMappedControl(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateMappedControlInput)) + return ec.Resolvers.Mutation().UpdateMappedControl(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateMappedControlInput)) }, nil, ec.marshalNMappedControlUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlUpdatePayload, @@ -21579,7 +21579,7 @@ func (ec *executionContext) _Mutation_deleteMappedControl(ctx context.Context, f ec.fieldContext_Mutation_deleteMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteMappedControl(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteMappedControl(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNMappedControlDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlDeletePayload, @@ -21624,7 +21624,7 @@ func (ec *executionContext) _Mutation_deleteBulkMappedControl(ctx context.Contex ec.fieldContext_Mutation_deleteBulkMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkMappedControl(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkMappedControl(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNMappedControlBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlBulkDeletePayload, @@ -21669,7 +21669,7 @@ func (ec *executionContext) _Mutation_updateBulkMappedControl(ctx context.Contex ec.fieldContext_Mutation_updateBulkMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkMappedControl(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateMappedControlInput)) + return ec.Resolvers.Mutation().UpdateBulkMappedControl(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateMappedControlInput)) }, nil, ec.marshalNMappedControlBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlBulkUpdatePayload, @@ -21716,7 +21716,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVMappedControl(ctx context.Con ec.fieldContext_Mutation_updateBulkCSVMappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVMappedControl(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVMappedControl(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNMappedControlBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐMappedControlBulkUpdatePayload, @@ -21763,7 +21763,7 @@ func (ec *executionContext) _Mutation_createNarrative(ctx context.Context, field ec.fieldContext_Mutation_createNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateNarrative(ctx, fc.Args["input"].(generated.CreateNarrativeInput)) + return ec.Resolvers.Mutation().CreateNarrative(ctx, fc.Args["input"].(generated.CreateNarrativeInput)) }, nil, ec.marshalNNarrativeCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeCreatePayload, @@ -21808,7 +21808,7 @@ func (ec *executionContext) _Mutation_createBulkNarrative(ctx context.Context, f ec.fieldContext_Mutation_createBulkNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkNarrative(ctx, fc.Args["input"].([]*generated.CreateNarrativeInput)) + return ec.Resolvers.Mutation().CreateBulkNarrative(ctx, fc.Args["input"].([]*generated.CreateNarrativeInput)) }, nil, ec.marshalNNarrativeBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeBulkCreatePayload, @@ -21853,7 +21853,7 @@ func (ec *executionContext) _Mutation_createBulkCSVNarrative(ctx context.Context ec.fieldContext_Mutation_createBulkCSVNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVNarrative(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVNarrative(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNNarrativeBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeBulkCreatePayload, @@ -21898,7 +21898,7 @@ func (ec *executionContext) _Mutation_updateNarrative(ctx context.Context, field ec.fieldContext_Mutation_updateNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateNarrative(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNarrativeInput)) + return ec.Resolvers.Mutation().UpdateNarrative(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNarrativeInput)) }, nil, ec.marshalNNarrativeUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeUpdatePayload, @@ -21943,7 +21943,7 @@ func (ec *executionContext) _Mutation_deleteNarrative(ctx context.Context, field ec.fieldContext_Mutation_deleteNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteNarrative(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteNarrative(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNarrativeDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeDeletePayload, @@ -21988,7 +21988,7 @@ func (ec *executionContext) _Mutation_deleteBulkNarrative(ctx context.Context, f ec.fieldContext_Mutation_deleteBulkNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkNarrative(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkNarrative(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNNarrativeBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeBulkDeletePayload, @@ -22033,7 +22033,7 @@ func (ec *executionContext) _Mutation_updateBulkNarrative(ctx context.Context, f ec.fieldContext_Mutation_updateBulkNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkNarrative(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateNarrativeInput)) + return ec.Resolvers.Mutation().UpdateBulkNarrative(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateNarrativeInput)) }, nil, ec.marshalNNarrativeBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeBulkUpdatePayload, @@ -22080,7 +22080,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVNarrative(ctx context.Context ec.fieldContext_Mutation_updateBulkCSVNarrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVNarrative(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVNarrative(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNNarrativeBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNarrativeBulkUpdatePayload, @@ -22127,7 +22127,7 @@ func (ec *executionContext) _Mutation_updateTaskComment(ctx context.Context, fie ec.fieldContext_Mutation_updateTaskComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTaskComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTaskComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNTaskUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskUpdatePayload, @@ -22172,7 +22172,7 @@ func (ec *executionContext) _Mutation_updateControlComment(ctx context.Context, ec.fieldContext_Mutation_updateControlComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateControlComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateControlComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNControlUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlUpdatePayload, @@ -22217,7 +22217,7 @@ func (ec *executionContext) _Mutation_updateSubcontrolComment(ctx context.Contex ec.fieldContext_Mutation_updateSubcontrolComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateSubcontrolComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateSubcontrolComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNSubcontrolUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolUpdatePayload, @@ -22262,7 +22262,7 @@ func (ec *executionContext) _Mutation_updateProcedureComment(ctx context.Context ec.fieldContext_Mutation_updateProcedureComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateProcedureComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateProcedureComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNProcedureUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureUpdatePayload, @@ -22307,7 +22307,7 @@ func (ec *executionContext) _Mutation_updateRiskComment(ctx context.Context, fie ec.fieldContext_Mutation_updateRiskComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateRiskComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateRiskComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNRiskUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskUpdatePayload, @@ -22352,7 +22352,7 @@ func (ec *executionContext) _Mutation_updateInternalPolicyComment(ctx context.Co ec.fieldContext_Mutation_updateInternalPolicyComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateInternalPolicyComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateInternalPolicyComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNInternalPolicyUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐInternalPolicyUpdatePayload, @@ -22397,7 +22397,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterFAQComment(ctx context.Co ec.fieldContext_Mutation_updateTrustCenterFAQComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterFAQComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterFAQComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNTrustCenterFAQUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQUpdatePayload, @@ -22442,7 +22442,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterPost(ctx context.Context, ec.fieldContext_Mutation_updateTrustCenterPost, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterPost(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterPost(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNTrustCenterUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterUpdatePayload, @@ -22487,7 +22487,7 @@ func (ec *executionContext) _Mutation_updateEvidenceComment(ctx context.Context, ec.fieldContext_Mutation_updateEvidenceComment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateEvidenceComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateEvidenceComment(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNoteInput), fc.Args["noteFiles"].([]*graphql.Upload)) }, nil, ec.marshalNEvidenceUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐEvidenceUpdatePayload, @@ -22532,7 +22532,7 @@ func (ec *executionContext) _Mutation_deleteNote(ctx context.Context, field grap ec.fieldContext_Mutation_deleteNote, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteNote(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteNote(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNoteDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNoteDeletePayload, @@ -22577,7 +22577,7 @@ func (ec *executionContext) _Mutation_updateNotification(ctx context.Context, fi ec.fieldContext_Mutation_updateNotification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateNotification(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNotificationInput)) + return ec.Resolvers.Mutation().UpdateNotification(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNotificationInput)) }, nil, ec.marshalNNotificationUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationUpdatePayload, @@ -22622,7 +22622,7 @@ func (ec *executionContext) _Mutation_markNotificationsAsRead(ctx context.Contex ec.fieldContext_Mutation_markNotificationsAsRead, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().MarkNotificationsAsRead(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().MarkNotificationsAsRead(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNActionNotificationsReadPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐActionNotificationsReadPayload, @@ -22667,7 +22667,7 @@ func (ec *executionContext) _Mutation_createNotificationPreference(ctx context.C ec.fieldContext_Mutation_createNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateNotificationPreference(ctx, fc.Args["input"].(generated.CreateNotificationPreferenceInput)) + return ec.Resolvers.Mutation().CreateNotificationPreference(ctx, fc.Args["input"].(generated.CreateNotificationPreferenceInput)) }, nil, ec.marshalNNotificationPreferenceCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceCreatePayload, @@ -22712,7 +22712,7 @@ func (ec *executionContext) _Mutation_createBulkNotificationPreference(ctx conte ec.fieldContext_Mutation_createBulkNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkNotificationPreference(ctx, fc.Args["input"].([]*generated.CreateNotificationPreferenceInput)) + return ec.Resolvers.Mutation().CreateBulkNotificationPreference(ctx, fc.Args["input"].([]*generated.CreateNotificationPreferenceInput)) }, nil, ec.marshalNNotificationPreferenceBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceBulkCreatePayload, @@ -22757,7 +22757,7 @@ func (ec *executionContext) _Mutation_createBulkCSVNotificationPreference(ctx co ec.fieldContext_Mutation_createBulkCSVNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVNotificationPreference(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVNotificationPreference(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNNotificationPreferenceBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceBulkCreatePayload, @@ -22802,7 +22802,7 @@ func (ec *executionContext) _Mutation_updateBulkNotificationPreference(ctx conte ec.fieldContext_Mutation_updateBulkNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkNotificationPreference(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateNotificationPreferenceInput)) + return ec.Resolvers.Mutation().UpdateBulkNotificationPreference(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateNotificationPreferenceInput)) }, nil, ec.marshalNNotificationPreferenceBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceBulkUpdatePayload, @@ -22849,7 +22849,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVNotificationPreference(ctx co ec.fieldContext_Mutation_updateBulkCSVNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVNotificationPreference(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVNotificationPreference(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNNotificationPreferenceBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceBulkUpdatePayload, @@ -22896,7 +22896,7 @@ func (ec *executionContext) _Mutation_updateNotificationPreference(ctx context.C ec.fieldContext_Mutation_updateNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateNotificationPreference(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNotificationPreferenceInput)) + return ec.Resolvers.Mutation().UpdateNotificationPreference(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNotificationPreferenceInput)) }, nil, ec.marshalNNotificationPreferenceUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceUpdatePayload, @@ -22941,7 +22941,7 @@ func (ec *executionContext) _Mutation_deleteNotificationPreference(ctx context.C ec.fieldContext_Mutation_deleteNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteNotificationPreference(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteNotificationPreference(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNotificationPreferenceDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceDeletePayload, @@ -22986,7 +22986,7 @@ func (ec *executionContext) _Mutation_deleteBulkNotificationPreference(ctx conte ec.fieldContext_Mutation_deleteBulkNotificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkNotificationPreference(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkNotificationPreference(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNNotificationPreferenceBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationPreferenceBulkDeletePayload, @@ -23031,7 +23031,7 @@ func (ec *executionContext) _Mutation_createNotificationTemplate(ctx context.Con ec.fieldContext_Mutation_createNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateNotificationTemplate(ctx, fc.Args["input"].(generated.CreateNotificationTemplateInput)) + return ec.Resolvers.Mutation().CreateNotificationTemplate(ctx, fc.Args["input"].(generated.CreateNotificationTemplateInput)) }, nil, ec.marshalNNotificationTemplateCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateCreatePayload, @@ -23076,7 +23076,7 @@ func (ec *executionContext) _Mutation_createBulkNotificationTemplate(ctx context ec.fieldContext_Mutation_createBulkNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkNotificationTemplate(ctx, fc.Args["input"].([]*generated.CreateNotificationTemplateInput)) + return ec.Resolvers.Mutation().CreateBulkNotificationTemplate(ctx, fc.Args["input"].([]*generated.CreateNotificationTemplateInput)) }, nil, ec.marshalNNotificationTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateBulkCreatePayload, @@ -23121,7 +23121,7 @@ func (ec *executionContext) _Mutation_createBulkCSVNotificationTemplate(ctx cont ec.fieldContext_Mutation_createBulkCSVNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVNotificationTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVNotificationTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNNotificationTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateBulkCreatePayload, @@ -23166,7 +23166,7 @@ func (ec *executionContext) _Mutation_updateBulkNotificationTemplate(ctx context ec.fieldContext_Mutation_updateBulkNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkNotificationTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateNotificationTemplateInput)) + return ec.Resolvers.Mutation().UpdateBulkNotificationTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateNotificationTemplateInput)) }, nil, ec.marshalNNotificationTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateBulkUpdatePayload, @@ -23213,7 +23213,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVNotificationTemplate(ctx cont ec.fieldContext_Mutation_updateBulkCSVNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVNotificationTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVNotificationTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNNotificationTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateBulkUpdatePayload, @@ -23260,7 +23260,7 @@ func (ec *executionContext) _Mutation_updateNotificationTemplate(ctx context.Con ec.fieldContext_Mutation_updateNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateNotificationTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNotificationTemplateInput)) + return ec.Resolvers.Mutation().UpdateNotificationTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateNotificationTemplateInput)) }, nil, ec.marshalNNotificationTemplateUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateUpdatePayload, @@ -23305,7 +23305,7 @@ func (ec *executionContext) _Mutation_deleteNotificationTemplate(ctx context.Con ec.fieldContext_Mutation_deleteNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteNotificationTemplate(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteNotificationTemplate(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNotificationTemplateDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateDeletePayload, @@ -23350,7 +23350,7 @@ func (ec *executionContext) _Mutation_deleteBulkNotificationTemplate(ctx context ec.fieldContext_Mutation_deleteBulkNotificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkNotificationTemplate(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkNotificationTemplate(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNNotificationTemplateBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐNotificationTemplateBulkDeletePayload, @@ -23395,7 +23395,7 @@ func (ec *executionContext) _Mutation_createOnboarding(ctx context.Context, fiel ec.fieldContext_Mutation_createOnboarding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateOnboarding(ctx, fc.Args["input"].(generated.CreateOnboardingInput)) + return ec.Resolvers.Mutation().CreateOnboarding(ctx, fc.Args["input"].(generated.CreateOnboardingInput)) }, nil, ec.marshalNOnboardingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOnboardingCreatePayload, @@ -23440,7 +23440,7 @@ func (ec *executionContext) _Mutation_createOrganization(ctx context.Context, fi ec.fieldContext_Mutation_createOrganization, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateOrganization(ctx, fc.Args["input"].(generated.CreateOrganizationInput), fc.Args["avatarFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateOrganization(ctx, fc.Args["input"].(generated.CreateOrganizationInput), fc.Args["avatarFile"].(*graphql.Upload)) }, nil, ec.marshalNOrganizationCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationCreatePayload, @@ -23485,7 +23485,7 @@ func (ec *executionContext) _Mutation_updateOrganization(ctx context.Context, fi ec.fieldContext_Mutation_updateOrganization, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateOrganization(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateOrganizationInput), fc.Args["avatarFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateOrganization(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateOrganizationInput), fc.Args["avatarFile"].(*graphql.Upload)) }, nil, ec.marshalNOrganizationUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationUpdatePayload, @@ -23530,7 +23530,7 @@ func (ec *executionContext) _Mutation_deleteOrganization(ctx context.Context, fi ec.fieldContext_Mutation_deleteOrganization, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteOrganization(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteOrganization(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNOrganizationDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationDeletePayload, @@ -23575,7 +23575,7 @@ func (ec *executionContext) _Mutation_createOrganizationSetting(ctx context.Cont ec.fieldContext_Mutation_createOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateOrganizationSetting(ctx, fc.Args["input"].(generated.CreateOrganizationSettingInput)) + return ec.Resolvers.Mutation().CreateOrganizationSetting(ctx, fc.Args["input"].(generated.CreateOrganizationSettingInput)) }, nil, ec.marshalNOrganizationSettingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingCreatePayload, @@ -23620,7 +23620,7 @@ func (ec *executionContext) _Mutation_createBulkOrganizationSetting(ctx context. ec.fieldContext_Mutation_createBulkOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkOrganizationSetting(ctx, fc.Args["input"].([]*generated.CreateOrganizationSettingInput)) + return ec.Resolvers.Mutation().CreateBulkOrganizationSetting(ctx, fc.Args["input"].([]*generated.CreateOrganizationSettingInput)) }, nil, ec.marshalNOrganizationSettingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingBulkCreatePayload, @@ -23665,7 +23665,7 @@ func (ec *executionContext) _Mutation_createBulkCSVOrganizationSetting(ctx conte ec.fieldContext_Mutation_createBulkCSVOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVOrganizationSetting(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVOrganizationSetting(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNOrganizationSettingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingBulkCreatePayload, @@ -23710,7 +23710,7 @@ func (ec *executionContext) _Mutation_updateOrganizationSetting(ctx context.Cont ec.fieldContext_Mutation_updateOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateOrganizationSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateOrganizationSettingInput)) + return ec.Resolvers.Mutation().UpdateOrganizationSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateOrganizationSettingInput)) }, nil, ec.marshalNOrganizationSettingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingUpdatePayload, @@ -23755,7 +23755,7 @@ func (ec *executionContext) _Mutation_deleteOrganizationSetting(ctx context.Cont ec.fieldContext_Mutation_deleteOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteOrganizationSetting(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteOrganizationSetting(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNOrganizationSettingDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingDeletePayload, @@ -23800,7 +23800,7 @@ func (ec *executionContext) _Mutation_deleteBulkOrganizationSetting(ctx context. ec.fieldContext_Mutation_deleteBulkOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkOrganizationSetting(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkOrganizationSetting(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNOrganizationSettingBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingBulkDeletePayload, @@ -23845,7 +23845,7 @@ func (ec *executionContext) _Mutation_updateBulkOrganizationSetting(ctx context. ec.fieldContext_Mutation_updateBulkOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkOrganizationSetting(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateOrganizationSettingInput)) + return ec.Resolvers.Mutation().UpdateBulkOrganizationSetting(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateOrganizationSettingInput)) }, nil, ec.marshalNOrganizationSettingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingBulkUpdatePayload, @@ -23892,7 +23892,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVOrganizationSetting(ctx conte ec.fieldContext_Mutation_updateBulkCSVOrganizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVOrganizationSetting(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVOrganizationSetting(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNOrganizationSettingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationSettingBulkUpdatePayload, @@ -23939,7 +23939,7 @@ func (ec *executionContext) _Mutation_createOrganizationWithMembers(ctx context. ec.fieldContext_Mutation_createOrganizationWithMembers, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateOrganizationWithMembers(ctx, fc.Args["organizationInput"].(generated.CreateOrganizationInput), fc.Args["avatarFile"].(*graphql.Upload), fc.Args["members"].([]*model.OrgMembersInput)) + return ec.Resolvers.Mutation().CreateOrganizationWithMembers(ctx, fc.Args["organizationInput"].(generated.CreateOrganizationInput), fc.Args["avatarFile"].(*graphql.Upload), fc.Args["members"].([]*model.OrgMembersInput)) }, nil, ec.marshalNOrganizationCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationCreatePayload, @@ -23984,7 +23984,7 @@ func (ec *executionContext) _Mutation_transferOrganizationOwnership(ctx context. ec.fieldContext_Mutation_transferOrganizationOwnership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().TransferOrganizationOwnership(ctx, fc.Args["newOwnerEmail"].(string)) + return ec.Resolvers.Mutation().TransferOrganizationOwnership(ctx, fc.Args["newOwnerEmail"].(string)) }, nil, ec.marshalNOrganizationTransferOwnershipPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrganizationTransferOwnershipPayload, @@ -24031,7 +24031,7 @@ func (ec *executionContext) _Mutation_createOrgMembership(ctx context.Context, f ec.fieldContext_Mutation_createOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateOrgMembership(ctx, fc.Args["input"].(generated.CreateOrgMembershipInput)) + return ec.Resolvers.Mutation().CreateOrgMembership(ctx, fc.Args["input"].(generated.CreateOrgMembershipInput)) }, nil, ec.marshalNOrgMembershipCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipCreatePayload, @@ -24076,7 +24076,7 @@ func (ec *executionContext) _Mutation_createBulkOrgMembership(ctx context.Contex ec.fieldContext_Mutation_createBulkOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkOrgMembership(ctx, fc.Args["input"].([]*generated.CreateOrgMembershipInput)) + return ec.Resolvers.Mutation().CreateBulkOrgMembership(ctx, fc.Args["input"].([]*generated.CreateOrgMembershipInput)) }, nil, ec.marshalNOrgMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipBulkCreatePayload, @@ -24121,7 +24121,7 @@ func (ec *executionContext) _Mutation_createBulkCSVOrgMembership(ctx context.Con ec.fieldContext_Mutation_createBulkCSVOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVOrgMembership(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVOrgMembership(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNOrgMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipBulkCreatePayload, @@ -24166,7 +24166,7 @@ func (ec *executionContext) _Mutation_updateOrgMembership(ctx context.Context, f ec.fieldContext_Mutation_updateOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateOrgMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateOrgMembershipInput)) + return ec.Resolvers.Mutation().UpdateOrgMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateOrgMembershipInput)) }, nil, ec.marshalNOrgMembershipUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipUpdatePayload, @@ -24211,7 +24211,7 @@ func (ec *executionContext) _Mutation_deleteOrgMembership(ctx context.Context, f ec.fieldContext_Mutation_deleteOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteOrgMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteOrgMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNOrgMembershipDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipDeletePayload, @@ -24256,7 +24256,7 @@ func (ec *executionContext) _Mutation_deleteBulkOrgMembership(ctx context.Contex ec.fieldContext_Mutation_deleteBulkOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkOrgMembership(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkOrgMembership(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNOrgMembershipBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipBulkDeletePayload, @@ -24301,7 +24301,7 @@ func (ec *executionContext) _Mutation_updateBulkOrgMembership(ctx context.Contex ec.fieldContext_Mutation_updateBulkOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkOrgMembership(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateOrgMembershipInput)) + return ec.Resolvers.Mutation().UpdateBulkOrgMembership(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateOrgMembershipInput)) }, nil, ec.marshalNOrgMembershipBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipBulkUpdatePayload, @@ -24348,7 +24348,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVOrgMembership(ctx context.Con ec.fieldContext_Mutation_updateBulkCSVOrgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVOrgMembership(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVOrgMembership(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNOrgMembershipBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐOrgMembershipBulkUpdatePayload, @@ -24395,7 +24395,7 @@ func (ec *executionContext) _Mutation_createPersonalAccessToken(ctx context.Cont ec.fieldContext_Mutation_createPersonalAccessToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreatePersonalAccessToken(ctx, fc.Args["input"].(generated.CreatePersonalAccessTokenInput)) + return ec.Resolvers.Mutation().CreatePersonalAccessToken(ctx, fc.Args["input"].(generated.CreatePersonalAccessTokenInput)) }, nil, ec.marshalNPersonalAccessTokenCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPersonalAccessTokenCreatePayload, @@ -24440,7 +24440,7 @@ func (ec *executionContext) _Mutation_updatePersonalAccessToken(ctx context.Cont ec.fieldContext_Mutation_updatePersonalAccessToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdatePersonalAccessToken(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdatePersonalAccessTokenInput)) + return ec.Resolvers.Mutation().UpdatePersonalAccessToken(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdatePersonalAccessTokenInput)) }, nil, ec.marshalNPersonalAccessTokenUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPersonalAccessTokenUpdatePayload, @@ -24485,7 +24485,7 @@ func (ec *executionContext) _Mutation_deletePersonalAccessToken(ctx context.Cont ec.fieldContext_Mutation_deletePersonalAccessToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeletePersonalAccessToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeletePersonalAccessToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNPersonalAccessTokenDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPersonalAccessTokenDeletePayload, @@ -24530,7 +24530,7 @@ func (ec *executionContext) _Mutation_createPlatform(ctx context.Context, field ec.fieldContext_Mutation_createPlatform, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreatePlatform(ctx, fc.Args["input"].(generated.CreatePlatformInput)) + return ec.Resolvers.Mutation().CreatePlatform(ctx, fc.Args["input"].(generated.CreatePlatformInput)) }, nil, ec.marshalNPlatformCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPlatformCreatePayload, @@ -24575,7 +24575,7 @@ func (ec *executionContext) _Mutation_createBulkPlatform(ctx context.Context, fi ec.fieldContext_Mutation_createBulkPlatform, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkPlatform(ctx, fc.Args["input"].([]*generated.CreatePlatformInput)) + return ec.Resolvers.Mutation().CreateBulkPlatform(ctx, fc.Args["input"].([]*generated.CreatePlatformInput)) }, nil, ec.marshalNPlatformBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPlatformBulkCreatePayload, @@ -24620,7 +24620,7 @@ func (ec *executionContext) _Mutation_createBulkCSVPlatform(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVPlatform, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVPlatform(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVPlatform(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNPlatformBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPlatformBulkCreatePayload, @@ -24665,7 +24665,7 @@ func (ec *executionContext) _Mutation_updatePlatform(ctx context.Context, field ec.fieldContext_Mutation_updatePlatform, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdatePlatform(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdatePlatformInput)) + return ec.Resolvers.Mutation().UpdatePlatform(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdatePlatformInput)) }, nil, ec.marshalNPlatformUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPlatformUpdatePayload, @@ -24710,7 +24710,7 @@ func (ec *executionContext) _Mutation_deletePlatform(ctx context.Context, field ec.fieldContext_Mutation_deletePlatform, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeletePlatform(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeletePlatform(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNPlatformDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐPlatformDeletePayload, @@ -24755,7 +24755,7 @@ func (ec *executionContext) _Mutation_createProcedure(ctx context.Context, field ec.fieldContext_Mutation_createProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateProcedure(ctx, fc.Args["input"].(generated.CreateProcedureInput)) + return ec.Resolvers.Mutation().CreateProcedure(ctx, fc.Args["input"].(generated.CreateProcedureInput)) }, nil, ec.marshalNProcedureCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureCreatePayload, @@ -24800,7 +24800,7 @@ func (ec *executionContext) _Mutation_createUploadProcedure(ctx context.Context, ec.fieldContext_Mutation_createUploadProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateUploadProcedure(ctx, fc.Args["procedureFile"].(graphql.Upload), fc.Args["ownerID"].(*string)) + return ec.Resolvers.Mutation().CreateUploadProcedure(ctx, fc.Args["procedureFile"].(graphql.Upload), fc.Args["ownerID"].(*string)) }, nil, ec.marshalNProcedureCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureCreatePayload, @@ -24845,7 +24845,7 @@ func (ec *executionContext) _Mutation_createBulkProcedure(ctx context.Context, f ec.fieldContext_Mutation_createBulkProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkProcedure(ctx, fc.Args["input"].([]*generated.CreateProcedureInput)) + return ec.Resolvers.Mutation().CreateBulkProcedure(ctx, fc.Args["input"].([]*generated.CreateProcedureInput)) }, nil, ec.marshalNProcedureBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureBulkCreatePayload, @@ -24890,7 +24890,7 @@ func (ec *executionContext) _Mutation_createBulkCSVProcedure(ctx context.Context ec.fieldContext_Mutation_createBulkCSVProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVProcedure(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVProcedure(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNProcedureBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureBulkCreatePayload, @@ -24935,7 +24935,7 @@ func (ec *executionContext) _Mutation_updateBulkProcedure(ctx context.Context, f ec.fieldContext_Mutation_updateBulkProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkProcedure(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateProcedureInput)) + return ec.Resolvers.Mutation().UpdateBulkProcedure(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateProcedureInput)) }, nil, ec.marshalNProcedureBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureBulkUpdatePayload, @@ -24982,7 +24982,7 @@ func (ec *executionContext) _Mutation_updateProcedure(ctx context.Context, field ec.fieldContext_Mutation_updateProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateProcedure(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateProcedureInput), fc.Args["procedureFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateProcedure(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateProcedureInput), fc.Args["procedureFile"].(*graphql.Upload)) }, nil, ec.marshalNProcedureUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureUpdatePayload, @@ -25027,7 +25027,7 @@ func (ec *executionContext) _Mutation_deleteProcedure(ctx context.Context, field ec.fieldContext_Mutation_deleteProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteProcedure(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteProcedure(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNProcedureDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureDeletePayload, @@ -25072,7 +25072,7 @@ func (ec *executionContext) _Mutation_deleteBulkProcedure(ctx context.Context, f ec.fieldContext_Mutation_deleteBulkProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkProcedure(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkProcedure(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNProcedureBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureBulkDeletePayload, @@ -25117,7 +25117,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVProcedure(ctx context.Context ec.fieldContext_Mutation_updateBulkCSVProcedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVProcedure(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVProcedure(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNProcedureBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProcedureBulkUpdatePayload, @@ -25164,7 +25164,7 @@ func (ec *executionContext) _Mutation_createProgram(ctx context.Context, field g ec.fieldContext_Mutation_createProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateProgram(ctx, fc.Args["input"].(generated.CreateProgramInput)) + return ec.Resolvers.Mutation().CreateProgram(ctx, fc.Args["input"].(generated.CreateProgramInput)) }, nil, ec.marshalNProgramCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramCreatePayload, @@ -25209,7 +25209,7 @@ func (ec *executionContext) _Mutation_createBulkProgram(ctx context.Context, fie ec.fieldContext_Mutation_createBulkProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkProgram(ctx, fc.Args["input"].([]*generated.CreateProgramInput)) + return ec.Resolvers.Mutation().CreateBulkProgram(ctx, fc.Args["input"].([]*generated.CreateProgramInput)) }, nil, ec.marshalNProgramBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramBulkCreatePayload, @@ -25254,7 +25254,7 @@ func (ec *executionContext) _Mutation_createBulkCSVProgram(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVProgram(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVProgram(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNProgramBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramBulkCreatePayload, @@ -25299,7 +25299,7 @@ func (ec *executionContext) _Mutation_updateProgram(ctx context.Context, field g ec.fieldContext_Mutation_updateProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateProgram(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateProgramInput)) + return ec.Resolvers.Mutation().UpdateProgram(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateProgramInput)) }, nil, ec.marshalNProgramUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramUpdatePayload, @@ -25344,7 +25344,7 @@ func (ec *executionContext) _Mutation_deleteProgram(ctx context.Context, field g ec.fieldContext_Mutation_deleteProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteProgram(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteProgram(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNProgramDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramDeletePayload, @@ -25389,7 +25389,7 @@ func (ec *executionContext) _Mutation_deleteBulkProgram(ctx context.Context, fie ec.fieldContext_Mutation_deleteBulkProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkProgram(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkProgram(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNProgramBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramBulkDeletePayload, @@ -25434,7 +25434,7 @@ func (ec *executionContext) _Mutation_updateBulkProgram(ctx context.Context, fie ec.fieldContext_Mutation_updateBulkProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkProgram(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateProgramInput)) + return ec.Resolvers.Mutation().UpdateBulkProgram(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateProgramInput)) }, nil, ec.marshalNProgramBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramBulkUpdatePayload, @@ -25481,7 +25481,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVProgram(ctx context.Context, ec.fieldContext_Mutation_updateBulkCSVProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVProgram(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVProgram(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNProgramBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramBulkUpdatePayload, @@ -25528,7 +25528,7 @@ func (ec *executionContext) _Mutation_createProgramWithMembers(ctx context.Conte ec.fieldContext_Mutation_createProgramWithMembers, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateProgramWithMembers(ctx, fc.Args["input"].(model.CreateProgramWithMembersInput)) + return ec.Resolvers.Mutation().CreateProgramWithMembers(ctx, fc.Args["input"].(model.CreateProgramWithMembersInput)) }, nil, ec.marshalNProgramCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramCreatePayload, @@ -25573,7 +25573,7 @@ func (ec *executionContext) _Mutation_createFullProgram(ctx context.Context, fie ec.fieldContext_Mutation_createFullProgram, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateFullProgram(ctx, fc.Args["input"].(model.CreateFullProgramInput)) + return ec.Resolvers.Mutation().CreateFullProgram(ctx, fc.Args["input"].(model.CreateFullProgramInput)) }, nil, ec.marshalNProgramCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramCreatePayload, @@ -25618,7 +25618,7 @@ func (ec *executionContext) _Mutation_createControlWithSubcontrols(ctx context.C ec.fieldContext_Mutation_createControlWithSubcontrols, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateControlWithSubcontrols(ctx, fc.Args["input"].(model.CreateControlWithSubcontrolsInput)) + return ec.Resolvers.Mutation().CreateControlWithSubcontrols(ctx, fc.Args["input"].(model.CreateControlWithSubcontrolsInput)) }, nil, ec.marshalNControlCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCreatePayload, @@ -25663,7 +25663,7 @@ func (ec *executionContext) _Mutation_createProgramMembership(ctx context.Contex ec.fieldContext_Mutation_createProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateProgramMembership(ctx, fc.Args["input"].(generated.CreateProgramMembershipInput)) + return ec.Resolvers.Mutation().CreateProgramMembership(ctx, fc.Args["input"].(generated.CreateProgramMembershipInput)) }, nil, ec.marshalNProgramMembershipCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipCreatePayload, @@ -25708,7 +25708,7 @@ func (ec *executionContext) _Mutation_createBulkProgramMembership(ctx context.Co ec.fieldContext_Mutation_createBulkProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkProgramMembership(ctx, fc.Args["input"].([]*generated.CreateProgramMembershipInput)) + return ec.Resolvers.Mutation().CreateBulkProgramMembership(ctx, fc.Args["input"].([]*generated.CreateProgramMembershipInput)) }, nil, ec.marshalNProgramMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipBulkCreatePayload, @@ -25753,7 +25753,7 @@ func (ec *executionContext) _Mutation_createBulkCSVProgramMembership(ctx context ec.fieldContext_Mutation_createBulkCSVProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVProgramMembership(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVProgramMembership(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNProgramMembershipBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipBulkCreatePayload, @@ -25798,7 +25798,7 @@ func (ec *executionContext) _Mutation_updateProgramMembership(ctx context.Contex ec.fieldContext_Mutation_updateProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateProgramMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateProgramMembershipInput)) + return ec.Resolvers.Mutation().UpdateProgramMembership(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateProgramMembershipInput)) }, nil, ec.marshalNProgramMembershipUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipUpdatePayload, @@ -25843,7 +25843,7 @@ func (ec *executionContext) _Mutation_deleteProgramMembership(ctx context.Contex ec.fieldContext_Mutation_deleteProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteProgramMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteProgramMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNProgramMembershipDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipDeletePayload, @@ -25888,7 +25888,7 @@ func (ec *executionContext) _Mutation_deleteBulkProgramMembership(ctx context.Co ec.fieldContext_Mutation_deleteBulkProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkProgramMembership(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkProgramMembership(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNProgramMembershipBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipBulkDeletePayload, @@ -25933,7 +25933,7 @@ func (ec *executionContext) _Mutation_updateBulkProgramMembership(ctx context.Co ec.fieldContext_Mutation_updateBulkProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkProgramMembership(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateProgramMembershipInput)) + return ec.Resolvers.Mutation().UpdateBulkProgramMembership(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateProgramMembershipInput)) }, nil, ec.marshalNProgramMembershipBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipBulkUpdatePayload, @@ -25980,7 +25980,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVProgramMembership(ctx context ec.fieldContext_Mutation_updateBulkCSVProgramMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVProgramMembership(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVProgramMembership(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNProgramMembershipBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐProgramMembershipBulkUpdatePayload, @@ -26027,7 +26027,7 @@ func (ec *executionContext) _Mutation_createRemediation(ctx context.Context, fie ec.fieldContext_Mutation_createRemediation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateRemediation(ctx, fc.Args["input"].(generated.CreateRemediationInput)) + return ec.Resolvers.Mutation().CreateRemediation(ctx, fc.Args["input"].(generated.CreateRemediationInput)) }, nil, ec.marshalNRemediationCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRemediationCreatePayload, @@ -26072,7 +26072,7 @@ func (ec *executionContext) _Mutation_createBulkRemediation(ctx context.Context, ec.fieldContext_Mutation_createBulkRemediation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkRemediation(ctx, fc.Args["input"].([]*generated.CreateRemediationInput)) + return ec.Resolvers.Mutation().CreateBulkRemediation(ctx, fc.Args["input"].([]*generated.CreateRemediationInput)) }, nil, ec.marshalNRemediationBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRemediationBulkCreatePayload, @@ -26117,7 +26117,7 @@ func (ec *executionContext) _Mutation_createBulkCSVRemediation(ctx context.Conte ec.fieldContext_Mutation_createBulkCSVRemediation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVRemediation(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVRemediation(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNRemediationBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRemediationBulkCreatePayload, @@ -26162,7 +26162,7 @@ func (ec *executionContext) _Mutation_updateRemediation(ctx context.Context, fie ec.fieldContext_Mutation_updateRemediation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateRemediation(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateRemediationInput)) + return ec.Resolvers.Mutation().UpdateRemediation(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateRemediationInput)) }, nil, ec.marshalNRemediationUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRemediationUpdatePayload, @@ -26207,7 +26207,7 @@ func (ec *executionContext) _Mutation_deleteRemediation(ctx context.Context, fie ec.fieldContext_Mutation_deleteRemediation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteRemediation(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteRemediation(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNRemediationDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRemediationDeletePayload, @@ -26252,7 +26252,7 @@ func (ec *executionContext) _Mutation_createReview(ctx context.Context, field gr ec.fieldContext_Mutation_createReview, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateReview(ctx, fc.Args["input"].(generated.CreateReviewInput)) + return ec.Resolvers.Mutation().CreateReview(ctx, fc.Args["input"].(generated.CreateReviewInput)) }, nil, ec.marshalNReviewCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐReviewCreatePayload, @@ -26297,7 +26297,7 @@ func (ec *executionContext) _Mutation_createBulkReview(ctx context.Context, fiel ec.fieldContext_Mutation_createBulkReview, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkReview(ctx, fc.Args["input"].([]*generated.CreateReviewInput)) + return ec.Resolvers.Mutation().CreateBulkReview(ctx, fc.Args["input"].([]*generated.CreateReviewInput)) }, nil, ec.marshalNReviewBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐReviewBulkCreatePayload, @@ -26342,7 +26342,7 @@ func (ec *executionContext) _Mutation_createBulkCSVReview(ctx context.Context, f ec.fieldContext_Mutation_createBulkCSVReview, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVReview(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVReview(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNReviewBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐReviewBulkCreatePayload, @@ -26387,7 +26387,7 @@ func (ec *executionContext) _Mutation_updateReview(ctx context.Context, field gr ec.fieldContext_Mutation_updateReview, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateReview(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateReviewInput)) + return ec.Resolvers.Mutation().UpdateReview(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateReviewInput)) }, nil, ec.marshalNReviewUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐReviewUpdatePayload, @@ -26432,7 +26432,7 @@ func (ec *executionContext) _Mutation_deleteReview(ctx context.Context, field gr ec.fieldContext_Mutation_deleteReview, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteReview(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteReview(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNReviewDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐReviewDeletePayload, @@ -26477,7 +26477,7 @@ func (ec *executionContext) _Mutation_createRisk(ctx context.Context, field grap ec.fieldContext_Mutation_createRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateRisk(ctx, fc.Args["input"].(generated.CreateRiskInput)) + return ec.Resolvers.Mutation().CreateRisk(ctx, fc.Args["input"].(generated.CreateRiskInput)) }, nil, ec.marshalNRiskCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskCreatePayload, @@ -26522,7 +26522,7 @@ func (ec *executionContext) _Mutation_createBulkRisk(ctx context.Context, field ec.fieldContext_Mutation_createBulkRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkRisk(ctx, fc.Args["input"].([]*generated.CreateRiskInput)) + return ec.Resolvers.Mutation().CreateBulkRisk(ctx, fc.Args["input"].([]*generated.CreateRiskInput)) }, nil, ec.marshalNRiskBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskBulkCreatePayload, @@ -26567,7 +26567,7 @@ func (ec *executionContext) _Mutation_createBulkCSVRisk(ctx context.Context, fie ec.fieldContext_Mutation_createBulkCSVRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVRisk(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVRisk(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNRiskBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskBulkCreatePayload, @@ -26612,7 +26612,7 @@ func (ec *executionContext) _Mutation_updateBulkRisk(ctx context.Context, field ec.fieldContext_Mutation_updateBulkRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkRisk(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateRiskInput)) + return ec.Resolvers.Mutation().UpdateBulkRisk(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateRiskInput)) }, nil, ec.marshalNRiskBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskBulkUpdatePayload, @@ -26659,7 +26659,7 @@ func (ec *executionContext) _Mutation_updateRisk(ctx context.Context, field grap ec.fieldContext_Mutation_updateRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateRisk(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateRiskInput)) + return ec.Resolvers.Mutation().UpdateRisk(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateRiskInput)) }, nil, ec.marshalNRiskUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskUpdatePayload, @@ -26704,7 +26704,7 @@ func (ec *executionContext) _Mutation_deleteRisk(ctx context.Context, field grap ec.fieldContext_Mutation_deleteRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteRisk(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteRisk(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNRiskDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskDeletePayload, @@ -26749,7 +26749,7 @@ func (ec *executionContext) _Mutation_deleteBulkRisk(ctx context.Context, field ec.fieldContext_Mutation_deleteBulkRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkRisk(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkRisk(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNRiskBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskBulkDeletePayload, @@ -26794,7 +26794,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVRisk(ctx context.Context, fie ec.fieldContext_Mutation_updateBulkCSVRisk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVRisk(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVRisk(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNRiskBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐRiskBulkUpdatePayload, @@ -26841,7 +26841,7 @@ func (ec *executionContext) _Mutation_createScan(ctx context.Context, field grap ec.fieldContext_Mutation_createScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateScan(ctx, fc.Args["input"].(generated.CreateScanInput)) + return ec.Resolvers.Mutation().CreateScan(ctx, fc.Args["input"].(generated.CreateScanInput)) }, nil, ec.marshalNScanCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanCreatePayload, @@ -26886,7 +26886,7 @@ func (ec *executionContext) _Mutation_createBulkScan(ctx context.Context, field ec.fieldContext_Mutation_createBulkScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkScan(ctx, fc.Args["input"].([]*generated.CreateScanInput)) + return ec.Resolvers.Mutation().CreateBulkScan(ctx, fc.Args["input"].([]*generated.CreateScanInput)) }, nil, ec.marshalNScanBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanBulkCreatePayload, @@ -26931,7 +26931,7 @@ func (ec *executionContext) _Mutation_createBulkCSVScan(ctx context.Context, fie ec.fieldContext_Mutation_createBulkCSVScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVScan(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVScan(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNScanBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanBulkCreatePayload, @@ -26976,7 +26976,7 @@ func (ec *executionContext) _Mutation_updateBulkScan(ctx context.Context, field ec.fieldContext_Mutation_updateBulkScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkScan(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateScanInput)) + return ec.Resolvers.Mutation().UpdateBulkScan(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateScanInput)) }, nil, ec.marshalNScanBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanBulkUpdatePayload, @@ -27023,7 +27023,7 @@ func (ec *executionContext) _Mutation_updateScan(ctx context.Context, field grap ec.fieldContext_Mutation_updateScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateScan(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateScanInput)) + return ec.Resolvers.Mutation().UpdateScan(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateScanInput)) }, nil, ec.marshalNScanUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanUpdatePayload, @@ -27068,7 +27068,7 @@ func (ec *executionContext) _Mutation_deleteScan(ctx context.Context, field grap ec.fieldContext_Mutation_deleteScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteScan(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteScan(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNScanDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanDeletePayload, @@ -27113,7 +27113,7 @@ func (ec *executionContext) _Mutation_deleteBulkScan(ctx context.Context, field ec.fieldContext_Mutation_deleteBulkScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkScan(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkScan(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNScanBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanBulkDeletePayload, @@ -27158,7 +27158,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVScan(ctx context.Context, fie ec.fieldContext_Mutation_updateBulkCSVScan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVScan(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVScan(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNScanBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScanBulkUpdatePayload, @@ -27205,7 +27205,7 @@ func (ec *executionContext) _Mutation_createScheduledJob(ctx context.Context, fi ec.fieldContext_Mutation_createScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateScheduledJob(ctx, fc.Args["input"].(generated.CreateScheduledJobInput)) + return ec.Resolvers.Mutation().CreateScheduledJob(ctx, fc.Args["input"].(generated.CreateScheduledJobInput)) }, nil, ec.marshalNScheduledJobCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobCreatePayload, @@ -27250,7 +27250,7 @@ func (ec *executionContext) _Mutation_createBulkScheduledJob(ctx context.Context ec.fieldContext_Mutation_createBulkScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkScheduledJob(ctx, fc.Args["input"].([]*generated.CreateScheduledJobInput)) + return ec.Resolvers.Mutation().CreateBulkScheduledJob(ctx, fc.Args["input"].([]*generated.CreateScheduledJobInput)) }, nil, ec.marshalNScheduledJobBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobBulkCreatePayload, @@ -27295,7 +27295,7 @@ func (ec *executionContext) _Mutation_createBulkCSVScheduledJob(ctx context.Cont ec.fieldContext_Mutation_createBulkCSVScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVScheduledJob(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVScheduledJob(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNScheduledJobBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobBulkCreatePayload, @@ -27340,7 +27340,7 @@ func (ec *executionContext) _Mutation_updateScheduledJob(ctx context.Context, fi ec.fieldContext_Mutation_updateScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateScheduledJob(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateScheduledJobInput)) + return ec.Resolvers.Mutation().UpdateScheduledJob(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateScheduledJobInput)) }, nil, ec.marshalNScheduledJobUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobUpdatePayload, @@ -27385,7 +27385,7 @@ func (ec *executionContext) _Mutation_deleteScheduledJob(ctx context.Context, fi ec.fieldContext_Mutation_deleteScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteScheduledJob(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteScheduledJob(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNScheduledJobDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobDeletePayload, @@ -27430,7 +27430,7 @@ func (ec *executionContext) _Mutation_deleteBulkScheduledJob(ctx context.Context ec.fieldContext_Mutation_deleteBulkScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkScheduledJob(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkScheduledJob(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNScheduledJobBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobBulkDeletePayload, @@ -27475,7 +27475,7 @@ func (ec *executionContext) _Mutation_updateBulkScheduledJob(ctx context.Context ec.fieldContext_Mutation_updateBulkScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkScheduledJob(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateScheduledJobInput)) + return ec.Resolvers.Mutation().UpdateBulkScheduledJob(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateScheduledJobInput)) }, nil, ec.marshalNScheduledJobBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobBulkUpdatePayload, @@ -27522,7 +27522,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVScheduledJob(ctx context.Cont ec.fieldContext_Mutation_updateBulkCSVScheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVScheduledJob(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVScheduledJob(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNScheduledJobBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobBulkUpdatePayload, @@ -27569,7 +27569,7 @@ func (ec *executionContext) _Mutation_createScheduledJobRun(ctx context.Context, ec.fieldContext_Mutation_createScheduledJobRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateScheduledJobRun(ctx, fc.Args["input"].(generated.CreateScheduledJobRunInput)) + return ec.Resolvers.Mutation().CreateScheduledJobRun(ctx, fc.Args["input"].(generated.CreateScheduledJobRunInput)) }, nil, ec.marshalNScheduledJobRunCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobRunCreatePayload, @@ -27614,7 +27614,7 @@ func (ec *executionContext) _Mutation_updateScheduledJobRun(ctx context.Context, ec.fieldContext_Mutation_updateScheduledJobRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateScheduledJobRun(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateScheduledJobRunInput)) + return ec.Resolvers.Mutation().UpdateScheduledJobRun(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateScheduledJobRunInput)) }, nil, ec.marshalNScheduledJobRunUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobRunUpdatePayload, @@ -27659,7 +27659,7 @@ func (ec *executionContext) _Mutation_deleteScheduledJobRun(ctx context.Context, ec.fieldContext_Mutation_deleteScheduledJobRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteScheduledJobRun(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteScheduledJobRun(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNScheduledJobRunDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐScheduledJobRunDeletePayload, @@ -27704,7 +27704,7 @@ func (ec *executionContext) _Mutation_createStandard(ctx context.Context, field ec.fieldContext_Mutation_createStandard, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateStandard(ctx, fc.Args["input"].(generated.CreateStandardInput), fc.Args["logoFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateStandard(ctx, fc.Args["input"].(generated.CreateStandardInput), fc.Args["logoFile"].(*graphql.Upload)) }, nil, ec.marshalNStandardCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐStandardCreatePayload, @@ -27749,7 +27749,7 @@ func (ec *executionContext) _Mutation_updateStandard(ctx context.Context, field ec.fieldContext_Mutation_updateStandard, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateStandard(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateStandardInput), fc.Args["logoFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateStandard(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateStandardInput), fc.Args["logoFile"].(*graphql.Upload)) }, nil, ec.marshalNStandardUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐStandardUpdatePayload, @@ -27794,7 +27794,7 @@ func (ec *executionContext) _Mutation_deleteStandard(ctx context.Context, field ec.fieldContext_Mutation_deleteStandard, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteStandard(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteStandard(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNStandardDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐStandardDeletePayload, @@ -27839,7 +27839,7 @@ func (ec *executionContext) _Mutation_createSubcontrol(ctx context.Context, fiel ec.fieldContext_Mutation_createSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateSubcontrol(ctx, fc.Args["input"].(generated.CreateSubcontrolInput)) + return ec.Resolvers.Mutation().CreateSubcontrol(ctx, fc.Args["input"].(generated.CreateSubcontrolInput)) }, nil, ec.marshalNSubcontrolCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolCreatePayload, @@ -27884,7 +27884,7 @@ func (ec *executionContext) _Mutation_createBulkSubcontrol(ctx context.Context, ec.fieldContext_Mutation_createBulkSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkSubcontrol(ctx, fc.Args["input"].([]*generated.CreateSubcontrolInput)) + return ec.Resolvers.Mutation().CreateBulkSubcontrol(ctx, fc.Args["input"].([]*generated.CreateSubcontrolInput)) }, nil, ec.marshalNSubcontrolBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolBulkCreatePayload, @@ -27929,7 +27929,7 @@ func (ec *executionContext) _Mutation_createBulkCSVSubcontrol(ctx context.Contex ec.fieldContext_Mutation_createBulkCSVSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVSubcontrol(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVSubcontrol(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNSubcontrolBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolBulkCreatePayload, @@ -27974,7 +27974,7 @@ func (ec *executionContext) _Mutation_updateSubcontrol(ctx context.Context, fiel ec.fieldContext_Mutation_updateSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateSubcontrol(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateSubcontrolInput)) + return ec.Resolvers.Mutation().UpdateSubcontrol(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateSubcontrolInput)) }, nil, ec.marshalNSubcontrolUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolUpdatePayload, @@ -28019,7 +28019,7 @@ func (ec *executionContext) _Mutation_deleteSubcontrol(ctx context.Context, fiel ec.fieldContext_Mutation_deleteSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteSubcontrol(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteSubcontrol(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNSubcontrolDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolDeletePayload, @@ -28064,7 +28064,7 @@ func (ec *executionContext) _Mutation_deleteBulkSubcontrol(ctx context.Context, ec.fieldContext_Mutation_deleteBulkSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkSubcontrol(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkSubcontrol(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNSubcontrolBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolBulkDeletePayload, @@ -28109,7 +28109,7 @@ func (ec *executionContext) _Mutation_updateBulkSubcontrol(ctx context.Context, ec.fieldContext_Mutation_updateBulkSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkSubcontrol(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateSubcontrolInput)) + return ec.Resolvers.Mutation().UpdateBulkSubcontrol(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateSubcontrolInput)) }, nil, ec.marshalNSubcontrolBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolBulkUpdatePayload, @@ -28156,7 +28156,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVSubcontrol(ctx context.Contex ec.fieldContext_Mutation_updateBulkCSVSubcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVSubcontrol(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVSubcontrol(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNSubcontrolBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubcontrolBulkUpdatePayload, @@ -28203,7 +28203,7 @@ func (ec *executionContext) _Mutation_createSubprocessor(ctx context.Context, fi ec.fieldContext_Mutation_createSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateSubprocessor(ctx, fc.Args["input"].(generated.CreateSubprocessorInput), fc.Args["logoFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateSubprocessor(ctx, fc.Args["input"].(generated.CreateSubprocessorInput), fc.Args["logoFile"].(*graphql.Upload)) }, nil, ec.marshalNSubprocessorCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorCreatePayload, @@ -28248,7 +28248,7 @@ func (ec *executionContext) _Mutation_createBulkSubprocessor(ctx context.Context ec.fieldContext_Mutation_createBulkSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkSubprocessor(ctx, fc.Args["input"].([]*generated.CreateSubprocessorInput)) + return ec.Resolvers.Mutation().CreateBulkSubprocessor(ctx, fc.Args["input"].([]*generated.CreateSubprocessorInput)) }, nil, ec.marshalNSubprocessorBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorBulkCreatePayload, @@ -28293,7 +28293,7 @@ func (ec *executionContext) _Mutation_createBulkCSVSubprocessor(ctx context.Cont ec.fieldContext_Mutation_createBulkCSVSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNSubprocessorBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorBulkCreatePayload, @@ -28338,7 +28338,7 @@ func (ec *executionContext) _Mutation_updateSubprocessor(ctx context.Context, fi ec.fieldContext_Mutation_updateSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateSubprocessor(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateSubprocessorInput), fc.Args["logoFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateSubprocessor(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateSubprocessorInput), fc.Args["logoFile"].(*graphql.Upload)) }, nil, ec.marshalNSubprocessorUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorUpdatePayload, @@ -28383,7 +28383,7 @@ func (ec *executionContext) _Mutation_updateBulkSubprocessor(ctx context.Context ec.fieldContext_Mutation_updateBulkSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkSubprocessor(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateSubprocessorInput)) + return ec.Resolvers.Mutation().UpdateBulkSubprocessor(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateSubprocessorInput)) }, nil, ec.marshalNSubprocessorBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorBulkUpdatePayload, @@ -28430,7 +28430,7 @@ func (ec *executionContext) _Mutation_deleteSubprocessor(ctx context.Context, fi ec.fieldContext_Mutation_deleteSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteSubprocessor(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteSubprocessor(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNSubprocessorDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorDeletePayload, @@ -28475,7 +28475,7 @@ func (ec *executionContext) _Mutation_deleteBulkSubprocessor(ctx context.Context ec.fieldContext_Mutation_deleteBulkSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkSubprocessor(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkSubprocessor(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNSubprocessorBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorBulkDeletePayload, @@ -28520,7 +28520,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVSubprocessor(ctx context.Cont ec.fieldContext_Mutation_updateBulkCSVSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNSubprocessorBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubprocessorBulkUpdatePayload, @@ -28567,7 +28567,7 @@ func (ec *executionContext) _Mutation_createSubscriber(ctx context.Context, fiel ec.fieldContext_Mutation_createSubscriber, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateSubscriber(ctx, fc.Args["input"].(generated.CreateSubscriberInput)) + return ec.Resolvers.Mutation().CreateSubscriber(ctx, fc.Args["input"].(generated.CreateSubscriberInput)) }, nil, ec.marshalNSubscriberCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubscriberCreatePayload, @@ -28612,7 +28612,7 @@ func (ec *executionContext) _Mutation_createBulkSubscriber(ctx context.Context, ec.fieldContext_Mutation_createBulkSubscriber, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkSubscriber(ctx, fc.Args["input"].([]*generated.CreateSubscriberInput)) + return ec.Resolvers.Mutation().CreateBulkSubscriber(ctx, fc.Args["input"].([]*generated.CreateSubscriberInput)) }, nil, ec.marshalNSubscriberBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubscriberBulkCreatePayload, @@ -28657,7 +28657,7 @@ func (ec *executionContext) _Mutation_createBulkCSVSubscriber(ctx context.Contex ec.fieldContext_Mutation_createBulkCSVSubscriber, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVSubscriber(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVSubscriber(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNSubscriberBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubscriberBulkCreatePayload, @@ -28702,7 +28702,7 @@ func (ec *executionContext) _Mutation_updateSubscriber(ctx context.Context, fiel ec.fieldContext_Mutation_updateSubscriber, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateSubscriber(ctx, fc.Args["email"].(string), fc.Args["input"].(generated.UpdateSubscriberInput)) + return ec.Resolvers.Mutation().UpdateSubscriber(ctx, fc.Args["email"].(string), fc.Args["input"].(generated.UpdateSubscriberInput)) }, nil, ec.marshalNSubscriberUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubscriberUpdatePayload, @@ -28747,7 +28747,7 @@ func (ec *executionContext) _Mutation_deleteSubscriber(ctx context.Context, fiel ec.fieldContext_Mutation_deleteSubscriber, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteSubscriber(ctx, fc.Args["email"].(string), fc.Args["ownerID"].(*string)) + return ec.Resolvers.Mutation().DeleteSubscriber(ctx, fc.Args["email"].(string), fc.Args["ownerID"].(*string)) }, nil, ec.marshalNSubscriberDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubscriberDeletePayload, @@ -28792,7 +28792,7 @@ func (ec *executionContext) _Mutation_createTagDefinition(ctx context.Context, f ec.fieldContext_Mutation_createTagDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTagDefinition(ctx, fc.Args["input"].(generated.CreateTagDefinitionInput)) + return ec.Resolvers.Mutation().CreateTagDefinition(ctx, fc.Args["input"].(generated.CreateTagDefinitionInput)) }, nil, ec.marshalNTagDefinitionCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTagDefinitionCreatePayload, @@ -28837,7 +28837,7 @@ func (ec *executionContext) _Mutation_createBulkTagDefinition(ctx context.Contex ec.fieldContext_Mutation_createBulkTagDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTagDefinition(ctx, fc.Args["input"].([]*generated.CreateTagDefinitionInput)) + return ec.Resolvers.Mutation().CreateBulkTagDefinition(ctx, fc.Args["input"].([]*generated.CreateTagDefinitionInput)) }, nil, ec.marshalNTagDefinitionBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTagDefinitionBulkCreatePayload, @@ -28882,7 +28882,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTagDefinition(ctx context.Con ec.fieldContext_Mutation_createBulkCSVTagDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTagDefinition(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTagDefinition(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTagDefinitionBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTagDefinitionBulkCreatePayload, @@ -28927,7 +28927,7 @@ func (ec *executionContext) _Mutation_updateTagDefinition(ctx context.Context, f ec.fieldContext_Mutation_updateTagDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTagDefinition(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTagDefinitionInput)) + return ec.Resolvers.Mutation().UpdateTagDefinition(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTagDefinitionInput)) }, nil, ec.marshalNTagDefinitionUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTagDefinitionUpdatePayload, @@ -28972,7 +28972,7 @@ func (ec *executionContext) _Mutation_deleteTagDefinition(ctx context.Context, f ec.fieldContext_Mutation_deleteTagDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTagDefinition(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTagDefinition(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTagDefinitionDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTagDefinitionDeletePayload, @@ -29017,7 +29017,7 @@ func (ec *executionContext) _Mutation_createTask(ctx context.Context, field grap ec.fieldContext_Mutation_createTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTask(ctx, fc.Args["input"].(generated.CreateTaskInput)) + return ec.Resolvers.Mutation().CreateTask(ctx, fc.Args["input"].(generated.CreateTaskInput)) }, nil, ec.marshalNTaskCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskCreatePayload, @@ -29062,7 +29062,7 @@ func (ec *executionContext) _Mutation_createBulkTask(ctx context.Context, field ec.fieldContext_Mutation_createBulkTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTask(ctx, fc.Args["input"].([]*generated.CreateTaskInput)) + return ec.Resolvers.Mutation().CreateBulkTask(ctx, fc.Args["input"].([]*generated.CreateTaskInput)) }, nil, ec.marshalNTaskBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskBulkCreatePayload, @@ -29107,7 +29107,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTask(ctx context.Context, fie ec.fieldContext_Mutation_createBulkCSVTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTask(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTask(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTaskBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskBulkCreatePayload, @@ -29152,7 +29152,7 @@ func (ec *executionContext) _Mutation_updateBulkTask(ctx context.Context, field ec.fieldContext_Mutation_updateBulkTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkTask(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTaskInput)) + return ec.Resolvers.Mutation().UpdateBulkTask(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTaskInput)) }, nil, ec.marshalNTaskBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskBulkUpdatePayload, @@ -29199,7 +29199,7 @@ func (ec *executionContext) _Mutation_updateTask(ctx context.Context, field grap ec.fieldContext_Mutation_updateTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTask(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTaskInput)) + return ec.Resolvers.Mutation().UpdateTask(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTaskInput)) }, nil, ec.marshalNTaskUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskUpdatePayload, @@ -29244,7 +29244,7 @@ func (ec *executionContext) _Mutation_deleteTask(ctx context.Context, field grap ec.fieldContext_Mutation_deleteTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTask(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTask(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTaskDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskDeletePayload, @@ -29289,7 +29289,7 @@ func (ec *executionContext) _Mutation_deleteBulkTask(ctx context.Context, field ec.fieldContext_Mutation_deleteBulkTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkTask(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkTask(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNTaskBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskBulkDeletePayload, @@ -29334,7 +29334,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVTask(ctx context.Context, fie ec.fieldContext_Mutation_updateBulkCSVTask, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVTask(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVTask(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTaskBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTaskBulkUpdatePayload, @@ -29381,7 +29381,7 @@ func (ec *executionContext) _Mutation_createTemplate(ctx context.Context, field ec.fieldContext_Mutation_createTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTemplate(ctx, fc.Args["input"].(generated.CreateTemplateInput), fc.Args["templateFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().CreateTemplate(ctx, fc.Args["input"].(generated.CreateTemplateInput), fc.Args["templateFiles"].([]*graphql.Upload)) }, nil, ec.marshalNTemplateCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateCreatePayload, @@ -29426,7 +29426,7 @@ func (ec *executionContext) _Mutation_createBulkTemplate(ctx context.Context, fi ec.fieldContext_Mutation_createBulkTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTemplate(ctx, fc.Args["input"].([]*generated.CreateTemplateInput)) + return ec.Resolvers.Mutation().CreateBulkTemplate(ctx, fc.Args["input"].([]*generated.CreateTemplateInput)) }, nil, ec.marshalNTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateBulkCreatePayload, @@ -29471,7 +29471,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTemplate(ctx context.Context, ec.fieldContext_Mutation_createBulkCSVTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTemplateBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateBulkCreatePayload, @@ -29516,7 +29516,7 @@ func (ec *executionContext) _Mutation_updateTemplate(ctx context.Context, field ec.fieldContext_Mutation_updateTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTemplateInput), fc.Args["templateFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTemplate(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTemplateInput), fc.Args["templateFiles"].([]*graphql.Upload)) }, nil, ec.marshalNTemplateUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateUpdatePayload, @@ -29561,7 +29561,7 @@ func (ec *executionContext) _Mutation_deleteTemplate(ctx context.Context, field ec.fieldContext_Mutation_deleteTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTemplate(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTemplate(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTemplateDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateDeletePayload, @@ -29606,7 +29606,7 @@ func (ec *executionContext) _Mutation_deleteBulkTemplate(ctx context.Context, fi ec.fieldContext_Mutation_deleteBulkTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkTemplate(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkTemplate(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNTemplateBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateBulkDeletePayload, @@ -29651,7 +29651,7 @@ func (ec *executionContext) _Mutation_updateBulkTemplate(ctx context.Context, fi ec.fieldContext_Mutation_updateBulkTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTemplateInput)) + return ec.Resolvers.Mutation().UpdateBulkTemplate(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTemplateInput)) }, nil, ec.marshalNTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateBulkUpdatePayload, @@ -29698,7 +29698,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVTemplate(ctx context.Context, ec.fieldContext_Mutation_updateBulkCSVTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVTemplate(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVTemplate(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTemplateBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTemplateBulkUpdatePayload, @@ -29745,7 +29745,7 @@ func (ec *executionContext) _Mutation_createTFASetting(ctx context.Context, fiel ec.fieldContext_Mutation_createTFASetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTFASetting(ctx, fc.Args["input"].(generated.CreateTFASettingInput)) + return ec.Resolvers.Mutation().CreateTFASetting(ctx, fc.Args["input"].(generated.CreateTFASettingInput)) }, nil, ec.marshalNTFASettingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTFASettingCreatePayload, @@ -29794,7 +29794,7 @@ func (ec *executionContext) _Mutation_updateTFASetting(ctx context.Context, fiel ec.fieldContext_Mutation_updateTFASetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTFASetting(ctx, fc.Args["input"].(generated.UpdateTFASettingInput)) + return ec.Resolvers.Mutation().UpdateTFASetting(ctx, fc.Args["input"].(generated.UpdateTFASettingInput)) }, nil, ec.marshalNTFASettingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTFASettingUpdatePayload, @@ -29845,7 +29845,7 @@ func (ec *executionContext) _Mutation_createTrustCenter(ctx context.Context, fie ec.fieldContext_Mutation_createTrustCenter, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenter(ctx, fc.Args["input"].(generated.CreateTrustCenterInput)) + return ec.Resolvers.Mutation().CreateTrustCenter(ctx, fc.Args["input"].(generated.CreateTrustCenterInput)) }, nil, ec.marshalNTrustCenterCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterCreatePayload, @@ -29890,7 +29890,7 @@ func (ec *executionContext) _Mutation_updateTrustCenter(ctx context.Context, fie ec.fieldContext_Mutation_updateTrustCenter, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenter(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterInput)) + return ec.Resolvers.Mutation().UpdateTrustCenter(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterInput)) }, nil, ec.marshalNTrustCenterUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterUpdatePayload, @@ -29935,7 +29935,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenter(ctx context.Context, fie ec.fieldContext_Mutation_deleteTrustCenter, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenter(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenter(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDeletePayload, @@ -29980,7 +29980,7 @@ func (ec *executionContext) _Mutation_createTrustCenterCompliance(ctx context.Co ec.fieldContext_Mutation_createTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterCompliance(ctx, fc.Args["input"].(generated.CreateTrustCenterComplianceInput)) + return ec.Resolvers.Mutation().CreateTrustCenterCompliance(ctx, fc.Args["input"].(generated.CreateTrustCenterComplianceInput)) }, nil, ec.marshalNTrustCenterComplianceCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceCreatePayload, @@ -30025,7 +30025,7 @@ func (ec *executionContext) _Mutation_createBulkTrustCenterCompliance(ctx contex ec.fieldContext_Mutation_createBulkTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTrustCenterCompliance(ctx, fc.Args["input"].([]*generated.CreateTrustCenterComplianceInput)) + return ec.Resolvers.Mutation().CreateBulkTrustCenterCompliance(ctx, fc.Args["input"].([]*generated.CreateTrustCenterComplianceInput)) }, nil, ec.marshalNTrustCenterComplianceBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceBulkCreatePayload, @@ -30070,7 +30070,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTrustCenterCompliance(ctx con ec.fieldContext_Mutation_createBulkCSVTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTrustCenterCompliance(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTrustCenterCompliance(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterComplianceBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceBulkCreatePayload, @@ -30115,7 +30115,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterCompliance(ctx context.Co ec.fieldContext_Mutation_updateTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterCompliance(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterComplianceInput)) + return ec.Resolvers.Mutation().UpdateTrustCenterCompliance(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterComplianceInput)) }, nil, ec.marshalNTrustCenterComplianceUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceUpdatePayload, @@ -30160,7 +30160,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterCompliance(ctx context.Co ec.fieldContext_Mutation_deleteTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterCompliance(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterCompliance(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterComplianceDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceDeletePayload, @@ -30205,7 +30205,7 @@ func (ec *executionContext) _Mutation_deleteBulkTrustCenterCompliance(ctx contex ec.fieldContext_Mutation_deleteBulkTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkTrustCenterCompliance(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkTrustCenterCompliance(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNTrustCenterComplianceBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceBulkDeletePayload, @@ -30250,7 +30250,7 @@ func (ec *executionContext) _Mutation_updateBulkTrustCenterCompliance(ctx contex ec.fieldContext_Mutation_updateBulkTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkTrustCenterCompliance(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterComplianceInput)) + return ec.Resolvers.Mutation().UpdateBulkTrustCenterCompliance(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterComplianceInput)) }, nil, ec.marshalNTrustCenterComplianceBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceBulkUpdatePayload, @@ -30297,7 +30297,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVTrustCenterCompliance(ctx con ec.fieldContext_Mutation_updateBulkCSVTrustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVTrustCenterCompliance(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVTrustCenterCompliance(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterComplianceBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterComplianceBulkUpdatePayload, @@ -30344,7 +30344,7 @@ func (ec *executionContext) _Mutation_createTrustCenterDoc(ctx context.Context, ec.fieldContext_Mutation_createTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterDoc(ctx, fc.Args["input"].(generated.CreateTrustCenterDocInput), fc.Args["trustCenterDocFile"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateTrustCenterDoc(ctx, fc.Args["input"].(generated.CreateTrustCenterDocInput), fc.Args["trustCenterDocFile"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterDocCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocCreatePayload, @@ -30389,7 +30389,7 @@ func (ec *executionContext) _Mutation_createBulkTrustCenterDoc(ctx context.Conte ec.fieldContext_Mutation_createBulkTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTrustCenterDoc(ctx, fc.Args["input"].([]*generated.CreateTrustCenterDocInput)) + return ec.Resolvers.Mutation().CreateBulkTrustCenterDoc(ctx, fc.Args["input"].([]*generated.CreateTrustCenterDocInput)) }, nil, ec.marshalNTrustCenterDocBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocBulkCreatePayload, @@ -30434,7 +30434,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTrustCenterDoc(ctx context.Co ec.fieldContext_Mutation_createBulkCSVTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTrustCenterDoc(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTrustCenterDoc(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterDocBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocBulkCreatePayload, @@ -30479,7 +30479,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterDoc(ctx context.Context, ec.fieldContext_Mutation_updateTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterDoc(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterDocInput), fc.Args["trustCenterDocFile"].(*graphql.Upload), fc.Args["watermarkedTrustCenterDocFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterDoc(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterDocInput), fc.Args["trustCenterDocFile"].(*graphql.Upload), fc.Args["watermarkedTrustCenterDocFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterDocUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocUpdatePayload, @@ -30524,7 +30524,7 @@ func (ec *executionContext) _Mutation_updateBulkTrustCenterDoc(ctx context.Conte ec.fieldContext_Mutation_updateBulkTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkTrustCenterDoc(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterDocInput)) + return ec.Resolvers.Mutation().UpdateBulkTrustCenterDoc(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterDocInput)) }, nil, ec.marshalNTrustCenterDocBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocBulkUpdatePayload, @@ -30571,7 +30571,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterDoc(ctx context.Context, ec.fieldContext_Mutation_deleteTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterDoc(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterDoc(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterDocDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocDeletePayload, @@ -30616,7 +30616,7 @@ func (ec *executionContext) _Mutation_deleteBulkTrustCenterDoc(ctx context.Conte ec.fieldContext_Mutation_deleteBulkTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkTrustCenterDoc(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkTrustCenterDoc(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNTrustCenterDocBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocBulkDeletePayload, @@ -30661,7 +30661,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVTrustCenterDoc(ctx context.Co ec.fieldContext_Mutation_updateBulkCSVTrustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVTrustCenterDoc(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVTrustCenterDoc(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterDocBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDocBulkUpdatePayload, @@ -30708,7 +30708,7 @@ func (ec *executionContext) _Mutation_createTrustCenterDomain(ctx context.Contex ec.fieldContext_Mutation_createTrustCenterDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterDomain(ctx, fc.Args["input"].(model.CreateTrustCenterDomainInput)) + return ec.Resolvers.Mutation().CreateTrustCenterDomain(ctx, fc.Args["input"].(model.CreateTrustCenterDomainInput)) }, nil, ec.marshalNTrustCenterDomainCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterDomainCreatePayload, @@ -30753,7 +30753,7 @@ func (ec *executionContext) _Mutation_createTrustCenterEntity(ctx context.Contex ec.fieldContext_Mutation_createTrustCenterEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterEntity(ctx, fc.Args["input"].(generated.CreateTrustCenterEntityInput), fc.Args["logoFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateTrustCenterEntity(ctx, fc.Args["input"].(generated.CreateTrustCenterEntityInput), fc.Args["logoFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterEntityCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterEntityCreatePayload, @@ -30798,7 +30798,7 @@ func (ec *executionContext) _Mutation_createBulkTrustCenterEntity(ctx context.Co ec.fieldContext_Mutation_createBulkTrustCenterEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTrustCenterEntity(ctx, fc.Args["input"].([]*generated.CreateTrustCenterEntityInput)) + return ec.Resolvers.Mutation().CreateBulkTrustCenterEntity(ctx, fc.Args["input"].([]*generated.CreateTrustCenterEntityInput)) }, nil, ec.marshalNTrustCenterEntityBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterEntityBulkCreatePayload, @@ -30843,7 +30843,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTrustCenterEntity(ctx context ec.fieldContext_Mutation_createBulkCSVTrustCenterEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTrustCenterEntity(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTrustCenterEntity(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterEntityBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterEntityBulkCreatePayload, @@ -30888,7 +30888,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterEntity(ctx context.Contex ec.fieldContext_Mutation_updateTrustCenterEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterEntity(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterEntityInput), fc.Args["logoFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterEntity(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterEntityInput), fc.Args["logoFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterEntityUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterEntityUpdatePayload, @@ -30933,7 +30933,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterEntity(ctx context.Contex ec.fieldContext_Mutation_deleteTrustCenterEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterEntity(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterEntity(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterEntityDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterEntityDeletePayload, @@ -30978,7 +30978,7 @@ func (ec *executionContext) _Mutation_createTrustCenterFAQ(ctx context.Context, ec.fieldContext_Mutation_createTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterFaq(ctx, fc.Args["input"].(generated.CreateTrustCenterFAQInput)) + return ec.Resolvers.Mutation().CreateTrustCenterFaq(ctx, fc.Args["input"].(generated.CreateTrustCenterFAQInput)) }, nil, ec.marshalNTrustCenterFAQCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQCreatePayload, @@ -31023,7 +31023,7 @@ func (ec *executionContext) _Mutation_createBulkTrustCenterFAQ(ctx context.Conte ec.fieldContext_Mutation_createBulkTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTrustCenterFaq(ctx, fc.Args["input"].([]*generated.CreateTrustCenterFAQInput)) + return ec.Resolvers.Mutation().CreateBulkTrustCenterFaq(ctx, fc.Args["input"].([]*generated.CreateTrustCenterFAQInput)) }, nil, ec.marshalNTrustCenterFAQBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQBulkCreatePayload, @@ -31068,7 +31068,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTrustCenterFAQ(ctx context.Co ec.fieldContext_Mutation_createBulkCSVTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTrustCenterFaq(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTrustCenterFaq(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterFAQBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQBulkCreatePayload, @@ -31113,7 +31113,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterFAQ(ctx context.Context, ec.fieldContext_Mutation_updateTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterFaq(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterFAQInput)) + return ec.Resolvers.Mutation().UpdateTrustCenterFaq(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterFAQInput)) }, nil, ec.marshalNTrustCenterFAQUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQUpdatePayload, @@ -31158,7 +31158,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterFAQ(ctx context.Context, ec.fieldContext_Mutation_deleteTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterFaq(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterFaq(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterFAQDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQDeletePayload, @@ -31203,7 +31203,7 @@ func (ec *executionContext) _Mutation_deleteBulkTrustCenterFAQ(ctx context.Conte ec.fieldContext_Mutation_deleteBulkTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkTrustCenterFaq(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkTrustCenterFaq(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNTrustCenterFAQBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQBulkDeletePayload, @@ -31248,7 +31248,7 @@ func (ec *executionContext) _Mutation_updateBulkTrustCenterFAQ(ctx context.Conte ec.fieldContext_Mutation_updateBulkTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkTrustCenterFaq(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterFAQInput)) + return ec.Resolvers.Mutation().UpdateBulkTrustCenterFaq(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterFAQInput)) }, nil, ec.marshalNTrustCenterFAQBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQBulkUpdatePayload, @@ -31295,7 +31295,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVTrustCenterFAQ(ctx context.Co ec.fieldContext_Mutation_updateBulkCSVTrustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVTrustCenterFaq(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVTrustCenterFaq(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterFAQBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterFAQBulkUpdatePayload, @@ -31342,7 +31342,7 @@ func (ec *executionContext) _Mutation_createTrustCenterNDA(ctx context.Context, ec.fieldContext_Mutation_createTrustCenterNDA, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterNda(ctx, fc.Args["input"].(model.CreateTrustCenterNDAInput), fc.Args["templateFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().CreateTrustCenterNda(ctx, fc.Args["input"].(model.CreateTrustCenterNDAInput), fc.Args["templateFiles"].([]*graphql.Upload)) }, nil, ec.marshalNTrustCenterNDACreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDACreatePayload, @@ -31387,7 +31387,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterNDA(ctx context.Context, ec.fieldContext_Mutation_updateTrustCenterNDA, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterNda(ctx, fc.Args["id"].(string), fc.Args["templateFiles"].([]*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterNda(ctx, fc.Args["id"].(string), fc.Args["templateFiles"].([]*graphql.Upload)) }, nil, ec.marshalNTrustCenterNDAUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDAUpdatePayload, @@ -31432,7 +31432,7 @@ func (ec *executionContext) _Mutation_submitTrustCenterNDAResponse(ctx context.C ec.fieldContext_Mutation_submitTrustCenterNDAResponse, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().SubmitTrustCenterNDAResponse(ctx, fc.Args["input"].(model.SubmitTrustCenterNDAResponseInput)) + return ec.Resolvers.Mutation().SubmitTrustCenterNDAResponse(ctx, fc.Args["input"].(model.SubmitTrustCenterNDAResponseInput)) }, nil, ec.marshalNSubmitTrustCenterNDAResponsePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSubmitTrustCenterNDAResponsePayload, @@ -31477,7 +31477,7 @@ func (ec *executionContext) _Mutation_createTrustCenterNDARequest(ctx context.Co ec.fieldContext_Mutation_createTrustCenterNDARequest, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterNDARequest(ctx, fc.Args["input"].(generated.CreateTrustCenterNDARequestInput)) + return ec.Resolvers.Mutation().CreateTrustCenterNDARequest(ctx, fc.Args["input"].(generated.CreateTrustCenterNDARequestInput)) }, nil, ec.marshalNTrustCenterNDARequestCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDARequestCreatePayload, @@ -31522,7 +31522,7 @@ func (ec *executionContext) _Mutation_createBulkTrustCenterNDARequest(ctx contex ec.fieldContext_Mutation_createBulkTrustCenterNDARequest, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTrustCenterNDARequest(ctx, fc.Args["input"].([]*generated.CreateTrustCenterNDARequestInput)) + return ec.Resolvers.Mutation().CreateBulkTrustCenterNDARequest(ctx, fc.Args["input"].([]*generated.CreateTrustCenterNDARequestInput)) }, nil, ec.marshalNTrustCenterNDARequestBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDARequestBulkCreatePayload, @@ -31567,7 +31567,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTrustCenterNDARequest(ctx con ec.fieldContext_Mutation_createBulkCSVTrustCenterNDARequest, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTrustCenterNDARequest(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTrustCenterNDARequest(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterNDARequestBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDARequestBulkCreatePayload, @@ -31612,7 +31612,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterNDARequest(ctx context.Co ec.fieldContext_Mutation_updateTrustCenterNDARequest, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterNDARequest(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterNDARequestInput)) + return ec.Resolvers.Mutation().UpdateTrustCenterNDARequest(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterNDARequestInput)) }, nil, ec.marshalNTrustCenterNDARequestUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDARequestUpdatePayload, @@ -31657,7 +31657,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterNDARequest(ctx context.Co ec.fieldContext_Mutation_deleteTrustCenterNDARequest, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterNDARequest(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterNDARequest(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterNDARequestDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDARequestDeletePayload, @@ -31702,7 +31702,7 @@ func (ec *executionContext) _Mutation_approveNDARequests(ctx context.Context, fi ec.fieldContext_Mutation_approveNDARequests, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().ApproveNDARequests(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().ApproveNDARequests(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNBulkUpdateStatusPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐBulkUpdateStatusPayload, @@ -31747,7 +31747,7 @@ func (ec *executionContext) _Mutation_denyNDARequests(ctx context.Context, field ec.fieldContext_Mutation_denyNDARequests, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DenyNDARequests(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DenyNDARequests(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNBulkUpdateStatusPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐBulkUpdateStatusPayload, @@ -31792,7 +31792,7 @@ func (ec *executionContext) _Mutation_deleteBulkTrustCenterNDARequest(ctx contex ec.fieldContext_Mutation_deleteBulkTrustCenterNDARequest, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkTrustCenterNDARequest(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkTrustCenterNDARequest(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNTrustCenterNDARequestBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterNDARequestBulkDeletePayload, @@ -31837,7 +31837,7 @@ func (ec *executionContext) _Mutation_requestNewTrustCenterToken(ctx context.Con ec.fieldContext_Mutation_requestNewTrustCenterToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().RequestNewTrustCenterToken(ctx, fc.Args["email"].(string)) + return ec.Resolvers.Mutation().RequestNewTrustCenterToken(ctx, fc.Args["email"].(string)) }, nil, ec.marshalNTrustCenterAccessTokenPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterAccessTokenPayload, @@ -31882,7 +31882,7 @@ func (ec *executionContext) _Mutation_createTrustCenterPreviewSetting(ctx contex ec.fieldContext_Mutation_createTrustCenterPreviewSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterPreviewSetting(ctx, fc.Args["input"].(model.CreateTrustCenterPreviewSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateTrustCenterPreviewSetting(ctx, fc.Args["input"].(model.CreateTrustCenterPreviewSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterPreviewSettingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterPreviewSettingCreatePayload, @@ -31927,7 +31927,7 @@ func (ec *executionContext) _Mutation_createTrustCenterSetting(ctx context.Conte ec.fieldContext_Mutation_createTrustCenterSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterSetting(ctx, fc.Args["input"].(generated.CreateTrustCenterSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateTrustCenterSetting(ctx, fc.Args["input"].(generated.CreateTrustCenterSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterSettingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSettingCreatePayload, @@ -31972,7 +31972,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterSetting(ctx context.Conte ec.fieldContext_Mutation_updateTrustCenterSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterSettingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSettingUpdatePayload, @@ -32017,7 +32017,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterPreviewSetting(ctx contex ec.fieldContext_Mutation_updateTrustCenterPreviewSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterPreviewSetting(ctx, fc.Args["input"].(generated.UpdateTrustCenterSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterPreviewSetting(ctx, fc.Args["input"].(generated.UpdateTrustCenterSettingInput), fc.Args["logoFile"].(*graphql.Upload), fc.Args["faviconFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterSettingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSettingUpdatePayload, @@ -32061,7 +32061,7 @@ func (ec *executionContext) _Mutation_publishTrustCenterSetting(ctx context.Cont field, ec.fieldContext_Mutation_publishTrustCenterSetting, func(ctx context.Context) (any, error) { - return ec.resolvers.Mutation().PublishTrustCenterSetting(ctx) + return ec.Resolvers.Mutation().PublishTrustCenterSetting(ctx) }, nil, ec.marshalNTrustCenterSettingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSettingUpdatePayload, @@ -32095,7 +32095,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterSetting(ctx context.Conte ec.fieldContext_Mutation_deleteTrustCenterSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterSetting(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterSetting(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterSettingDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSettingDeletePayload, @@ -32140,7 +32140,7 @@ func (ec *executionContext) _Mutation_createTrustCenterSubprocessor(ctx context. ec.fieldContext_Mutation_createTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterSubprocessor(ctx, fc.Args["input"].(generated.CreateTrustCenterSubprocessorInput)) + return ec.Resolvers.Mutation().CreateTrustCenterSubprocessor(ctx, fc.Args["input"].(generated.CreateTrustCenterSubprocessorInput)) }, nil, ec.marshalNTrustCenterSubprocessorCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorCreatePayload, @@ -32185,7 +32185,7 @@ func (ec *executionContext) _Mutation_createBulkTrustCenterSubprocessor(ctx cont ec.fieldContext_Mutation_createBulkTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkTrustCenterSubprocessor(ctx, fc.Args["input"].([]*generated.CreateTrustCenterSubprocessorInput)) + return ec.Resolvers.Mutation().CreateBulkTrustCenterSubprocessor(ctx, fc.Args["input"].([]*generated.CreateTrustCenterSubprocessorInput)) }, nil, ec.marshalNTrustCenterSubprocessorBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorBulkCreatePayload, @@ -32230,7 +32230,7 @@ func (ec *executionContext) _Mutation_createBulkCSVTrustCenterSubprocessor(ctx c ec.fieldContext_Mutation_createBulkCSVTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVTrustCenterSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVTrustCenterSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterSubprocessorBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorBulkCreatePayload, @@ -32275,7 +32275,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterSubprocessor(ctx context. ec.fieldContext_Mutation_updateTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterSubprocessor(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterSubprocessorInput)) + return ec.Resolvers.Mutation().UpdateTrustCenterSubprocessor(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterSubprocessorInput)) }, nil, ec.marshalNTrustCenterSubprocessorUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorUpdatePayload, @@ -32320,7 +32320,7 @@ func (ec *executionContext) _Mutation_updateBulkTrustCenterSubprocessor(ctx cont ec.fieldContext_Mutation_updateBulkTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkTrustCenterSubprocessor(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterSubprocessorInput)) + return ec.Resolvers.Mutation().UpdateBulkTrustCenterSubprocessor(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateTrustCenterSubprocessorInput)) }, nil, ec.marshalNTrustCenterSubprocessorBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorBulkUpdatePayload, @@ -32367,7 +32367,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterSubprocessor(ctx context. ec.fieldContext_Mutation_deleteTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterSubprocessor(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterSubprocessor(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterSubprocessorDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorDeletePayload, @@ -32412,7 +32412,7 @@ func (ec *executionContext) _Mutation_deleteBulkTrustCenterSubprocessor(ctx cont ec.fieldContext_Mutation_deleteBulkTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkTrustCenterSubprocessor(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkTrustCenterSubprocessor(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNTrustCenterSubprocessorBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorBulkDeletePayload, @@ -32457,7 +32457,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVTrustCenterSubprocessor(ctx c ec.fieldContext_Mutation_updateBulkCSVTrustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVTrustCenterSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVTrustCenterSubprocessor(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNTrustCenterSubprocessorBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterSubprocessorBulkUpdatePayload, @@ -32504,7 +32504,7 @@ func (ec *executionContext) _Mutation_createTrustCenterWatermarkConfig(ctx conte ec.fieldContext_Mutation_createTrustCenterWatermarkConfig, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateTrustCenterWatermarkConfig(ctx, fc.Args["input"].(generated.CreateTrustCenterWatermarkConfigInput), fc.Args["watermarkFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateTrustCenterWatermarkConfig(ctx, fc.Args["input"].(generated.CreateTrustCenterWatermarkConfigInput), fc.Args["watermarkFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterWatermarkConfigCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterWatermarkConfigCreatePayload, @@ -32549,7 +32549,7 @@ func (ec *executionContext) _Mutation_updateTrustCenterWatermarkConfig(ctx conte ec.fieldContext_Mutation_updateTrustCenterWatermarkConfig, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateTrustCenterWatermarkConfig(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterWatermarkConfigInput), fc.Args["watermarkFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateTrustCenterWatermarkConfig(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateTrustCenterWatermarkConfigInput), fc.Args["watermarkFile"].(*graphql.Upload)) }, nil, ec.marshalNTrustCenterWatermarkConfigUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterWatermarkConfigUpdatePayload, @@ -32594,7 +32594,7 @@ func (ec *executionContext) _Mutation_deleteTrustCenterWatermarkConfig(ctx conte ec.fieldContext_Mutation_deleteTrustCenterWatermarkConfig, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteTrustCenterWatermarkConfig(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteTrustCenterWatermarkConfig(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterWatermarkConfigDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐTrustCenterWatermarkConfigDeletePayload, @@ -32639,7 +32639,7 @@ func (ec *executionContext) _Mutation_createUser(ctx context.Context, field grap ec.fieldContext_Mutation_createUser, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateUser(ctx, fc.Args["input"].(generated.CreateUserInput), fc.Args["avatarFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().CreateUser(ctx, fc.Args["input"].(generated.CreateUserInput), fc.Args["avatarFile"].(*graphql.Upload)) }, nil, ec.marshalNUserCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserCreatePayload, @@ -32684,7 +32684,7 @@ func (ec *executionContext) _Mutation_updateUser(ctx context.Context, field grap ec.fieldContext_Mutation_updateUser, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateUser(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateUserInput), fc.Args["avatarFile"].(*graphql.Upload)) + return ec.Resolvers.Mutation().UpdateUser(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateUserInput), fc.Args["avatarFile"].(*graphql.Upload)) }, nil, ec.marshalNUserUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserUpdatePayload, @@ -32729,7 +32729,7 @@ func (ec *executionContext) _Mutation_deleteUser(ctx context.Context, field grap ec.fieldContext_Mutation_deleteUser, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteUser(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteUser(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNUserDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserDeletePayload, @@ -32774,7 +32774,7 @@ func (ec *executionContext) _Mutation_createUserSetting(ctx context.Context, fie ec.fieldContext_Mutation_createUserSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateUserSetting(ctx, fc.Args["input"].(generated.CreateUserSettingInput)) + return ec.Resolvers.Mutation().CreateUserSetting(ctx, fc.Args["input"].(generated.CreateUserSettingInput)) }, nil, ec.marshalNUserSettingCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserSettingCreatePayload, @@ -32819,7 +32819,7 @@ func (ec *executionContext) _Mutation_createBulkUserSetting(ctx context.Context, ec.fieldContext_Mutation_createBulkUserSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkUserSetting(ctx, fc.Args["input"].([]*generated.CreateUserSettingInput)) + return ec.Resolvers.Mutation().CreateBulkUserSetting(ctx, fc.Args["input"].([]*generated.CreateUserSettingInput)) }, nil, ec.marshalNUserSettingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserSettingBulkCreatePayload, @@ -32864,7 +32864,7 @@ func (ec *executionContext) _Mutation_createBulkCSVUserSetting(ctx context.Conte ec.fieldContext_Mutation_createBulkCSVUserSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVUserSetting(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVUserSetting(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNUserSettingBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserSettingBulkCreatePayload, @@ -32909,7 +32909,7 @@ func (ec *executionContext) _Mutation_updateUserSetting(ctx context.Context, fie ec.fieldContext_Mutation_updateUserSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateUserSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateUserSettingInput)) + return ec.Resolvers.Mutation().UpdateUserSetting(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateUserSettingInput)) }, nil, ec.marshalNUserSettingUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserSettingUpdatePayload, @@ -32954,7 +32954,7 @@ func (ec *executionContext) _Mutation_deleteBulkUserSetting(ctx context.Context, ec.fieldContext_Mutation_deleteBulkUserSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteBulkUserSetting(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Mutation().DeleteBulkUserSetting(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNUserSettingBulkDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserSettingBulkDeletePayload, @@ -32999,7 +32999,7 @@ func (ec *executionContext) _Mutation_updateBulkUserSetting(ctx context.Context, ec.fieldContext_Mutation_updateBulkUserSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkUserSetting(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateUserSettingInput)) + return ec.Resolvers.Mutation().UpdateBulkUserSetting(ctx, fc.Args["ids"].([]string), fc.Args["input"].(generated.UpdateUserSettingInput)) }, nil, ec.marshalNUserSettingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserSettingBulkUpdatePayload, @@ -33046,7 +33046,7 @@ func (ec *executionContext) _Mutation_updateBulkCSVUserSetting(ctx context.Conte ec.fieldContext_Mutation_updateBulkCSVUserSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateBulkCSVUserSetting(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().UpdateBulkCSVUserSetting(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNUserSettingBulkUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐUserSettingBulkUpdatePayload, @@ -33093,7 +33093,7 @@ func (ec *executionContext) _Mutation_createVulnerability(ctx context.Context, f ec.fieldContext_Mutation_createVulnerability, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateVulnerability(ctx, fc.Args["input"].(generated.CreateVulnerabilityInput)) + return ec.Resolvers.Mutation().CreateVulnerability(ctx, fc.Args["input"].(generated.CreateVulnerabilityInput)) }, nil, ec.marshalNVulnerabilityCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilityCreatePayload, @@ -33138,7 +33138,7 @@ func (ec *executionContext) _Mutation_createBulkVulnerability(ctx context.Contex ec.fieldContext_Mutation_createBulkVulnerability, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkVulnerability(ctx, fc.Args["input"].([]*generated.CreateVulnerabilityInput)) + return ec.Resolvers.Mutation().CreateBulkVulnerability(ctx, fc.Args["input"].([]*generated.CreateVulnerabilityInput)) }, nil, ec.marshalNVulnerabilityBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilityBulkCreatePayload, @@ -33183,7 +33183,7 @@ func (ec *executionContext) _Mutation_createBulkCSVVulnerability(ctx context.Con ec.fieldContext_Mutation_createBulkCSVVulnerability, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVVulnerability(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVVulnerability(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNVulnerabilityBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilityBulkCreatePayload, @@ -33228,7 +33228,7 @@ func (ec *executionContext) _Mutation_updateVulnerability(ctx context.Context, f ec.fieldContext_Mutation_updateVulnerability, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateVulnerability(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateVulnerabilityInput)) + return ec.Resolvers.Mutation().UpdateVulnerability(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateVulnerabilityInput)) }, nil, ec.marshalNVulnerabilityUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilityUpdatePayload, @@ -33273,7 +33273,7 @@ func (ec *executionContext) _Mutation_deleteVulnerability(ctx context.Context, f ec.fieldContext_Mutation_deleteVulnerability, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteVulnerability(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteVulnerability(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNVulnerabilityDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilityDeletePayload, @@ -33318,7 +33318,7 @@ func (ec *executionContext) _Mutation_resolveVulnerability(ctx context.Context, ec.fieldContext_Mutation_resolveVulnerability, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().ResolveVulnerability(ctx, fc.Args["id"].(string), fc.Args["input"].(model.ResolveVulnerabilityInput)) + return ec.Resolvers.Mutation().ResolveVulnerability(ctx, fc.Args["id"].(string), fc.Args["input"].(model.ResolveVulnerabilityInput)) }, nil, ec.marshalNVulnerabilityResolvePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilityResolvePayload, @@ -33365,7 +33365,7 @@ func (ec *executionContext) _Mutation_deleteWebauthn(ctx context.Context, field ec.fieldContext_Mutation_deleteWebauthn, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteWebauthn(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteWebauthn(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWebauthnDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWebauthnDeletePayload, @@ -33410,7 +33410,7 @@ func (ec *executionContext) _Mutation_forceCompleteWorkflowInstance(ctx context. ec.fieldContext_Mutation_forceCompleteWorkflowInstance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().ForceCompleteWorkflowInstance(ctx, fc.Args["id"].(string), fc.Args["applyProposal"].(*bool)) + return ec.Resolvers.Mutation().ForceCompleteWorkflowInstance(ctx, fc.Args["id"].(string), fc.Args["applyProposal"].(*bool)) }, nil, ec.marshalNWorkflowInstanceAdminPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowInstanceAdminPayload, @@ -33455,7 +33455,7 @@ func (ec *executionContext) _Mutation_cancelWorkflowInstance(ctx context.Context ec.fieldContext_Mutation_cancelWorkflowInstance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CancelWorkflowInstance(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string)) + return ec.Resolvers.Mutation().CancelWorkflowInstance(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string)) }, nil, ec.marshalNWorkflowInstanceAdminPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowInstanceAdminPayload, @@ -33500,7 +33500,7 @@ func (ec *executionContext) _Mutation_bulkForceCompleteWorkflowInstances(ctx con ec.fieldContext_Mutation_bulkForceCompleteWorkflowInstances, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().BulkForceCompleteWorkflowInstances(ctx, fc.Args["ids"].([]string), fc.Args["applyProposal"].(*bool)) + return ec.Resolvers.Mutation().BulkForceCompleteWorkflowInstances(ctx, fc.Args["ids"].([]string), fc.Args["applyProposal"].(*bool)) }, nil, ec.marshalNWorkflowInstanceBulkAdminPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowInstanceBulkAdminPayload, @@ -33545,7 +33545,7 @@ func (ec *executionContext) _Mutation_bulkCancelWorkflowInstances(ctx context.Co ec.fieldContext_Mutation_bulkCancelWorkflowInstances, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().BulkCancelWorkflowInstances(ctx, fc.Args["ids"].([]string), fc.Args["reason"].(*string)) + return ec.Resolvers.Mutation().BulkCancelWorkflowInstances(ctx, fc.Args["ids"].([]string), fc.Args["reason"].(*string)) }, nil, ec.marshalNWorkflowInstanceBulkAdminPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowInstanceBulkAdminPayload, @@ -33590,7 +33590,7 @@ func (ec *executionContext) _Mutation_adminReassignWorkflowAssignment(ctx contex ec.fieldContext_Mutation_adminReassignWorkflowAssignment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().AdminReassignWorkflowAssignment(ctx, fc.Args["input"].(model.ReassignWorkflowAssignmentInput)) + return ec.Resolvers.Mutation().AdminReassignWorkflowAssignment(ctx, fc.Args["input"].(model.ReassignWorkflowAssignmentInput)) }, nil, ec.marshalNWorkflowAssignmentReassignPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowAssignmentReassignPayload, @@ -33635,7 +33635,7 @@ func (ec *executionContext) _Mutation_approveWorkflowAssignment(ctx context.Cont ec.fieldContext_Mutation_approveWorkflowAssignment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().ApproveWorkflowAssignment(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().ApproveWorkflowAssignment(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowAssignmentApprovePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowAssignmentApprovePayload, @@ -33680,7 +33680,7 @@ func (ec *executionContext) _Mutation_rejectWorkflowAssignment(ctx context.Conte ec.fieldContext_Mutation_rejectWorkflowAssignment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().RejectWorkflowAssignment(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string)) + return ec.Resolvers.Mutation().RejectWorkflowAssignment(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string)) }, nil, ec.marshalNWorkflowAssignmentRejectPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowAssignmentRejectPayload, @@ -33725,7 +33725,7 @@ func (ec *executionContext) _Mutation_requestChangesWorkflowAssignment(ctx conte ec.fieldContext_Mutation_requestChangesWorkflowAssignment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().RequestChangesWorkflowAssignment(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string), fc.Args["inputs"].(map[string]any)) + return ec.Resolvers.Mutation().RequestChangesWorkflowAssignment(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string), fc.Args["inputs"].(map[string]any)) }, nil, ec.marshalNWorkflowAssignmentRejectPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowAssignmentRejectPayload, @@ -33770,7 +33770,7 @@ func (ec *executionContext) _Mutation_reassignWorkflowAssignment(ctx context.Con ec.fieldContext_Mutation_reassignWorkflowAssignment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().ReassignWorkflowAssignment(ctx, fc.Args["id"].(string), fc.Args["targetUserID"].(string)) + return ec.Resolvers.Mutation().ReassignWorkflowAssignment(ctx, fc.Args["id"].(string), fc.Args["targetUserID"].(string)) }, nil, ec.marshalNWorkflowAssignment2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignment, @@ -33869,7 +33869,7 @@ func (ec *executionContext) _Mutation_createWorkflowDefinition(ctx context.Conte ec.fieldContext_Mutation_createWorkflowDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateWorkflowDefinition(ctx, fc.Args["input"].(generated.CreateWorkflowDefinitionInput)) + return ec.Resolvers.Mutation().CreateWorkflowDefinition(ctx, fc.Args["input"].(generated.CreateWorkflowDefinitionInput)) }, nil, ec.marshalNWorkflowDefinitionCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowDefinitionCreatePayload, @@ -33914,7 +33914,7 @@ func (ec *executionContext) _Mutation_createBulkWorkflowDefinition(ctx context.C ec.fieldContext_Mutation_createBulkWorkflowDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkWorkflowDefinition(ctx, fc.Args["input"].([]*generated.CreateWorkflowDefinitionInput)) + return ec.Resolvers.Mutation().CreateBulkWorkflowDefinition(ctx, fc.Args["input"].([]*generated.CreateWorkflowDefinitionInput)) }, nil, ec.marshalNWorkflowDefinitionBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowDefinitionBulkCreatePayload, @@ -33959,7 +33959,7 @@ func (ec *executionContext) _Mutation_createBulkCSVWorkflowDefinition(ctx contex ec.fieldContext_Mutation_createBulkCSVWorkflowDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().CreateBulkCSVWorkflowDefinition(ctx, fc.Args["input"].(graphql.Upload)) + return ec.Resolvers.Mutation().CreateBulkCSVWorkflowDefinition(ctx, fc.Args["input"].(graphql.Upload)) }, nil, ec.marshalNWorkflowDefinitionBulkCreatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowDefinitionBulkCreatePayload, @@ -34004,7 +34004,7 @@ func (ec *executionContext) _Mutation_updateWorkflowDefinition(ctx context.Conte ec.fieldContext_Mutation_updateWorkflowDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateWorkflowDefinition(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateWorkflowDefinitionInput)) + return ec.Resolvers.Mutation().UpdateWorkflowDefinition(ctx, fc.Args["id"].(string), fc.Args["input"].(generated.UpdateWorkflowDefinitionInput)) }, nil, ec.marshalNWorkflowDefinitionUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowDefinitionUpdatePayload, @@ -34049,7 +34049,7 @@ func (ec *executionContext) _Mutation_deleteWorkflowDefinition(ctx context.Conte ec.fieldContext_Mutation_deleteWorkflowDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().DeleteWorkflowDefinition(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().DeleteWorkflowDefinition(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowDefinitionDeletePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowDefinitionDeletePayload, @@ -34094,7 +34094,7 @@ func (ec *executionContext) _Mutation_updateWorkflowProposalChanges(ctx context. ec.fieldContext_Mutation_updateWorkflowProposalChanges, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().UpdateWorkflowProposalChanges(ctx, fc.Args["input"].(model.UpdateWorkflowProposalChangesInput)) + return ec.Resolvers.Mutation().UpdateWorkflowProposalChanges(ctx, fc.Args["input"].(model.UpdateWorkflowProposalChangesInput)) }, nil, ec.marshalNWorkflowProposalUpdatePayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowProposalUpdatePayload, @@ -34139,7 +34139,7 @@ func (ec *executionContext) _Mutation_submitWorkflowProposal(ctx context.Context ec.fieldContext_Mutation_submitWorkflowProposal, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().SubmitWorkflowProposal(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Mutation().SubmitWorkflowProposal(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowProposalSubmitPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowProposalSubmitPayload, @@ -34184,7 +34184,7 @@ func (ec *executionContext) _Mutation_withdrawWorkflowProposal(ctx context.Conte ec.fieldContext_Mutation_withdrawWorkflowProposal, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Mutation().WithdrawWorkflowProposal(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string)) + return ec.Resolvers.Mutation().WithdrawWorkflowProposal(ctx, fc.Args["id"].(string), fc.Args["reason"].(*string)) }, nil, ec.marshalNWorkflowProposalWithdrawPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowProposalWithdrawPayload, @@ -34255,10 +34255,10 @@ func (ec *executionContext) _ActionPlanBulkCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -34294,10 +34294,10 @@ func (ec *executionContext) _ActionPlanBulkDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -34332,10 +34332,10 @@ func (ec *executionContext) _ActionPlanBulkUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -34371,10 +34371,10 @@ func (ec *executionContext) _ActionPlanCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -34410,10 +34410,10 @@ func (ec *executionContext) _ActionPlanDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -34449,10 +34449,10 @@ func (ec *executionContext) _ActionPlanUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -38446,10 +38446,10 @@ func (ec *executionContext) _Mutation(ctx context.Context, sel ast.SelectionSet) return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/apitoken.generated.go b/internal/graphapi/generated/apitoken.generated.go index 8c8f24cd35..b1820439b1 100644 --- a/internal/graphapi/generated/apitoken.generated.go +++ b/internal/graphapi/generated/apitoken.generated.go @@ -425,10 +425,10 @@ func (ec *executionContext) _APITokenBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -464,10 +464,10 @@ func (ec *executionContext) _APITokenBulkDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -502,10 +502,10 @@ func (ec *executionContext) _APITokenBulkUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -541,10 +541,10 @@ func (ec *executionContext) _APITokenCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -580,10 +580,10 @@ func (ec *executionContext) _APITokenDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -619,10 +619,10 @@ func (ec *executionContext) _APITokenUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/assessment.generated.go b/internal/graphapi/generated/assessment.generated.go index 8519a478c3..af7e8714f5 100644 --- a/internal/graphapi/generated/assessment.generated.go +++ b/internal/graphapi/generated/assessment.generated.go @@ -273,10 +273,10 @@ func (ec *executionContext) _AssessmentBulkDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -312,10 +312,10 @@ func (ec *executionContext) _AssessmentCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -351,10 +351,10 @@ func (ec *executionContext) _AssessmentDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -390,10 +390,10 @@ func (ec *executionContext) _AssessmentUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/assessmentresponse.generated.go b/internal/graphapi/generated/assessmentresponse.generated.go index 7d92f468da..9c2a422924 100644 --- a/internal/graphapi/generated/assessmentresponse.generated.go +++ b/internal/graphapi/generated/assessmentresponse.generated.go @@ -191,10 +191,10 @@ func (ec *executionContext) _AssessmentResponseCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -230,10 +230,10 @@ func (ec *executionContext) _AssessmentResponseDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/asset.generated.go b/internal/graphapi/generated/asset.generated.go index d092a75cb1..699da7041a 100644 --- a/internal/graphapi/generated/asset.generated.go +++ b/internal/graphapi/generated/asset.generated.go @@ -825,10 +825,10 @@ func (ec *executionContext) _AssetBulkCreatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -864,10 +864,10 @@ func (ec *executionContext) _AssetBulkDeletePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -902,10 +902,10 @@ func (ec *executionContext) _AssetBulkUpdatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -941,10 +941,10 @@ func (ec *executionContext) _AssetCreatePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -980,10 +980,10 @@ func (ec *executionContext) _AssetDeletePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1019,10 +1019,10 @@ func (ec *executionContext) _AssetUpdatePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/campaign.generated.go b/internal/graphapi/generated/campaign.generated.go index 9b9791b95f..d5dd01ee20 100644 --- a/internal/graphapi/generated/campaign.generated.go +++ b/internal/graphapi/generated/campaign.generated.go @@ -544,10 +544,10 @@ func (ec *executionContext) _CampaignBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -583,10 +583,10 @@ func (ec *executionContext) _CampaignCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -622,10 +622,10 @@ func (ec *executionContext) _CampaignDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -661,10 +661,10 @@ func (ec *executionContext) _CampaignUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/campaignextended.generated.go b/internal/graphapi/generated/campaignextended.generated.go index 288fb9d294..df5017feb0 100644 --- a/internal/graphapi/generated/campaignextended.generated.go +++ b/internal/graphapi/generated/campaignextended.generated.go @@ -716,7 +716,6 @@ func (ec *executionContext) unmarshalInputCreateCampaignWithTargetsInput(ctx con it.Targets = data } } - return it, nil } @@ -757,7 +756,6 @@ func (ec *executionContext) unmarshalInputLaunchCampaignInput(ctx context.Contex it.ScheduledAt = data } } - return it, nil } @@ -791,7 +789,6 @@ func (ec *executionContext) unmarshalInputResendCampaignIncompleteInput(ctx cont it.ScheduledAt = data } } - return it, nil } @@ -825,7 +822,6 @@ func (ec *executionContext) unmarshalInputSendCampaignTestEmailInput(ctx context it.Emails = data } } - return it, nil } @@ -864,10 +860,10 @@ func (ec *executionContext) _CampaignCreateWithTargetsPayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -913,10 +909,10 @@ func (ec *executionContext) _CampaignLaunchPayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -962,10 +958,10 @@ func (ec *executionContext) _CampaignTestEmailPayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/campaigntarget.generated.go b/internal/graphapi/generated/campaigntarget.generated.go index 0c8c55ab88..dd61a94d5f 100644 --- a/internal/graphapi/generated/campaigntarget.generated.go +++ b/internal/graphapi/generated/campaigntarget.generated.go @@ -346,10 +346,10 @@ func (ec *executionContext) _CampaignTargetBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -385,10 +385,10 @@ func (ec *executionContext) _CampaignTargetCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -424,10 +424,10 @@ func (ec *executionContext) _CampaignTargetDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463,10 +463,10 @@ func (ec *executionContext) _CampaignTargetUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/contact.generated.go b/internal/graphapi/generated/contact.generated.go index 22575808b9..25f61e6f54 100644 --- a/internal/graphapi/generated/contact.generated.go +++ b/internal/graphapi/generated/contact.generated.go @@ -425,10 +425,10 @@ func (ec *executionContext) _ContactBulkCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -464,10 +464,10 @@ func (ec *executionContext) _ContactBulkDeletePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -502,10 +502,10 @@ func (ec *executionContext) _ContactBulkUpdatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -541,10 +541,10 @@ func (ec *executionContext) _ContactCreatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -580,10 +580,10 @@ func (ec *executionContext) _ContactDeletePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -619,10 +619,10 @@ func (ec *executionContext) _ContactUpdatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/control.generated.go b/internal/graphapi/generated/control.generated.go index 1d651630cc..f71cafc8db 100644 --- a/internal/graphapi/generated/control.generated.go +++ b/internal/graphapi/generated/control.generated.go @@ -921,10 +921,10 @@ func (ec *executionContext) _ControlBulkCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -960,10 +960,10 @@ func (ec *executionContext) _ControlBulkDeletePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -998,10 +998,10 @@ func (ec *executionContext) _ControlBulkUpdatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1037,10 +1037,10 @@ func (ec *executionContext) _ControlCreatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1076,10 +1076,10 @@ func (ec *executionContext) _ControlDeletePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1115,10 +1115,10 @@ func (ec *executionContext) _ControlUpdatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/controlextended.generated.go b/internal/graphapi/generated/controlextended.generated.go index ebc1953b76..87f7b7eeed 100644 --- a/internal/graphapi/generated/controlextended.generated.go +++ b/internal/graphapi/generated/controlextended.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -811,7 +810,6 @@ func (ec *executionContext) unmarshalInputCloneControlInput(ctx context.Context, it.ProgramID = data } } - return it, nil } @@ -915,7 +913,6 @@ func (ec *executionContext) unmarshalInputCloneControlUploadInput(ctx context.Co it.ControlInput = data } } - return it, nil } @@ -953,7 +950,6 @@ func (ec *executionContext) unmarshalInputControlCategoryOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -994,7 +990,6 @@ func (ec *executionContext) unmarshalInputControlDiffInput(ctx context.Context, it.NewRevision = data } } - return it, nil } @@ -1033,10 +1028,10 @@ func (ec *executionContext) _ControlCategory(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1079,10 +1074,10 @@ func (ec *executionContext) _ControlCategoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1118,10 +1113,10 @@ func (ec *executionContext) _ControlCategoryEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1167,10 +1162,10 @@ func (ec *executionContext) _ControlChange(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1221,10 +1216,10 @@ func (ec *executionContext) _ControlDiffPayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1266,10 +1261,10 @@ func (ec *executionContext) _ControlFieldDiff(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1310,10 +1305,10 @@ func (ec *executionContext) _ControlGroup(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1349,10 +1344,10 @@ func (ec *executionContext) _ControlGroupConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1393,10 +1388,10 @@ func (ec *executionContext) _ControlGroupEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1447,39 +1442,11 @@ func (ec *executionContext) marshalNControlCategoryOrderField2githubᚗcomᚋthe } func (ec *executionContext) marshalNControlChange2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlChangeᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.ControlChange) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlChange2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlChange(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlChange2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlChange(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -1520,39 +1487,11 @@ func (ec *executionContext) marshalNControlDiffPayload2ᚖgithubᚗcomᚋtheopen } func (ec *executionContext) marshalNControlFieldDiff2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlFieldDiffᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.ControlFieldDiff) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlFieldDiff2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlFieldDiff(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlFieldDiff2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlFieldDiff(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -1598,39 +1537,11 @@ func (ec *executionContext) marshalNControlGroupConnection2ᚖgithubᚗcomᚋthe } func (ec *executionContext) marshalNControlGroupEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlGroupEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.ControlGroupEdge) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlGroupEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlGroupEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlGroupEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlGroupEdge(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -1663,39 +1574,11 @@ func (ec *executionContext) marshalOControlCategoryEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOControlCategoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOControlCategoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryEdge(ctx, sel, v[i]) + }) return ret } @@ -1704,39 +1587,11 @@ func (ec *executionContext) marshalOControlCategoryEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlCategoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlCategoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryEdge(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/generated/controlimplementation.generated.go b/internal/graphapi/generated/controlimplementation.generated.go index f7ed53df57..e53df1e973 100644 --- a/internal/graphapi/generated/controlimplementation.generated.go +++ b/internal/graphapi/generated/controlimplementation.generated.go @@ -457,10 +457,10 @@ func (ec *executionContext) _ControlImplementationBulkCreatePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -496,10 +496,10 @@ func (ec *executionContext) _ControlImplementationBulkDeletePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -534,10 +534,10 @@ func (ec *executionContext) _ControlImplementationBulkUpdatePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -573,10 +573,10 @@ func (ec *executionContext) _ControlImplementationCreatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -612,10 +612,10 @@ func (ec *executionContext) _ControlImplementationDeletePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -651,10 +651,10 @@ func (ec *executionContext) _ControlImplementationUpdatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/controlobjective.generated.go b/internal/graphapi/generated/controlobjective.generated.go index 38a28a9690..86091ffcf5 100644 --- a/internal/graphapi/generated/controlobjective.generated.go +++ b/internal/graphapi/generated/controlobjective.generated.go @@ -537,10 +537,10 @@ func (ec *executionContext) _ControlObjectiveBulkCreatePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -576,10 +576,10 @@ func (ec *executionContext) _ControlObjectiveBulkDeletePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -614,10 +614,10 @@ func (ec *executionContext) _ControlObjectiveBulkUpdatePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -653,10 +653,10 @@ func (ec *executionContext) _ControlObjectiveCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -692,10 +692,10 @@ func (ec *executionContext) _ControlObjectiveDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -731,10 +731,10 @@ func (ec *executionContext) _ControlObjectiveUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/customdomain.generated.go b/internal/graphapi/generated/customdomain.generated.go index 9e818e8c3c..4a7e0a1c32 100644 --- a/internal/graphapi/generated/customdomain.generated.go +++ b/internal/graphapi/generated/customdomain.generated.go @@ -474,10 +474,10 @@ func (ec *executionContext) _CustomDomainBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -513,10 +513,10 @@ func (ec *executionContext) _CustomDomainBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -551,10 +551,10 @@ func (ec *executionContext) _CustomDomainBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -590,10 +590,10 @@ func (ec *executionContext) _CustomDomainCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -629,10 +629,10 @@ func (ec *executionContext) _CustomDomainDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -668,10 +668,10 @@ func (ec *executionContext) _CustomDomainUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -707,10 +707,10 @@ func (ec *executionContext) _CustomDomainValidatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/customtypeenum.generated.go b/internal/graphapi/generated/customtypeenum.generated.go index d5ef9d61d0..9d4faf2297 100644 --- a/internal/graphapi/generated/customtypeenum.generated.go +++ b/internal/graphapi/generated/customtypeenum.generated.go @@ -340,10 +340,10 @@ func (ec *executionContext) _CustomTypeEnumBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -379,10 +379,10 @@ func (ec *executionContext) _CustomTypeEnumCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -418,10 +418,10 @@ func (ec *executionContext) _CustomTypeEnumDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457,10 +457,10 @@ func (ec *executionContext) _CustomTypeEnumUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/directoryaccount.generated.go b/internal/graphapi/generated/directoryaccount.generated.go index 5b55b26814..64b7071f1c 100644 --- a/internal/graphapi/generated/directoryaccount.generated.go +++ b/internal/graphapi/generated/directoryaccount.generated.go @@ -490,10 +490,10 @@ func (ec *executionContext) _DirectoryAccountBulkCreatePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -529,10 +529,10 @@ func (ec *executionContext) _DirectoryAccountCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -568,10 +568,10 @@ func (ec *executionContext) _DirectoryAccountDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -607,10 +607,10 @@ func (ec *executionContext) _DirectoryAccountUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/directorygroup.generated.go b/internal/graphapi/generated/directorygroup.generated.go index af7b5c3c2a..77bae06ced 100644 --- a/internal/graphapi/generated/directorygroup.generated.go +++ b/internal/graphapi/generated/directorygroup.generated.go @@ -406,10 +406,10 @@ func (ec *executionContext) _DirectoryGroupBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -445,10 +445,10 @@ func (ec *executionContext) _DirectoryGroupCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -484,10 +484,10 @@ func (ec *executionContext) _DirectoryGroupDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -523,10 +523,10 @@ func (ec *executionContext) _DirectoryGroupUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/directorymembership.generated.go b/internal/graphapi/generated/directorymembership.generated.go index 2ddbb6a62b..2a4e2c0368 100644 --- a/internal/graphapi/generated/directorymembership.generated.go +++ b/internal/graphapi/generated/directorymembership.generated.go @@ -382,10 +382,10 @@ func (ec *executionContext) _DirectoryMembershipBulkCreatePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -421,10 +421,10 @@ func (ec *executionContext) _DirectoryMembershipCreatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -460,10 +460,10 @@ func (ec *executionContext) _DirectoryMembershipDeletePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -499,10 +499,10 @@ func (ec *executionContext) _DirectoryMembershipUpdatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/directorysyncrun.generated.go b/internal/graphapi/generated/directorysyncrun.generated.go index 5d6dcfadeb..44bd5e4b37 100644 --- a/internal/graphapi/generated/directorysyncrun.generated.go +++ b/internal/graphapi/generated/directorysyncrun.generated.go @@ -364,10 +364,10 @@ func (ec *executionContext) _DirectorySyncRunBulkCreatePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -403,10 +403,10 @@ func (ec *executionContext) _DirectorySyncRunCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442,10 +442,10 @@ func (ec *executionContext) _DirectorySyncRunDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -481,10 +481,10 @@ func (ec *executionContext) _DirectorySyncRunUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/discussion.generated.go b/internal/graphapi/generated/discussion.generated.go index c43587d499..965d249fc9 100644 --- a/internal/graphapi/generated/discussion.generated.go +++ b/internal/graphapi/generated/discussion.generated.go @@ -274,10 +274,10 @@ func (ec *executionContext) _DiscussionBulkCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -313,10 +313,10 @@ func (ec *executionContext) _DiscussionCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -352,10 +352,10 @@ func (ec *executionContext) _DiscussionDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -391,10 +391,10 @@ func (ec *executionContext) _DiscussionUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/dnsverification.generated.go b/internal/graphapi/generated/dnsverification.generated.go index 842a5d7563..111518eeb3 100644 --- a/internal/graphapi/generated/dnsverification.generated.go +++ b/internal/graphapi/generated/dnsverification.generated.go @@ -417,10 +417,10 @@ func (ec *executionContext) _DNSVerificationBulkCreatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456,10 +456,10 @@ func (ec *executionContext) _DNSVerificationBulkDeletePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -494,10 +494,10 @@ func (ec *executionContext) _DNSVerificationBulkUpdatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -533,10 +533,10 @@ func (ec *executionContext) _DNSVerificationCreatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -572,10 +572,10 @@ func (ec *executionContext) _DNSVerificationDeletePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -611,10 +611,10 @@ func (ec *executionContext) _DNSVerificationUpdatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/documentdata.generated.go b/internal/graphapi/generated/documentdata.generated.go index 9a0672ffa3..fc7a747882 100644 --- a/internal/graphapi/generated/documentdata.generated.go +++ b/internal/graphapi/generated/documentdata.generated.go @@ -425,10 +425,10 @@ func (ec *executionContext) _DocumentDataBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -464,10 +464,10 @@ func (ec *executionContext) _DocumentDataBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -502,10 +502,10 @@ func (ec *executionContext) _DocumentDataBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -541,10 +541,10 @@ func (ec *executionContext) _DocumentDataCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -580,10 +580,10 @@ func (ec *executionContext) _DocumentDataDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -619,10 +619,10 @@ func (ec *executionContext) _DocumentDataUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/emailbranding.generated.go b/internal/graphapi/generated/emailbranding.generated.go index c7dd553b99..8bc90bbeed 100644 --- a/internal/graphapi/generated/emailbranding.generated.go +++ b/internal/graphapi/generated/emailbranding.generated.go @@ -473,10 +473,10 @@ func (ec *executionContext) _EmailBrandingBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -512,10 +512,10 @@ func (ec *executionContext) _EmailBrandingBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -550,10 +550,10 @@ func (ec *executionContext) _EmailBrandingBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -589,10 +589,10 @@ func (ec *executionContext) _EmailBrandingCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -628,10 +628,10 @@ func (ec *executionContext) _EmailBrandingDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -667,10 +667,10 @@ func (ec *executionContext) _EmailBrandingUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/emailtemplate.generated.go b/internal/graphapi/generated/emailtemplate.generated.go index aa00825dba..2f394a4c4b 100644 --- a/internal/graphapi/generated/emailtemplate.generated.go +++ b/internal/graphapi/generated/emailtemplate.generated.go @@ -545,10 +545,10 @@ func (ec *executionContext) _EmailTemplateBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -584,10 +584,10 @@ func (ec *executionContext) _EmailTemplateBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -622,10 +622,10 @@ func (ec *executionContext) _EmailTemplateBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -661,10 +661,10 @@ func (ec *executionContext) _EmailTemplateCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -700,10 +700,10 @@ func (ec *executionContext) _EmailTemplateDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -739,10 +739,10 @@ func (ec *executionContext) _EmailTemplateUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/ent.generated.go b/internal/graphapi/generated/ent.generated.go index bbcd6ef06a..943410c33f 100644 --- a/internal/graphapi/generated/ent.generated.go +++ b/internal/graphapi/generated/ent.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "time" @@ -31678,11 +31677,11 @@ func (ec *executionContext) _ActionPlan_internalNotes(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -31725,11 +31724,11 @@ func (ec *executionContext) _ActionPlan_systemInternalID(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -33660,7 +33659,7 @@ func (ec *executionContext) _ActionPlan_hasPendingWorkflow(ctx context.Context, field, ec.fieldContext_ActionPlan_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.ActionPlan().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.ActionPlan().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -33689,7 +33688,7 @@ func (ec *executionContext) _ActionPlan_hasWorkflowHistory(ctx context.Context, field, ec.fieldContext_ActionPlan_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.ActionPlan().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.ActionPlan().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -33718,7 +33717,7 @@ func (ec *executionContext) _ActionPlan_activeWorkflowInstances(ctx context.Cont field, ec.fieldContext_ActionPlan_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.ActionPlan().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.ActionPlan().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -33834,7 +33833,7 @@ func (ec *executionContext) _ActionPlan_workflowTimeline(ctx context.Context, fi ec.fieldContext_ActionPlan_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.ActionPlan().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.ActionPlan().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -38178,11 +38177,11 @@ func (ec *executionContext) _Asset_internalNotes(ctx context.Context, field grap var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -38225,11 +38224,11 @@ func (ec *executionContext) _Asset_systemInternalID(ctx context.Context, field g var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -43732,7 +43731,7 @@ func (ec *executionContext) _Campaign_hasPendingWorkflow(ctx context.Context, fi field, ec.fieldContext_Campaign_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.Campaign().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.Campaign().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -43761,7 +43760,7 @@ func (ec *executionContext) _Campaign_hasWorkflowHistory(ctx context.Context, fi field, ec.fieldContext_Campaign_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.Campaign().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.Campaign().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -43790,7 +43789,7 @@ func (ec *executionContext) _Campaign_activeWorkflowInstances(ctx context.Contex field, ec.fieldContext_Campaign_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.Campaign().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.Campaign().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -43906,7 +43905,7 @@ func (ec *executionContext) _Campaign_workflowTimeline(ctx context.Context, fiel ec.fieldContext_Campaign_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Campaign().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.Campaign().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -45546,7 +45545,7 @@ func (ec *executionContext) _CampaignTarget_hasPendingWorkflow(ctx context.Conte field, ec.fieldContext_CampaignTarget_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.CampaignTarget().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.CampaignTarget().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -45575,7 +45574,7 @@ func (ec *executionContext) _CampaignTarget_hasWorkflowHistory(ctx context.Conte field, ec.fieldContext_CampaignTarget_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.CampaignTarget().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.CampaignTarget().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -45604,7 +45603,7 @@ func (ec *executionContext) _CampaignTarget_activeWorkflowInstances(ctx context. field, ec.fieldContext_CampaignTarget_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.CampaignTarget().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.CampaignTarget().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -45720,7 +45719,7 @@ func (ec *executionContext) _CampaignTarget_workflowTimeline(ctx context.Context ec.fieldContext_CampaignTarget_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.CampaignTarget().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.CampaignTarget().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -47263,11 +47262,11 @@ func (ec *executionContext) _Control_title(ctx context.Context, field graphql.Co var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -47310,11 +47309,11 @@ func (ec *executionContext) _Control_description(ctx context.Context, field grap var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -47531,11 +47530,11 @@ func (ec *executionContext) _Control_source(ctx context.Context, field graphql.C var zeroVal enums.ControlSource return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal enums.ControlSource return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -47578,11 +47577,11 @@ func (ec *executionContext) _Control_referenceFramework(ctx context.Context, fie var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -47625,11 +47624,11 @@ func (ec *executionContext) _Control_referenceFrameworkRevision(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -47672,11 +47671,11 @@ func (ec *executionContext) _Control_category(ctx context.Context, field graphql var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -47719,11 +47718,11 @@ func (ec *executionContext) _Control_categoryID(ctx context.Context, field graph var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -47766,11 +47765,11 @@ func (ec *executionContext) _Control_subcategory(ctx context.Context, field grap var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -48190,11 +48189,11 @@ func (ec *executionContext) _Control_internalNotes(ctx context.Context, field gr var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -48237,11 +48236,11 @@ func (ec *executionContext) _Control_systemInternalID(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -48487,11 +48486,11 @@ func (ec *executionContext) _Control_refCode(ctx context.Context, field graphql. var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -50828,7 +50827,7 @@ func (ec *executionContext) _Control_hasPendingWorkflow(ctx context.Context, fie field, ec.fieldContext_Control_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.Control().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.Control().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -50857,7 +50856,7 @@ func (ec *executionContext) _Control_hasWorkflowHistory(ctx context.Context, fie field, ec.fieldContext_Control_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.Control().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.Control().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -50886,7 +50885,7 @@ func (ec *executionContext) _Control_activeWorkflowInstances(ctx context.Context field, ec.fieldContext_Control_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.Control().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.Control().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -51002,7 +51001,7 @@ func (ec *executionContext) _Control_workflowTimeline(ctx context.Context, field ec.fieldContext_Control_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Control().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.Control().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -51618,11 +51617,11 @@ func (ec *executionContext) _ControlImplementation_internalNotes(ctx context.Con var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -51665,11 +51664,11 @@ func (ec *executionContext) _ControlImplementation_systemInternalID(ctx context. var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -52940,11 +52939,11 @@ func (ec *executionContext) _ControlObjective_internalNotes(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -52987,11 +52986,11 @@ func (ec *executionContext) _ControlObjective_systemInternalID(ctx context.Conte var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -54576,11 +54575,11 @@ func (ec *executionContext) _CustomDomain_internalNotes(ctx context.Context, fie var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -54623,11 +54622,11 @@ func (ec *executionContext) _CustomDomain_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -55563,11 +55562,11 @@ func (ec *executionContext) _CustomTypeEnum_internalNotes(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -55610,11 +55609,11 @@ func (ec *executionContext) _CustomTypeEnum_systemInternalID(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -70644,11 +70643,11 @@ func (ec *executionContext) _EmailTemplate_internalNotes(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -70691,11 +70690,11 @@ func (ec *executionContext) _EmailTemplate_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -72679,11 +72678,11 @@ func (ec *executionContext) _Entity_internalNotes(ctx context.Context, field gra var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -72726,11 +72725,11 @@ func (ec *executionContext) _Entity_systemInternalID(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -76769,11 +76768,11 @@ func (ec *executionContext) _EntityType_internalNotes(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -76816,11 +76815,11 @@ func (ec *executionContext) _EntityType_systemInternalID(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -80069,7 +80068,7 @@ func (ec *executionContext) _Evidence_hasPendingWorkflow(ctx context.Context, fi field, ec.fieldContext_Evidence_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.Evidence().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.Evidence().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -80098,7 +80097,7 @@ func (ec *executionContext) _Evidence_hasWorkflowHistory(ctx context.Context, fi field, ec.fieldContext_Evidence_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.Evidence().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.Evidence().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -80127,7 +80126,7 @@ func (ec *executionContext) _Evidence_activeWorkflowInstances(ctx context.Contex field, ec.fieldContext_Evidence_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.Evidence().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.Evidence().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -80243,7 +80242,7 @@ func (ec *executionContext) _Evidence_workflowTimeline(ctx context.Context, fiel ec.fieldContext_Evidence_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Evidence().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.Evidence().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -81679,11 +81678,11 @@ func (ec *executionContext) _File_internalNotes(ctx context.Context, field graph var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -81726,11 +81725,11 @@ func (ec *executionContext) _File_systemInternalID(ctx context.Context, field gr var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -84923,11 +84922,11 @@ func (ec *executionContext) _Finding_internalNotes(ctx context.Context, field gr var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -84970,11 +84969,11 @@ func (ec *executionContext) _Finding_systemInternalID(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -92182,7 +92181,7 @@ func (ec *executionContext) _Group_permissions(ctx context.Context, field graphq ec.fieldContext_Group_permissions, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Group().Permissions(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Group().Permissions(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalNGroupPermissionConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupPermissionConnection, @@ -94133,11 +94132,11 @@ func (ec *executionContext) _Hush_internalNotes(ctx context.Context, field graph var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -94180,11 +94179,11 @@ func (ec *executionContext) _Hush_systemInternalID(ctx context.Context, field gr var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -97852,7 +97851,7 @@ func (ec *executionContext) _IdentityHolder_hasPendingWorkflow(ctx context.Conte field, ec.fieldContext_IdentityHolder_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.IdentityHolder().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.IdentityHolder().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -97881,7 +97880,7 @@ func (ec *executionContext) _IdentityHolder_hasWorkflowHistory(ctx context.Conte field, ec.fieldContext_IdentityHolder_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.IdentityHolder().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.IdentityHolder().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -97910,7 +97909,7 @@ func (ec *executionContext) _IdentityHolder_activeWorkflowInstances(ctx context. field, ec.fieldContext_IdentityHolder_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.IdentityHolder().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.IdentityHolder().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -98026,7 +98025,7 @@ func (ec *executionContext) _IdentityHolder_workflowTimeline(ctx context.Context ec.fieldContext_IdentityHolder_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.IdentityHolder().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.IdentityHolder().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -98602,11 +98601,11 @@ func (ec *executionContext) _Integration_internalNotes(ctx context.Context, fiel var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -98649,11 +98648,11 @@ func (ec *executionContext) _Integration_systemInternalID(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -100965,11 +100964,11 @@ func (ec *executionContext) _InternalPolicy_internalNotes(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -101012,11 +101011,11 @@ func (ec *executionContext) _InternalPolicy_systemInternalID(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -103432,7 +103431,7 @@ func (ec *executionContext) _InternalPolicy_hasPendingWorkflow(ctx context.Conte field, ec.fieldContext_InternalPolicy_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.InternalPolicy().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.InternalPolicy().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -103461,7 +103460,7 @@ func (ec *executionContext) _InternalPolicy_hasWorkflowHistory(ctx context.Conte field, ec.fieldContext_InternalPolicy_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.InternalPolicy().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.InternalPolicy().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -103490,7 +103489,7 @@ func (ec *executionContext) _InternalPolicy_activeWorkflowInstances(ctx context. field, ec.fieldContext_InternalPolicy_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.InternalPolicy().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.InternalPolicy().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -103606,7 +103605,7 @@ func (ec *executionContext) _InternalPolicy_workflowTimeline(ctx context.Context ec.fieldContext_InternalPolicy_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.InternalPolicy().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.InternalPolicy().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -106175,11 +106174,11 @@ func (ec *executionContext) _JobRunner_internalNotes(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -106222,11 +106221,11 @@ func (ec *executionContext) _JobRunner_systemInternalID(ctx context.Context, fie var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -108964,11 +108963,11 @@ func (ec *executionContext) _JobTemplate_internalNotes(ctx context.Context, fiel var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -109011,11 +109010,11 @@ func (ec *executionContext) _JobTemplate_systemInternalID(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -110408,11 +110407,11 @@ func (ec *executionContext) _MappedControl_internalNotes(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -110455,11 +110454,11 @@ func (ec *executionContext) _MappedControl_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -111668,11 +111667,11 @@ func (ec *executionContext) _Narrative_internalNotes(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -111715,11 +111714,11 @@ func (ec *executionContext) _Narrative_systemInternalID(ctx context.Context, fie var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -115253,7 +115252,7 @@ func (ec *executionContext) _Notification_channels(ctx context.Context, field gr field, ec.fieldContext_Notification_channels, func(ctx context.Context) (any, error) { - return ec.resolvers.Notification().Channels(ctx, obj) + return ec.Resolvers.Notification().Channels(ctx, obj) }, nil, ec.marshalOChannel2ᚕstringᚄ, @@ -117569,11 +117568,11 @@ func (ec *executionContext) _NotificationTemplate_internalNotes(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -117616,11 +117615,11 @@ func (ec *executionContext) _NotificationTemplate_systemInternalID(ctx context.C var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -134827,7 +134826,7 @@ func (ec *executionContext) _Platform_hasPendingWorkflow(ctx context.Context, fi field, ec.fieldContext_Platform_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.Platform().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.Platform().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -134856,7 +134855,7 @@ func (ec *executionContext) _Platform_hasWorkflowHistory(ctx context.Context, fi field, ec.fieldContext_Platform_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.Platform().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.Platform().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -134885,7 +134884,7 @@ func (ec *executionContext) _Platform_activeWorkflowInstances(ctx context.Contex field, ec.fieldContext_Platform_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.Platform().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.Platform().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -135001,7 +135000,7 @@ func (ec *executionContext) _Platform_workflowTimeline(ctx context.Context, fiel ec.fieldContext_Platform_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Platform().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.Platform().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -136239,11 +136238,11 @@ func (ec *executionContext) _Procedure_internalNotes(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -136286,11 +136285,11 @@ func (ec *executionContext) _Procedure_systemInternalID(ctx context.Context, fie var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -138086,7 +138085,7 @@ func (ec *executionContext) _Procedure_hasPendingWorkflow(ctx context.Context, f field, ec.fieldContext_Procedure_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.Procedure().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.Procedure().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -138115,7 +138114,7 @@ func (ec *executionContext) _Procedure_hasWorkflowHistory(ctx context.Context, f field, ec.fieldContext_Procedure_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.Procedure().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.Procedure().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -138144,7 +138143,7 @@ func (ec *executionContext) _Procedure_activeWorkflowInstances(ctx context.Conte field, ec.fieldContext_Procedure_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.Procedure().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.Procedure().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -138260,7 +138259,7 @@ func (ec *executionContext) _Procedure_workflowTimeline(ctx context.Context, fie ec.fieldContext_Procedure_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Procedure().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.Procedure().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -141459,7 +141458,7 @@ func (ec *executionContext) _Query_node(ctx context.Context, field graphql.Colle ec.fieldContext_Query_node, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Node(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Node(ctx, fc.Args["id"].(string)) }, nil, ec.marshalONode2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoder, @@ -141500,7 +141499,7 @@ func (ec *executionContext) _Query_nodes(ctx context.Context, field graphql.Coll ec.fieldContext_Query_nodes, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Nodes(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Query().Nodes(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNNode2ᚕgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoder, @@ -141541,7 +141540,7 @@ func (ec *executionContext) _Query_apiTokens(ctx context.Context, field graphql. ec.fieldContext_Query_apiTokens, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().APITokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.APITokenOrder), fc.Args["where"].(*generated.APITokenWhereInput)) + return ec.Resolvers.Query().APITokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.APITokenOrder), fc.Args["where"].(*generated.APITokenWhereInput)) }, nil, ec.marshalNAPITokenConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAPITokenConnection, @@ -141590,7 +141589,7 @@ func (ec *executionContext) _Query_actionPlans(ctx context.Context, field graphq ec.fieldContext_Query_actionPlans, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ActionPlans(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ActionPlanOrder), fc.Args["where"].(*generated.ActionPlanWhereInput)) + return ec.Resolvers.Query().ActionPlans(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ActionPlanOrder), fc.Args["where"].(*generated.ActionPlanWhereInput)) }, nil, ec.marshalNActionPlanConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐActionPlanConnection, @@ -141639,7 +141638,7 @@ func (ec *executionContext) _Query_assessments(ctx context.Context, field graphq ec.fieldContext_Query_assessments, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Assessments(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.AssessmentOrder), fc.Args["where"].(*generated.AssessmentWhereInput)) + return ec.Resolvers.Query().Assessments(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.AssessmentOrder), fc.Args["where"].(*generated.AssessmentWhereInput)) }, nil, ec.marshalNAssessmentConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentConnection, @@ -141688,7 +141687,7 @@ func (ec *executionContext) _Query_assessmentResponses(ctx context.Context, fiel ec.fieldContext_Query_assessmentResponses, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssessmentResponses(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.AssessmentResponseOrder), fc.Args["where"].(*generated.AssessmentResponseWhereInput)) + return ec.Resolvers.Query().AssessmentResponses(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.AssessmentResponseOrder), fc.Args["where"].(*generated.AssessmentResponseWhereInput)) }, nil, ec.marshalNAssessmentResponseConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentResponseConnection, @@ -141737,7 +141736,7 @@ func (ec *executionContext) _Query_assets(ctx context.Context, field graphql.Col ec.fieldContext_Query_assets, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Assets(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.AssetOrder), fc.Args["where"].(*generated.AssetWhereInput)) + return ec.Resolvers.Query().Assets(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.AssetOrder), fc.Args["where"].(*generated.AssetWhereInput)) }, nil, ec.marshalNAssetConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssetConnection, @@ -141786,7 +141785,7 @@ func (ec *executionContext) _Query_campaigns(ctx context.Context, field graphql. ec.fieldContext_Query_campaigns, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Campaigns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CampaignOrder), fc.Args["where"].(*generated.CampaignWhereInput)) + return ec.Resolvers.Query().Campaigns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CampaignOrder), fc.Args["where"].(*generated.CampaignWhereInput)) }, nil, ec.marshalNCampaignConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignConnection, @@ -141835,7 +141834,7 @@ func (ec *executionContext) _Query_campaignTargets(ctx context.Context, field gr ec.fieldContext_Query_campaignTargets, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CampaignTargets(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CampaignTargetOrder), fc.Args["where"].(*generated.CampaignTargetWhereInput)) + return ec.Resolvers.Query().CampaignTargets(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CampaignTargetOrder), fc.Args["where"].(*generated.CampaignTargetWhereInput)) }, nil, ec.marshalNCampaignTargetConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignTargetConnection, @@ -141884,7 +141883,7 @@ func (ec *executionContext) _Query_contacts(ctx context.Context, field graphql.C ec.fieldContext_Query_contacts, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Contacts(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ContactOrder), fc.Args["where"].(*generated.ContactWhereInput)) + return ec.Resolvers.Query().Contacts(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ContactOrder), fc.Args["where"].(*generated.ContactWhereInput)) }, nil, ec.marshalNContactConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐContactConnection, @@ -141933,7 +141932,7 @@ func (ec *executionContext) _Query_controls(ctx context.Context, field graphql.C ec.fieldContext_Query_controls, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Controls(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlOrder), fc.Args["where"].(*generated.ControlWhereInput)) + return ec.Resolvers.Query().Controls(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlOrder), fc.Args["where"].(*generated.ControlWhereInput)) }, nil, ec.marshalNControlConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlConnection, @@ -141982,7 +141981,7 @@ func (ec *executionContext) _Query_controlImplementations(ctx context.Context, f ec.fieldContext_Query_controlImplementations, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlImplementations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlImplementationOrder), fc.Args["where"].(*generated.ControlImplementationWhereInput)) + return ec.Resolvers.Query().ControlImplementations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlImplementationOrder), fc.Args["where"].(*generated.ControlImplementationWhereInput)) }, nil, ec.marshalNControlImplementationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlImplementationConnection, @@ -142031,7 +142030,7 @@ func (ec *executionContext) _Query_controlObjectives(ctx context.Context, field ec.fieldContext_Query_controlObjectives, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlObjectives(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlObjectiveOrder), fc.Args["where"].(*generated.ControlObjectiveWhereInput)) + return ec.Resolvers.Query().ControlObjectives(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlObjectiveOrder), fc.Args["where"].(*generated.ControlObjectiveWhereInput)) }, nil, ec.marshalNControlObjectiveConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlObjectiveConnection, @@ -142080,7 +142079,7 @@ func (ec *executionContext) _Query_customDomains(ctx context.Context, field grap ec.fieldContext_Query_customDomains, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CustomDomains(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CustomDomainOrder), fc.Args["where"].(*generated.CustomDomainWhereInput)) + return ec.Resolvers.Query().CustomDomains(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CustomDomainOrder), fc.Args["where"].(*generated.CustomDomainWhereInput)) }, nil, ec.marshalNCustomDomainConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomDomainConnection, @@ -142129,7 +142128,7 @@ func (ec *executionContext) _Query_customTypeEnums(ctx context.Context, field gr ec.fieldContext_Query_customTypeEnums, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CustomTypeEnums(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CustomTypeEnumOrder), fc.Args["where"].(*generated.CustomTypeEnumWhereInput)) + return ec.Resolvers.Query().CustomTypeEnums(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.CustomTypeEnumOrder), fc.Args["where"].(*generated.CustomTypeEnumWhereInput)) }, nil, ec.marshalNCustomTypeEnumConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomTypeEnumConnection, @@ -142178,7 +142177,7 @@ func (ec *executionContext) _Query_dnsVerifications(ctx context.Context, field g ec.fieldContext_Query_dnsVerifications, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DNSVerifications(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DNSVerificationOrder), fc.Args["where"].(*generated.DNSVerificationWhereInput)) + return ec.Resolvers.Query().DNSVerifications(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DNSVerificationOrder), fc.Args["where"].(*generated.DNSVerificationWhereInput)) }, nil, ec.marshalNDNSVerificationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDNSVerificationConnection, @@ -142227,7 +142226,7 @@ func (ec *executionContext) _Query_directoryAccounts(ctx context.Context, field ec.fieldContext_Query_directoryAccounts, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryAccounts(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectoryAccountOrder), fc.Args["where"].(*generated.DirectoryAccountWhereInput)) + return ec.Resolvers.Query().DirectoryAccounts(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectoryAccountOrder), fc.Args["where"].(*generated.DirectoryAccountWhereInput)) }, nil, ec.marshalNDirectoryAccountConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryAccountConnection, @@ -142276,7 +142275,7 @@ func (ec *executionContext) _Query_directoryGroups(ctx context.Context, field gr ec.fieldContext_Query_directoryGroups, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryGroups(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectoryGroupOrder), fc.Args["where"].(*generated.DirectoryGroupWhereInput)) + return ec.Resolvers.Query().DirectoryGroups(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectoryGroupOrder), fc.Args["where"].(*generated.DirectoryGroupWhereInput)) }, nil, ec.marshalNDirectoryGroupConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryGroupConnection, @@ -142325,7 +142324,7 @@ func (ec *executionContext) _Query_directoryMemberships(ctx context.Context, fie ec.fieldContext_Query_directoryMemberships, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectoryMembershipOrder), fc.Args["where"].(*generated.DirectoryMembershipWhereInput)) + return ec.Resolvers.Query().DirectoryMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectoryMembershipOrder), fc.Args["where"].(*generated.DirectoryMembershipWhereInput)) }, nil, ec.marshalNDirectoryMembershipConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryMembershipConnection, @@ -142374,7 +142373,7 @@ func (ec *executionContext) _Query_directorySyncRuns(ctx context.Context, field ec.fieldContext_Query_directorySyncRuns, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectorySyncRuns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectorySyncRunOrder), fc.Args["where"].(*generated.DirectorySyncRunWhereInput)) + return ec.Resolvers.Query().DirectorySyncRuns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DirectorySyncRunOrder), fc.Args["where"].(*generated.DirectorySyncRunWhereInput)) }, nil, ec.marshalNDirectorySyncRunConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectorySyncRunConnection, @@ -142423,7 +142422,7 @@ func (ec *executionContext) _Query_discussions(ctx context.Context, field graphq ec.fieldContext_Query_discussions, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Discussions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DiscussionOrder), fc.Args["where"].(*generated.DiscussionWhereInput)) + return ec.Resolvers.Query().Discussions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DiscussionOrder), fc.Args["where"].(*generated.DiscussionWhereInput)) }, nil, ec.marshalNDiscussionConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDiscussionConnection, @@ -142472,7 +142471,7 @@ func (ec *executionContext) _Query_documentDataSlice(ctx context.Context, field ec.fieldContext_Query_documentDataSlice, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DocumentDataSlice(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DocumentDataOrder), fc.Args["where"].(*generated.DocumentDataWhereInput)) + return ec.Resolvers.Query().DocumentDataSlice(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.DocumentDataOrder), fc.Args["where"].(*generated.DocumentDataWhereInput)) }, nil, ec.marshalNDocumentDataConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDocumentDataConnection, @@ -142521,7 +142520,7 @@ func (ec *executionContext) _Query_emailBrandings(ctx context.Context, field gra ec.fieldContext_Query_emailBrandings, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailBrandings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EmailBrandingOrder), fc.Args["where"].(*generated.EmailBrandingWhereInput)) + return ec.Resolvers.Query().EmailBrandings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EmailBrandingOrder), fc.Args["where"].(*generated.EmailBrandingWhereInput)) }, nil, ec.marshalNEmailBrandingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailBrandingConnection, @@ -142570,7 +142569,7 @@ func (ec *executionContext) _Query_emailTemplates(ctx context.Context, field gra ec.fieldContext_Query_emailTemplates, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailTemplates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EmailTemplateOrder), fc.Args["where"].(*generated.EmailTemplateWhereInput)) + return ec.Resolvers.Query().EmailTemplates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EmailTemplateOrder), fc.Args["where"].(*generated.EmailTemplateWhereInput)) }, nil, ec.marshalNEmailTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailTemplateConnection, @@ -142619,7 +142618,7 @@ func (ec *executionContext) _Query_entities(ctx context.Context, field graphql.C ec.fieldContext_Query_entities, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Entities(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EntityOrder), fc.Args["where"].(*generated.EntityWhereInput)) + return ec.Resolvers.Query().Entities(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EntityOrder), fc.Args["where"].(*generated.EntityWhereInput)) }, nil, ec.marshalNEntityConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityConnection, @@ -142668,7 +142667,7 @@ func (ec *executionContext) _Query_entityTypes(ctx context.Context, field graphq ec.fieldContext_Query_entityTypes, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EntityTypes(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EntityTypeOrder), fc.Args["where"].(*generated.EntityTypeWhereInput)) + return ec.Resolvers.Query().EntityTypes(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EntityTypeOrder), fc.Args["where"].(*generated.EntityTypeWhereInput)) }, nil, ec.marshalNEntityTypeConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityTypeConnection, @@ -142717,7 +142716,7 @@ func (ec *executionContext) _Query_events(ctx context.Context, field graphql.Col ec.fieldContext_Query_events, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Events(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EventOrder), fc.Args["where"].(*generated.EventWhereInput)) + return ec.Resolvers.Query().Events(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EventOrder), fc.Args["where"].(*generated.EventWhereInput)) }, nil, ec.marshalNEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEventConnection, @@ -142766,7 +142765,7 @@ func (ec *executionContext) _Query_evidences(ctx context.Context, field graphql. ec.fieldContext_Query_evidences, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Evidences(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EvidenceOrder), fc.Args["where"].(*generated.EvidenceWhereInput)) + return ec.Resolvers.Query().Evidences(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.EvidenceOrder), fc.Args["where"].(*generated.EvidenceWhereInput)) }, nil, ec.marshalNEvidenceConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvidenceConnection, @@ -142815,7 +142814,7 @@ func (ec *executionContext) _Query_exports(ctx context.Context, field graphql.Co ec.fieldContext_Query_exports, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Exports(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ExportOrder), fc.Args["where"].(*generated.ExportWhereInput)) + return ec.Resolvers.Query().Exports(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ExportOrder), fc.Args["where"].(*generated.ExportWhereInput)) }, nil, ec.marshalNExportConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐExportConnection, @@ -142864,7 +142863,7 @@ func (ec *executionContext) _Query_files(ctx context.Context, field graphql.Coll ec.fieldContext_Query_files, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Files(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.FileOrder), fc.Args["where"].(*generated.FileWhereInput)) + return ec.Resolvers.Query().Files(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.FileOrder), fc.Args["where"].(*generated.FileWhereInput)) }, nil, ec.marshalNFileConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFileConnection, @@ -142913,7 +142912,7 @@ func (ec *executionContext) _Query_findings(ctx context.Context, field graphql.C ec.fieldContext_Query_findings, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Findings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.FindingOrder), fc.Args["where"].(*generated.FindingWhereInput)) + return ec.Resolvers.Query().Findings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.FindingOrder), fc.Args["where"].(*generated.FindingWhereInput)) }, nil, ec.marshalNFindingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingConnection, @@ -142962,7 +142961,7 @@ func (ec *executionContext) _Query_findingControls(ctx context.Context, field gr ec.fieldContext_Query_findingControls, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().FindingControls(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.FindingControlOrder), fc.Args["where"].(*generated.FindingControlWhereInput)) + return ec.Resolvers.Query().FindingControls(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.FindingControlOrder), fc.Args["where"].(*generated.FindingControlWhereInput)) }, nil, ec.marshalNFindingControlConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingControlConnection, @@ -143011,7 +143010,7 @@ func (ec *executionContext) _Query_groups(ctx context.Context, field graphql.Col ec.fieldContext_Query_groups, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Groups(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.GroupOrder), fc.Args["where"].(*generated.GroupWhereInput)) + return ec.Resolvers.Query().Groups(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.GroupOrder), fc.Args["where"].(*generated.GroupWhereInput)) }, nil, ec.marshalNGroupConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupConnection, @@ -143060,7 +143059,7 @@ func (ec *executionContext) _Query_groupMemberships(ctx context.Context, field g ec.fieldContext_Query_groupMemberships, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.GroupMembershipOrder), fc.Args["where"].(*generated.GroupMembershipWhereInput)) + return ec.Resolvers.Query().GroupMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.GroupMembershipOrder), fc.Args["where"].(*generated.GroupMembershipWhereInput)) }, nil, ec.marshalNGroupMembershipConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupMembershipConnection, @@ -143109,7 +143108,7 @@ func (ec *executionContext) _Query_groupSettings(ctx context.Context, field grap ec.fieldContext_Query_groupSettings, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.GroupSettingOrder), fc.Args["where"].(*generated.GroupSettingWhereInput)) + return ec.Resolvers.Query().GroupSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.GroupSettingOrder), fc.Args["where"].(*generated.GroupSettingWhereInput)) }, nil, ec.marshalNGroupSettingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupSettingConnection, @@ -143158,7 +143157,7 @@ func (ec *executionContext) _Query_hushes(ctx context.Context, field graphql.Col ec.fieldContext_Query_hushes, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Hushes(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.HushOrder), fc.Args["where"].(*generated.HushWhereInput)) + return ec.Resolvers.Query().Hushes(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.HushOrder), fc.Args["where"].(*generated.HushWhereInput)) }, nil, ec.marshalNHushConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐHushConnection, @@ -143207,7 +143206,7 @@ func (ec *executionContext) _Query_identityHolders(ctx context.Context, field gr ec.fieldContext_Query_identityHolders, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().IdentityHolders(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.IdentityHolderOrder), fc.Args["where"].(*generated.IdentityHolderWhereInput)) + return ec.Resolvers.Query().IdentityHolders(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.IdentityHolderOrder), fc.Args["where"].(*generated.IdentityHolderWhereInput)) }, nil, ec.marshalNIdentityHolderConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIdentityHolderConnection, @@ -143256,7 +143255,7 @@ func (ec *executionContext) _Query_integrations(ctx context.Context, field graph ec.fieldContext_Query_integrations, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Integrations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.IntegrationOrder), fc.Args["where"].(*generated.IntegrationWhereInput)) + return ec.Resolvers.Query().Integrations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.IntegrationOrder), fc.Args["where"].(*generated.IntegrationWhereInput)) }, nil, ec.marshalNIntegrationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIntegrationConnection, @@ -143305,7 +143304,7 @@ func (ec *executionContext) _Query_internalPolicies(ctx context.Context, field g ec.fieldContext_Query_internalPolicies, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().InternalPolicies(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.InternalPolicyOrder), fc.Args["where"].(*generated.InternalPolicyWhereInput)) + return ec.Resolvers.Query().InternalPolicies(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.InternalPolicyOrder), fc.Args["where"].(*generated.InternalPolicyWhereInput)) }, nil, ec.marshalNInternalPolicyConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInternalPolicyConnection, @@ -143354,7 +143353,7 @@ func (ec *executionContext) _Query_invites(ctx context.Context, field graphql.Co ec.fieldContext_Query_invites, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Invites(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.InviteOrder), fc.Args["where"].(*generated.InviteWhereInput)) + return ec.Resolvers.Query().Invites(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.InviteOrder), fc.Args["where"].(*generated.InviteWhereInput)) }, nil, ec.marshalNInviteConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInviteConnection, @@ -143403,7 +143402,7 @@ func (ec *executionContext) _Query_jobResults(ctx context.Context, field graphql ec.fieldContext_Query_jobResults, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobResults(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobResultOrder), fc.Args["where"].(*generated.JobResultWhereInput)) + return ec.Resolvers.Query().JobResults(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobResultOrder), fc.Args["where"].(*generated.JobResultWhereInput)) }, nil, ec.marshalNJobResultConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobResultConnection, @@ -143452,7 +143451,7 @@ func (ec *executionContext) _Query_jobRunners(ctx context.Context, field graphql ec.fieldContext_Query_jobRunners, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobRunners(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobRunnerOrder), fc.Args["where"].(*generated.JobRunnerWhereInput)) + return ec.Resolvers.Query().JobRunners(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobRunnerOrder), fc.Args["where"].(*generated.JobRunnerWhereInput)) }, nil, ec.marshalNJobRunnerConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerConnection, @@ -143501,7 +143500,7 @@ func (ec *executionContext) _Query_jobRunnerRegistrationTokens(ctx context.Conte ec.fieldContext_Query_jobRunnerRegistrationTokens, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobRunnerRegistrationTokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobRunnerRegistrationTokenOrder), fc.Args["where"].(*generated.JobRunnerRegistrationTokenWhereInput)) + return ec.Resolvers.Query().JobRunnerRegistrationTokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobRunnerRegistrationTokenOrder), fc.Args["where"].(*generated.JobRunnerRegistrationTokenWhereInput)) }, nil, ec.marshalNJobRunnerRegistrationTokenConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerRegistrationTokenConnection, @@ -143550,7 +143549,7 @@ func (ec *executionContext) _Query_jobRunnerTokens(ctx context.Context, field gr ec.fieldContext_Query_jobRunnerTokens, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobRunnerTokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobRunnerTokenOrder), fc.Args["where"].(*generated.JobRunnerTokenWhereInput)) + return ec.Resolvers.Query().JobRunnerTokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobRunnerTokenOrder), fc.Args["where"].(*generated.JobRunnerTokenWhereInput)) }, nil, ec.marshalNJobRunnerTokenConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerTokenConnection, @@ -143599,7 +143598,7 @@ func (ec *executionContext) _Query_jobTemplates(ctx context.Context, field graph ec.fieldContext_Query_jobTemplates, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobTemplates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobTemplateOrder), fc.Args["where"].(*generated.JobTemplateWhereInput)) + return ec.Resolvers.Query().JobTemplates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.JobTemplateOrder), fc.Args["where"].(*generated.JobTemplateWhereInput)) }, nil, ec.marshalNJobTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobTemplateConnection, @@ -143648,7 +143647,7 @@ func (ec *executionContext) _Query_mappableDomains(ctx context.Context, field gr ec.fieldContext_Query_mappableDomains, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().MappableDomains(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.MappableDomainOrder), fc.Args["where"].(*generated.MappableDomainWhereInput)) + return ec.Resolvers.Query().MappableDomains(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.MappableDomainOrder), fc.Args["where"].(*generated.MappableDomainWhereInput)) }, nil, ec.marshalNMappableDomainConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappableDomainConnection, @@ -143697,7 +143696,7 @@ func (ec *executionContext) _Query_mappedControls(ctx context.Context, field gra ec.fieldContext_Query_mappedControls, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().MappedControls(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.MappedControlOrder), fc.Args["where"].(*generated.MappedControlWhereInput)) + return ec.Resolvers.Query().MappedControls(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.MappedControlOrder), fc.Args["where"].(*generated.MappedControlWhereInput)) }, nil, ec.marshalNMappedControlConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappedControlConnection, @@ -143746,7 +143745,7 @@ func (ec *executionContext) _Query_narratives(ctx context.Context, field graphql ec.fieldContext_Query_narratives, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Narratives(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NarrativeOrder), fc.Args["where"].(*generated.NarrativeWhereInput)) + return ec.Resolvers.Query().Narratives(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NarrativeOrder), fc.Args["where"].(*generated.NarrativeWhereInput)) }, nil, ec.marshalNNarrativeConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNarrativeConnection, @@ -143795,7 +143794,7 @@ func (ec *executionContext) _Query_notes(ctx context.Context, field graphql.Coll ec.fieldContext_Query_notes, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Notes(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NoteOrder), fc.Args["where"].(*generated.NoteWhereInput)) + return ec.Resolvers.Query().Notes(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NoteOrder), fc.Args["where"].(*generated.NoteWhereInput)) }, nil, ec.marshalNNoteConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoteConnection, @@ -143844,7 +143843,7 @@ func (ec *executionContext) _Query_notificationPreferences(ctx context.Context, ec.fieldContext_Query_notificationPreferences, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NotificationPreferences(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NotificationPreferenceOrder), fc.Args["where"].(*generated.NotificationPreferenceWhereInput)) + return ec.Resolvers.Query().NotificationPreferences(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NotificationPreferenceOrder), fc.Args["where"].(*generated.NotificationPreferenceWhereInput)) }, nil, ec.marshalNNotificationPreferenceConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationPreferenceConnection, @@ -143893,7 +143892,7 @@ func (ec *executionContext) _Query_notificationTemplates(ctx context.Context, fi ec.fieldContext_Query_notificationTemplates, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NotificationTemplates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NotificationTemplateOrder), fc.Args["where"].(*generated.NotificationTemplateWhereInput)) + return ec.Resolvers.Query().NotificationTemplates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.NotificationTemplateOrder), fc.Args["where"].(*generated.NotificationTemplateWhereInput)) }, nil, ec.marshalNNotificationTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationTemplateConnection, @@ -143942,7 +143941,7 @@ func (ec *executionContext) _Query_orgMemberships(ctx context.Context, field gra ec.fieldContext_Query_orgMemberships, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrgMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.OrgMembershipOrder), fc.Args["where"].(*generated.OrgMembershipWhereInput)) + return ec.Resolvers.Query().OrgMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.OrgMembershipOrder), fc.Args["where"].(*generated.OrgMembershipWhereInput)) }, nil, ec.marshalNOrgMembershipConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgMembershipConnection, @@ -143991,7 +143990,7 @@ func (ec *executionContext) _Query_orgSubscriptions(ctx context.Context, field g ec.fieldContext_Query_orgSubscriptions, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrgSubscriptions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*generated.OrgSubscriptionOrder), fc.Args["where"].(*generated.OrgSubscriptionWhereInput)) + return ec.Resolvers.Query().OrgSubscriptions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*generated.OrgSubscriptionOrder), fc.Args["where"].(*generated.OrgSubscriptionWhereInput)) }, nil, ec.marshalNOrgSubscriptionConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgSubscriptionConnection, @@ -144040,7 +144039,7 @@ func (ec *executionContext) _Query_organizations(ctx context.Context, field grap ec.fieldContext_Query_organizations, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Organizations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.OrganizationOrder), fc.Args["where"].(*generated.OrganizationWhereInput)) + return ec.Resolvers.Query().Organizations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.OrganizationOrder), fc.Args["where"].(*generated.OrganizationWhereInput)) }, nil, ec.marshalNOrganizationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationConnection, @@ -144089,7 +144088,7 @@ func (ec *executionContext) _Query_organizationSettings(ctx context.Context, fie ec.fieldContext_Query_organizationSettings, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrganizationSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.OrganizationSettingOrder), fc.Args["where"].(*generated.OrganizationSettingWhereInput)) + return ec.Resolvers.Query().OrganizationSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.OrganizationSettingOrder), fc.Args["where"].(*generated.OrganizationSettingWhereInput)) }, nil, ec.marshalNOrganizationSettingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationSettingConnection, @@ -144138,7 +144137,7 @@ func (ec *executionContext) _Query_personalAccessTokens(ctx context.Context, fie ec.fieldContext_Query_personalAccessTokens, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().PersonalAccessTokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.PersonalAccessTokenOrder), fc.Args["where"].(*generated.PersonalAccessTokenWhereInput)) + return ec.Resolvers.Query().PersonalAccessTokens(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.PersonalAccessTokenOrder), fc.Args["where"].(*generated.PersonalAccessTokenWhereInput)) }, nil, ec.marshalNPersonalAccessTokenConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPersonalAccessTokenConnection, @@ -144187,7 +144186,7 @@ func (ec *executionContext) _Query_platforms(ctx context.Context, field graphql. ec.fieldContext_Query_platforms, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Platforms(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.PlatformOrder), fc.Args["where"].(*generated.PlatformWhereInput)) + return ec.Resolvers.Query().Platforms(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.PlatformOrder), fc.Args["where"].(*generated.PlatformWhereInput)) }, nil, ec.marshalNPlatformConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPlatformConnection, @@ -144236,7 +144235,7 @@ func (ec *executionContext) _Query_procedures(ctx context.Context, field graphql ec.fieldContext_Query_procedures, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Procedures(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ProcedureOrder), fc.Args["where"].(*generated.ProcedureWhereInput)) + return ec.Resolvers.Query().Procedures(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ProcedureOrder), fc.Args["where"].(*generated.ProcedureWhereInput)) }, nil, ec.marshalNProcedureConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProcedureConnection, @@ -144285,7 +144284,7 @@ func (ec *executionContext) _Query_programs(ctx context.Context, field graphql.C ec.fieldContext_Query_programs, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Programs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ProgramOrder), fc.Args["where"].(*generated.ProgramWhereInput)) + return ec.Resolvers.Query().Programs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ProgramOrder), fc.Args["where"].(*generated.ProgramWhereInput)) }, nil, ec.marshalNProgramConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramConnection, @@ -144334,7 +144333,7 @@ func (ec *executionContext) _Query_programMemberships(ctx context.Context, field ec.fieldContext_Query_programMemberships, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ProgramMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ProgramMembershipOrder), fc.Args["where"].(*generated.ProgramMembershipWhereInput)) + return ec.Resolvers.Query().ProgramMemberships(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ProgramMembershipOrder), fc.Args["where"].(*generated.ProgramMembershipWhereInput)) }, nil, ec.marshalNProgramMembershipConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramMembershipConnection, @@ -144383,7 +144382,7 @@ func (ec *executionContext) _Query_remediations(ctx context.Context, field graph ec.fieldContext_Query_remediations, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Remediations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.RemediationOrder), fc.Args["where"].(*generated.RemediationWhereInput)) + return ec.Resolvers.Query().Remediations(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.RemediationOrder), fc.Args["where"].(*generated.RemediationWhereInput)) }, nil, ec.marshalNRemediationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRemediationConnection, @@ -144432,7 +144431,7 @@ func (ec *executionContext) _Query_reviews(ctx context.Context, field graphql.Co ec.fieldContext_Query_reviews, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Reviews(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ReviewOrder), fc.Args["where"].(*generated.ReviewWhereInput)) + return ec.Resolvers.Query().Reviews(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ReviewOrder), fc.Args["where"].(*generated.ReviewWhereInput)) }, nil, ec.marshalNReviewConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐReviewConnection, @@ -144481,7 +144480,7 @@ func (ec *executionContext) _Query_risks(ctx context.Context, field graphql.Coll ec.fieldContext_Query_risks, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Risks(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.RiskOrder), fc.Args["where"].(*generated.RiskWhereInput)) + return ec.Resolvers.Query().Risks(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.RiskOrder), fc.Args["where"].(*generated.RiskWhereInput)) }, nil, ec.marshalNRiskConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRiskConnection, @@ -144530,7 +144529,7 @@ func (ec *executionContext) _Query_scans(ctx context.Context, field graphql.Coll ec.fieldContext_Query_scans, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Scans(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ScanOrder), fc.Args["where"].(*generated.ScanWhereInput)) + return ec.Resolvers.Query().Scans(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ScanOrder), fc.Args["where"].(*generated.ScanWhereInput)) }, nil, ec.marshalNScanConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScanConnection, @@ -144579,7 +144578,7 @@ func (ec *executionContext) _Query_scheduledJobs(ctx context.Context, field grap ec.fieldContext_Query_scheduledJobs, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ScheduledJobs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ScheduledJobOrder), fc.Args["where"].(*generated.ScheduledJobWhereInput)) + return ec.Resolvers.Query().ScheduledJobs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ScheduledJobOrder), fc.Args["where"].(*generated.ScheduledJobWhereInput)) }, nil, ec.marshalNScheduledJobConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJobConnection, @@ -144628,7 +144627,7 @@ func (ec *executionContext) _Query_scheduledJobRuns(ctx context.Context, field g ec.fieldContext_Query_scheduledJobRuns, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ScheduledJobRuns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ScheduledJobRunOrder), fc.Args["where"].(*generated.ScheduledJobRunWhereInput)) + return ec.Resolvers.Query().ScheduledJobRuns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ScheduledJobRunOrder), fc.Args["where"].(*generated.ScheduledJobRunWhereInput)) }, nil, ec.marshalNScheduledJobRunConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJobRunConnection, @@ -144677,7 +144676,7 @@ func (ec *executionContext) _Query_standards(ctx context.Context, field graphql. ec.fieldContext_Query_standards, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Standards(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.StandardOrder), fc.Args["where"].(*generated.StandardWhereInput)) + return ec.Resolvers.Query().Standards(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.StandardOrder), fc.Args["where"].(*generated.StandardWhereInput)) }, nil, ec.marshalNStandardConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐStandardConnection, @@ -144726,7 +144725,7 @@ func (ec *executionContext) _Query_subcontrols(ctx context.Context, field graphq ec.fieldContext_Query_subcontrols, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Subcontrols(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.SubcontrolOrder), fc.Args["where"].(*generated.SubcontrolWhereInput)) + return ec.Resolvers.Query().Subcontrols(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.SubcontrolOrder), fc.Args["where"].(*generated.SubcontrolWhereInput)) }, nil, ec.marshalNSubcontrolConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubcontrolConnection, @@ -144775,7 +144774,7 @@ func (ec *executionContext) _Query_subprocessors(ctx context.Context, field grap ec.fieldContext_Query_subprocessors, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Subprocessors(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.SubprocessorOrder), fc.Args["where"].(*generated.SubprocessorWhereInput)) + return ec.Resolvers.Query().Subprocessors(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.SubprocessorOrder), fc.Args["where"].(*generated.SubprocessorWhereInput)) }, nil, ec.marshalNSubprocessorConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubprocessorConnection, @@ -144824,7 +144823,7 @@ func (ec *executionContext) _Query_subscribers(ctx context.Context, field graphq ec.fieldContext_Query_subscribers, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Subscribers(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.SubscriberOrder), fc.Args["where"].(*generated.SubscriberWhereInput)) + return ec.Resolvers.Query().Subscribers(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.SubscriberOrder), fc.Args["where"].(*generated.SubscriberWhereInput)) }, nil, ec.marshalNSubscriberConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubscriberConnection, @@ -144873,7 +144872,7 @@ func (ec *executionContext) _Query_tfaSettings(ctx context.Context, field graphq ec.fieldContext_Query_tfaSettings, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TfaSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TFASettingOrder), fc.Args["where"].(*generated.TFASettingWhereInput)) + return ec.Resolvers.Query().TfaSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TFASettingOrder), fc.Args["where"].(*generated.TFASettingWhereInput)) }, nil, ec.marshalNTFASettingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTFASettingConnection, @@ -144922,7 +144921,7 @@ func (ec *executionContext) _Query_tagDefinitions(ctx context.Context, field gra ec.fieldContext_Query_tagDefinitions, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TagDefinitions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TagDefinitionOrder), fc.Args["where"].(*generated.TagDefinitionWhereInput)) + return ec.Resolvers.Query().TagDefinitions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TagDefinitionOrder), fc.Args["where"].(*generated.TagDefinitionWhereInput)) }, nil, ec.marshalNTagDefinitionConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTagDefinitionConnection, @@ -144971,7 +144970,7 @@ func (ec *executionContext) _Query_tasks(ctx context.Context, field graphql.Coll ec.fieldContext_Query_tasks, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Tasks(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TaskOrder), fc.Args["where"].(*generated.TaskWhereInput)) + return ec.Resolvers.Query().Tasks(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TaskOrder), fc.Args["where"].(*generated.TaskWhereInput)) }, nil, ec.marshalNTaskConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTaskConnection, @@ -145020,7 +145019,7 @@ func (ec *executionContext) _Query_templates(ctx context.Context, field graphql. ec.fieldContext_Query_templates, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Templates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TemplateOrder), fc.Args["where"].(*generated.TemplateWhereInput)) + return ec.Resolvers.Query().Templates(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TemplateOrder), fc.Args["where"].(*generated.TemplateWhereInput)) }, nil, ec.marshalNTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTemplateConnection, @@ -145069,7 +145068,7 @@ func (ec *executionContext) _Query_trustCenters(ctx context.Context, field graph ec.fieldContext_Query_trustCenters, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenters(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterOrder), fc.Args["where"].(*generated.TrustCenterWhereInput)) + return ec.Resolvers.Query().TrustCenters(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterOrder), fc.Args["where"].(*generated.TrustCenterWhereInput)) }, nil, ec.marshalNTrustCenterConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterConnection, @@ -145118,7 +145117,7 @@ func (ec *executionContext) _Query_trustCenterCompliances(ctx context.Context, f ec.fieldContext_Query_trustCenterCompliances, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterCompliances(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterComplianceOrder), fc.Args["where"].(*generated.TrustCenterComplianceWhereInput)) + return ec.Resolvers.Query().TrustCenterCompliances(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterComplianceOrder), fc.Args["where"].(*generated.TrustCenterComplianceWhereInput)) }, nil, ec.marshalNTrustCenterComplianceConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterComplianceConnection, @@ -145167,7 +145166,7 @@ func (ec *executionContext) _Query_trustCenterDocs(ctx context.Context, field gr ec.fieldContext_Query_trustCenterDocs, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterDocs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterDocOrder), fc.Args["where"].(*generated.TrustCenterDocWhereInput)) + return ec.Resolvers.Query().TrustCenterDocs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterDocOrder), fc.Args["where"].(*generated.TrustCenterDocWhereInput)) }, nil, ec.marshalNTrustCenterDocConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterDocConnection, @@ -145216,7 +145215,7 @@ func (ec *executionContext) _Query_trustCenterEntities(ctx context.Context, fiel ec.fieldContext_Query_trustCenterEntities, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterEntities(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterEntityOrder), fc.Args["where"].(*generated.TrustCenterEntityWhereInput)) + return ec.Resolvers.Query().TrustCenterEntities(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterEntityOrder), fc.Args["where"].(*generated.TrustCenterEntityWhereInput)) }, nil, ec.marshalNTrustCenterEntityConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEntityConnection, @@ -145265,7 +145264,7 @@ func (ec *executionContext) _Query_trustCenterFAQs(ctx context.Context, field gr ec.fieldContext_Query_trustCenterFAQs, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterFAQs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterFAQOrder), fc.Args["where"].(*generated.TrustCenterFAQWhereInput)) + return ec.Resolvers.Query().TrustCenterFAQs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterFAQOrder), fc.Args["where"].(*generated.TrustCenterFAQWhereInput)) }, nil, ec.marshalNTrustCenterFAQConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterFAQConnection, @@ -145314,7 +145313,7 @@ func (ec *executionContext) _Query_trustCenterNdaRequests(ctx context.Context, f ec.fieldContext_Query_trustCenterNdaRequests, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterNdaRequests(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterNDARequestOrder), fc.Args["where"].(*generated.TrustCenterNDARequestWhereInput)) + return ec.Resolvers.Query().TrustCenterNdaRequests(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterNDARequestOrder), fc.Args["where"].(*generated.TrustCenterNDARequestWhereInput)) }, nil, ec.marshalNTrustCenterNDARequestConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterNDARequestConnection, @@ -145363,7 +145362,7 @@ func (ec *executionContext) _Query_trustCenterSettings(ctx context.Context, fiel ec.fieldContext_Query_trustCenterSettings, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterSettingOrder), fc.Args["where"].(*generated.TrustCenterSettingWhereInput)) + return ec.Resolvers.Query().TrustCenterSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterSettingOrder), fc.Args["where"].(*generated.TrustCenterSettingWhereInput)) }, nil, ec.marshalNTrustCenterSettingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSettingConnection, @@ -145412,7 +145411,7 @@ func (ec *executionContext) _Query_trustCenterSubprocessors(ctx context.Context, ec.fieldContext_Query_trustCenterSubprocessors, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterSubprocessors(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), fc.Args["where"].(*generated.TrustCenterSubprocessorWhereInput)) + return ec.Resolvers.Query().TrustCenterSubprocessors(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), fc.Args["where"].(*generated.TrustCenterSubprocessorWhereInput)) }, nil, ec.marshalNTrustCenterSubprocessorConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSubprocessorConnection, @@ -145461,7 +145460,7 @@ func (ec *executionContext) _Query_trustCenterWatermarkConfigs(ctx context.Conte ec.fieldContext_Query_trustCenterWatermarkConfigs, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterWatermarkConfigs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterWatermarkConfigOrder), fc.Args["where"].(*generated.TrustCenterWatermarkConfigWhereInput)) + return ec.Resolvers.Query().TrustCenterWatermarkConfigs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.TrustCenterWatermarkConfigOrder), fc.Args["where"].(*generated.TrustCenterWatermarkConfigWhereInput)) }, nil, ec.marshalNTrustCenterWatermarkConfigConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterWatermarkConfigConnection, @@ -145510,7 +145509,7 @@ func (ec *executionContext) _Query_users(ctx context.Context, field graphql.Coll ec.fieldContext_Query_users, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Users(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.UserOrder), fc.Args["where"].(*generated.UserWhereInput)) + return ec.Resolvers.Query().Users(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.UserOrder), fc.Args["where"].(*generated.UserWhereInput)) }, nil, ec.marshalNUserConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserConnection, @@ -145559,7 +145558,7 @@ func (ec *executionContext) _Query_userSettings(ctx context.Context, field graph ec.fieldContext_Query_userSettings, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().UserSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.UserSettingOrder), fc.Args["where"].(*generated.UserSettingWhereInput)) + return ec.Resolvers.Query().UserSettings(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.UserSettingOrder), fc.Args["where"].(*generated.UserSettingWhereInput)) }, nil, ec.marshalNUserSettingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserSettingConnection, @@ -145608,7 +145607,7 @@ func (ec *executionContext) _Query_vulnerabilities(ctx context.Context, field gr ec.fieldContext_Query_vulnerabilities, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Vulnerabilities(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.VulnerabilityOrder), fc.Args["where"].(*generated.VulnerabilityWhereInput)) + return ec.Resolvers.Query().Vulnerabilities(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.VulnerabilityOrder), fc.Args["where"].(*generated.VulnerabilityWhereInput)) }, nil, ec.marshalNVulnerabilityConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐVulnerabilityConnection, @@ -145657,7 +145656,7 @@ func (ec *executionContext) _Query_webauthns(ctx context.Context, field graphql. ec.fieldContext_Query_webauthns, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Webauthns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*generated.WebauthnOrder), fc.Args["where"].(*generated.WebauthnWhereInput)) + return ec.Resolvers.Query().Webauthns(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*generated.WebauthnOrder), fc.Args["where"].(*generated.WebauthnWhereInput)) }, nil, ec.marshalNWebauthnConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWebauthnConnection, @@ -145706,7 +145705,7 @@ func (ec *executionContext) _Query_workflowAssignments(ctx context.Context, fiel ec.fieldContext_Query_workflowAssignments, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowAssignments(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowAssignmentOrder), fc.Args["where"].(*generated.WorkflowAssignmentWhereInput)) + return ec.Resolvers.Query().WorkflowAssignments(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowAssignmentOrder), fc.Args["where"].(*generated.WorkflowAssignmentWhereInput)) }, nil, ec.marshalNWorkflowAssignmentConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentConnection, @@ -145755,7 +145754,7 @@ func (ec *executionContext) _Query_workflowAssignmentTargets(ctx context.Context ec.fieldContext_Query_workflowAssignmentTargets, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowAssignmentTargets(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), fc.Args["where"].(*generated.WorkflowAssignmentTargetWhereInput)) + return ec.Resolvers.Query().WorkflowAssignmentTargets(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), fc.Args["where"].(*generated.WorkflowAssignmentTargetWhereInput)) }, nil, ec.marshalNWorkflowAssignmentTargetConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentTargetConnection, @@ -145804,7 +145803,7 @@ func (ec *executionContext) _Query_workflowDefinitions(ctx context.Context, fiel ec.fieldContext_Query_workflowDefinitions, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowDefinitions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowDefinitionOrder), fc.Args["where"].(*generated.WorkflowDefinitionWhereInput)) + return ec.Resolvers.Query().WorkflowDefinitions(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowDefinitionOrder), fc.Args["where"].(*generated.WorkflowDefinitionWhereInput)) }, nil, ec.marshalNWorkflowDefinitionConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowDefinitionConnection, @@ -145853,7 +145852,7 @@ func (ec *executionContext) _Query_workflowEvents(ctx context.Context, field gra ec.fieldContext_Query_workflowEvents, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowEvents(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput)) + return ec.Resolvers.Query().WorkflowEvents(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -145902,7 +145901,7 @@ func (ec *executionContext) _Query_workflowInstances(ctx context.Context, field ec.fieldContext_Query_workflowInstances, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowInstances(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowInstanceOrder), fc.Args["where"].(*generated.WorkflowInstanceWhereInput)) + return ec.Resolvers.Query().WorkflowInstances(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowInstanceOrder), fc.Args["where"].(*generated.WorkflowInstanceWhereInput)) }, nil, ec.marshalNWorkflowInstanceConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceConnection, @@ -145951,7 +145950,7 @@ func (ec *executionContext) _Query_workflowObjectRefs(ctx context.Context, field ec.fieldContext_Query_workflowObjectRefs, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowObjectRefs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowObjectRefOrder), fc.Args["where"].(*generated.WorkflowObjectRefWhereInput)) + return ec.Resolvers.Query().WorkflowObjectRefs(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowObjectRefOrder), fc.Args["where"].(*generated.WorkflowObjectRefWhereInput)) }, nil, ec.marshalNWorkflowObjectRefConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowObjectRefConnection, @@ -146000,7 +145999,7 @@ func (ec *executionContext) _Query_actionPlan(ctx context.Context, field graphql ec.fieldContext_Query_actionPlan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ActionPlan(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().ActionPlan(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNActionPlan2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐActionPlan, @@ -146175,7 +146174,7 @@ func (ec *executionContext) _Query_apiToken(ctx context.Context, field graphql.C ec.fieldContext_Query_apiToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().APIToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().APIToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAPIToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAPIToken, @@ -146256,7 +146255,7 @@ func (ec *executionContext) _Query_assessment(ctx context.Context, field graphql ec.fieldContext_Query_assessment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Assessment(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Assessment(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAssessment2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessment, @@ -146343,7 +146342,7 @@ func (ec *executionContext) _Query_assessmentResponse(ctx context.Context, field ec.fieldContext_Query_assessmentResponse, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssessmentResponse(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().AssessmentResponse(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAssessmentResponse2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentResponse, @@ -146452,7 +146451,7 @@ func (ec *executionContext) _Query_asset(ctx context.Context, field graphql.Coll ec.fieldContext_Query_asset, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Asset(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Asset(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNAsset2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAsset, @@ -146633,7 +146632,7 @@ func (ec *executionContext) _Query_campaign(ctx context.Context, field graphql.C ec.fieldContext_Query_campaign, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Campaign(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Campaign(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCampaign2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaign, @@ -146796,7 +146795,7 @@ func (ec *executionContext) _Query_campaignTarget(ctx context.Context, field gra ec.fieldContext_Query_campaignTarget, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CampaignTarget(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().CampaignTarget(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCampaignTarget2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignTarget, @@ -146893,7 +146892,7 @@ func (ec *executionContext) _Query_contact(ctx context.Context, field graphql.Co ec.fieldContext_Query_contact, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Contact(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Contact(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNContact2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐContact, @@ -146974,7 +146973,7 @@ func (ec *executionContext) _Query_control(ctx context.Context, field graphql.Co ec.fieldContext_Query_control, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Control(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Control(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControl, @@ -147179,7 +147178,7 @@ func (ec *executionContext) _Query_controlDiff(ctx context.Context, field graphq ec.fieldContext_Query_controlDiff, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlDiff(ctx, fc.Args["input"].(model.ControlDiffInput)) + return ec.Resolvers.Query().ControlDiff(ctx, fc.Args["input"].(model.ControlDiffInput)) }, nil, ec.marshalNControlDiffPayload2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlDiffPayload, @@ -147229,7 +147228,7 @@ func (ec *executionContext) _Query_controlCategories(ctx context.Context, field field, ec.fieldContext_Query_controlCategories, func(ctx context.Context) (any, error) { - return ec.resolvers.Query().ControlCategories(ctx) + return ec.Resolvers.Query().ControlCategories(ctx) }, nil, ec.marshalOString2ᚕstringᚄ, @@ -147258,7 +147257,7 @@ func (ec *executionContext) _Query_controlSubcategories(ctx context.Context, fie field, ec.fieldContext_Query_controlSubcategories, func(ctx context.Context) (any, error) { - return ec.resolvers.Query().ControlSubcategories(ctx) + return ec.Resolvers.Query().ControlSubcategories(ctx) }, nil, ec.marshalOString2ᚕstringᚄ, @@ -147288,7 +147287,7 @@ func (ec *executionContext) _Query_controlCategoriesByFramework(ctx context.Cont ec.fieldContext_Query_controlCategoriesByFramework, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlCategoriesByFramework(ctx, fc.Args["orderBy"].([]*model.ControlCategoryOrder), fc.Args["where"].(*generated.ControlWhereInput)) + return ec.Resolvers.Query().ControlCategoriesByFramework(ctx, fc.Args["orderBy"].([]*model.ControlCategoryOrder), fc.Args["where"].(*generated.ControlWhereInput)) }, nil, ec.marshalOControlCategoryEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryEdgeᚄ, @@ -147333,7 +147332,7 @@ func (ec *executionContext) _Query_controlSubcategoriesByFramework(ctx context.C ec.fieldContext_Query_controlSubcategoriesByFramework, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlSubcategoriesByFramework(ctx, fc.Args["orderBy"].([]*model.ControlCategoryOrder), fc.Args["where"].(*generated.ControlWhereInput)) + return ec.Resolvers.Query().ControlSubcategoriesByFramework(ctx, fc.Args["orderBy"].([]*model.ControlCategoryOrder), fc.Args["where"].(*generated.ControlWhereInput)) }, nil, ec.marshalOControlCategoryEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlCategoryEdgeᚄ, @@ -147378,7 +147377,7 @@ func (ec *executionContext) _Query_controlsGroupByCategory(ctx context.Context, ec.fieldContext_Query_controlsGroupByCategory, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlsGroupByCategory(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlOrder), fc.Args["where"].(*generated.ControlWhereInput), fc.Args["category"].(*string)) + return ec.Resolvers.Query().ControlsGroupByCategory(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.ControlOrder), fc.Args["where"].(*generated.ControlWhereInput), fc.Args["category"].(*string)) }, nil, ec.marshalNControlGroupConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐControlGroupConnection, @@ -147423,7 +147422,7 @@ func (ec *executionContext) _Query_controlImplementation(ctx context.Context, fi ec.fieldContext_Query_controlImplementation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlImplementation(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().ControlImplementation(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNControlImplementation2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlImplementation, @@ -147512,7 +147511,7 @@ func (ec *executionContext) _Query_controlObjective(ctx context.Context, field g ec.fieldContext_Query_controlObjective, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlObjective(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().ControlObjective(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNControlObjective2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlObjective, @@ -147621,7 +147620,7 @@ func (ec *executionContext) _Query_customDomain(ctx context.Context, field graph ec.fieldContext_Query_customDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CustomDomain(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().CustomDomain(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCustomDomain2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomDomain, @@ -147698,7 +147697,7 @@ func (ec *executionContext) _Query_customTypeEnum(ctx context.Context, field gra ec.fieldContext_Query_customTypeEnum, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CustomTypeEnum(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().CustomTypeEnum(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNCustomTypeEnum2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomTypeEnum, @@ -147793,7 +147792,7 @@ func (ec *executionContext) _Query_directoryAccount(ctx context.Context, field g ec.fieldContext_Query_directoryAccount, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryAccount(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().DirectoryAccount(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectoryAccount2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryAccount, @@ -147938,7 +147937,7 @@ func (ec *executionContext) _Query_directoryGroup(ctx context.Context, field gra ec.fieldContext_Query_directoryGroup, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryGroup(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().DirectoryGroup(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectoryGroup2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryGroup, @@ -148055,7 +148054,7 @@ func (ec *executionContext) _Query_directoryMembership(ctx context.Context, fiel ec.fieldContext_Query_directoryMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().DirectoryMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectoryMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryMembership, @@ -148164,7 +148163,7 @@ func (ec *executionContext) _Query_directorySyncRun(ctx context.Context, field g ec.fieldContext_Query_directorySyncRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectorySyncRun(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().DirectorySyncRun(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDirectorySyncRun2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectorySyncRun, @@ -148267,7 +148266,7 @@ func (ec *executionContext) _Query_discussion(ctx context.Context, field graphql ec.fieldContext_Query_discussion, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Discussion(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Discussion(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDiscussion2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDiscussion, @@ -148340,7 +148339,7 @@ func (ec *executionContext) _Query_dnsVerification(ctx context.Context, field gr ec.fieldContext_Query_dnsVerification, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DNSVerification(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().DNSVerification(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDNSVerification2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDNSVerification, @@ -148419,7 +148418,7 @@ func (ec *executionContext) _Query_documentData(ctx context.Context, field graph ec.fieldContext_Query_documentData, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DocumentData(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().DocumentData(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNDocumentData2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDocumentData, @@ -148500,7 +148499,7 @@ func (ec *executionContext) _Query_emailBranding(ctx context.Context, field grap ec.fieldContext_Query_emailBranding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailBranding(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().EmailBranding(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEmailBranding2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailBranding, @@ -148593,7 +148592,7 @@ func (ec *executionContext) _Query_emailTemplate(ctx context.Context, field grap ec.fieldContext_Query_emailTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailTemplate(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().EmailTemplate(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEmailTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailTemplate, @@ -148704,7 +148703,7 @@ func (ec *executionContext) _Query_entity(ctx context.Context, field graphql.Col ec.fieldContext_Query_entity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Entity(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Entity(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEntity2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntity, @@ -148923,7 +148922,7 @@ func (ec *executionContext) _Query_entityType(ctx context.Context, field graphql ec.fieldContext_Query_entityType, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EntityType(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().EntityType(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEntityType2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityType, @@ -148992,7 +148991,7 @@ func (ec *executionContext) _Query_event(ctx context.Context, field graphql.Coll ec.fieldContext_Query_event, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Event(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Event(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEvent2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvent, @@ -149079,7 +149078,7 @@ func (ec *executionContext) _Query_evidence(ctx context.Context, field graphql.C ec.fieldContext_Query_evidence, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Evidence(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Evidence(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNEvidence2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvidence, @@ -149202,7 +149201,7 @@ func (ec *executionContext) _Query_export(ctx context.Context, field graphql.Col ec.fieldContext_Query_export, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Export(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Export(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNExport2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐExport, @@ -149277,7 +149276,7 @@ func (ec *executionContext) _Query_file(ctx context.Context, field graphql.Colle ec.fieldContext_Query_file, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().File(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().File(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNFile2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFile, @@ -149422,7 +149421,7 @@ func (ec *executionContext) _Query_finding(ctx context.Context, field graphql.Co ec.fieldContext_Query_finding, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Finding(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Finding(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNFinding2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFinding, @@ -149619,7 +149618,7 @@ func (ec *executionContext) _Query_findingControl(ctx context.Context, field gra ec.fieldContext_Query_findingControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().FindingControl(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().FindingControl(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNFindingControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingControl, @@ -149696,7 +149695,7 @@ func (ec *executionContext) _Query_group(ctx context.Context, field graphql.Coll ec.fieldContext_Query_group, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Group(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Group(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNGroup2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroup, @@ -149873,7 +149872,7 @@ func (ec *executionContext) _Query_groupMembership(ctx context.Context, field gr ec.fieldContext_Query_groupMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().GroupMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNGroupMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupMembership, @@ -149938,7 +149937,7 @@ func (ec *executionContext) _Query_groupSetting(ctx context.Context, field graph ec.fieldContext_Query_groupSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupSetting(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().GroupSetting(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNGroupSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupSetting, @@ -150003,7 +150002,7 @@ func (ec *executionContext) _Query_hush(ctx context.Context, field graphql.Colle ec.fieldContext_Query_hush, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Hush(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Hush(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNHush2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐHush, @@ -150088,7 +150087,7 @@ func (ec *executionContext) _Query_identityHolder(ctx context.Context, field gra ec.fieldContext_Query_identityHolder, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().IdentityHolder(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().IdentityHolder(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNIdentityHolder2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIdentityHolder, @@ -150253,7 +150252,7 @@ func (ec *executionContext) _Query_integration(ctx context.Context, field graphq ec.fieldContext_Query_integration, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Integration(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Integration(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNIntegration2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIntegration, @@ -150376,7 +150375,7 @@ func (ec *executionContext) _Query_internalPolicy(ctx context.Context, field gra ec.fieldContext_Query_internalPolicy, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().InternalPolicy(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().InternalPolicy(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNInternalPolicy2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInternalPolicy, @@ -150543,7 +150542,7 @@ func (ec *executionContext) _Query_invite(ctx context.Context, field graphql.Col ec.fieldContext_Query_invite, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Invite(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Invite(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNInvite2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInvite, @@ -150618,7 +150617,7 @@ func (ec *executionContext) _Query_jobResult(ctx context.Context, field graphql. ec.fieldContext_Query_jobResult, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobResult(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().JobResult(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobResult2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobResult, @@ -150693,7 +150692,7 @@ func (ec *executionContext) _Query_jobRunner(ctx context.Context, field graphql. ec.fieldContext_Query_jobRunner, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobRunner(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().JobRunner(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobRunner2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunner, @@ -150774,7 +150773,7 @@ func (ec *executionContext) _Query_jobRunnerRegistrationToken(ctx context.Contex ec.fieldContext_Query_jobRunnerRegistrationToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobRunnerRegistrationToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().JobRunnerRegistrationToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobRunnerRegistrationToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerRegistrationToken, @@ -150843,7 +150842,7 @@ func (ec *executionContext) _Query_jobRunnerToken(ctx context.Context, field gra ec.fieldContext_Query_jobRunnerToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobRunnerToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().JobRunnerToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobRunnerToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerToken, @@ -150918,7 +150917,7 @@ func (ec *executionContext) _Query_jobTemplate(ctx context.Context, field graphq ec.fieldContext_Query_jobTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobTemplate(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().JobTemplate(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNJobTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobTemplate, @@ -150999,7 +150998,7 @@ func (ec *executionContext) _Query_mappableDomain(ctx context.Context, field gra ec.fieldContext_Query_mappableDomain, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().MappableDomain(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().MappableDomain(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNMappableDomain2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappableDomain, @@ -151060,7 +151059,7 @@ func (ec *executionContext) _Query_mappedControl(ctx context.Context, field grap ec.fieldContext_Query_mappedControl, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().MappedControl(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().MappedControl(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNMappedControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappedControl, @@ -151145,7 +151144,7 @@ func (ec *executionContext) _Query_narrative(ctx context.Context, field graphql. ec.fieldContext_Query_narrative, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Narrative(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Narrative(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNarrative2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNarrative, @@ -151232,7 +151231,7 @@ func (ec *executionContext) _Query_note(ctx context.Context, field graphql.Colle ec.fieldContext_Query_note, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Note(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Note(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNote2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNote, @@ -151327,7 +151326,7 @@ func (ec *executionContext) _Query_notificationPreference(ctx context.Context, f ec.fieldContext_Query_notificationPreference, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NotificationPreference(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().NotificationPreference(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNotificationPreference2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationPreference, @@ -151430,7 +151429,7 @@ func (ec *executionContext) _Query_notificationTemplate(ctx context.Context, fie ec.fieldContext_Query_notificationTemplate, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NotificationTemplate(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().NotificationTemplate(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNNotificationTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationTemplate, @@ -151539,7 +151538,7 @@ func (ec *executionContext) _Query_organization(ctx context.Context, field graph ec.fieldContext_Query_organization, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Organization(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Organization(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNOrganization2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganization, @@ -151812,7 +151811,7 @@ func (ec *executionContext) _Query_organizationSetting(ctx context.Context, fiel ec.fieldContext_Query_organizationSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrganizationSetting(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().OrganizationSetting(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNOrganizationSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationSetting, @@ -151921,7 +151920,7 @@ func (ec *executionContext) _Query_orgMembership(ctx context.Context, field grap ec.fieldContext_Query_orgMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrgMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().OrgMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNOrgMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgMembership, @@ -151986,7 +151985,7 @@ func (ec *executionContext) _Query_orgSubscription(ctx context.Context, field gr ec.fieldContext_Query_orgSubscription, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrgSubscription(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().OrgSubscription(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNOrgSubscription2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgSubscription, @@ -152061,7 +152060,7 @@ func (ec *executionContext) _Query_personalAccessToken(ctx context.Context, fiel ec.fieldContext_Query_personalAccessToken, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().PersonalAccessToken(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().PersonalAccessToken(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNPersonalAccessToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPersonalAccessToken, @@ -152144,7 +152143,7 @@ func (ec *executionContext) _Query_platform(ctx context.Context, field graphql.C ec.fieldContext_Query_platform, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Platform(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Platform(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNPlatform2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPlatform, @@ -152391,7 +152390,7 @@ func (ec *executionContext) _Query_procedure(ctx context.Context, field graphql. ec.fieldContext_Query_procedure, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Procedure(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Procedure(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNProcedure2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProcedure, @@ -152554,7 +152553,7 @@ func (ec *executionContext) _Query_program(ctx context.Context, field graphql.Co ec.fieldContext_Query_program, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Program(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Program(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNProgram2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgram, @@ -152683,7 +152682,7 @@ func (ec *executionContext) _Query_programMembership(ctx context.Context, field ec.fieldContext_Query_programMembership, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ProgramMembership(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().ProgramMembership(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNProgramMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramMembership, @@ -152746,7 +152745,7 @@ func (ec *executionContext) _Query_remediation(ctx context.Context, field graphq ec.fieldContext_Query_remediation, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Remediation(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Remediation(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNRemediation2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRemediation, @@ -152899,7 +152898,7 @@ func (ec *executionContext) _Query_review(ctx context.Context, field graphql.Col ec.fieldContext_Query_review, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Review(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Review(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNReview2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐReview, @@ -153048,7 +153047,7 @@ func (ec *executionContext) _Query_risk(ctx context.Context, field graphql.Colle ec.fieldContext_Query_risk, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Risk(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Risk(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNRisk2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRisk, @@ -153195,7 +153194,7 @@ func (ec *executionContext) _Query_scan(ctx context.Context, field graphql.Colle ec.fieldContext_Query_scan, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Scan(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Scan(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNScan2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScan, @@ -153342,7 +153341,7 @@ func (ec *executionContext) _Query_scheduledJob(ctx context.Context, field graph ec.fieldContext_Query_scheduledJob, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ScheduledJob(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().ScheduledJob(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNScheduledJob2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJob, @@ -153419,7 +153418,7 @@ func (ec *executionContext) _Query_scheduledJobRun(ctx context.Context, field gr ec.fieldContext_Query_scheduledJobRun, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ScheduledJobRun(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().ScheduledJobRun(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNScheduledJobRun2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJobRun, @@ -153490,7 +153489,7 @@ func (ec *executionContext) _Query_actionPlanSearch(ctx context.Context, field g ec.fieldContext_Query_actionPlanSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ActionPlanSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ActionPlanSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOActionPlanConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐActionPlanConnection, @@ -153539,7 +153538,7 @@ func (ec *executionContext) _Query_assessmentSearch(ctx context.Context, field g ec.fieldContext_Query_assessmentSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssessmentSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().AssessmentSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOAssessmentConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentConnection, @@ -153588,7 +153587,7 @@ func (ec *executionContext) _Query_assessmentResponseSearch(ctx context.Context, ec.fieldContext_Query_assessmentResponseSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssessmentResponseSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().AssessmentResponseSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOAssessmentResponseConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentResponseConnection, @@ -153637,7 +153636,7 @@ func (ec *executionContext) _Query_assetSearch(ctx context.Context, field graphq ec.fieldContext_Query_assetSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssetSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().AssetSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOAssetConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssetConnection, @@ -153686,7 +153685,7 @@ func (ec *executionContext) _Query_campaignSearch(ctx context.Context, field gra ec.fieldContext_Query_campaignSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CampaignSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().CampaignSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOCampaignConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignConnection, @@ -153735,7 +153734,7 @@ func (ec *executionContext) _Query_campaignTargetSearch(ctx context.Context, fie ec.fieldContext_Query_campaignTargetSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CampaignTargetSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().CampaignTargetSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOCampaignTargetConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignTargetConnection, @@ -153784,7 +153783,7 @@ func (ec *executionContext) _Query_contactSearch(ctx context.Context, field grap ec.fieldContext_Query_contactSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ContactSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ContactSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOContactConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐContactConnection, @@ -153833,7 +153832,7 @@ func (ec *executionContext) _Query_controlSearch(ctx context.Context, field grap ec.fieldContext_Query_controlSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ControlSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOControlConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlConnection, @@ -153882,7 +153881,7 @@ func (ec *executionContext) _Query_controlObjectiveSearch(ctx context.Context, f ec.fieldContext_Query_controlObjectiveSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlObjectiveSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ControlObjectiveSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOControlObjectiveConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlObjectiveConnection, @@ -153931,7 +153930,7 @@ func (ec *executionContext) _Query_customTypeEnumSearch(ctx context.Context, fie ec.fieldContext_Query_customTypeEnumSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CustomTypeEnumSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().CustomTypeEnumSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOCustomTypeEnumConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomTypeEnumConnection, @@ -153980,7 +153979,7 @@ func (ec *executionContext) _Query_emailBrandingSearch(ctx context.Context, fiel ec.fieldContext_Query_emailBrandingSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailBrandingSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().EmailBrandingSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOEmailBrandingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailBrandingConnection, @@ -154029,7 +154028,7 @@ func (ec *executionContext) _Query_emailTemplateSearch(ctx context.Context, fiel ec.fieldContext_Query_emailTemplateSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailTemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().EmailTemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOEmailTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailTemplateConnection, @@ -154078,7 +154077,7 @@ func (ec *executionContext) _Query_entitySearch(ctx context.Context, field graph ec.fieldContext_Query_entitySearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EntitySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().EntitySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOEntityConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityConnection, @@ -154127,7 +154126,7 @@ func (ec *executionContext) _Query_evidenceSearch(ctx context.Context, field gra ec.fieldContext_Query_evidenceSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EvidenceSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().EvidenceSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOEvidenceConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvidenceConnection, @@ -154176,7 +154175,7 @@ func (ec *executionContext) _Query_findingSearch(ctx context.Context, field grap ec.fieldContext_Query_findingSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().FindingSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().FindingSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOFindingConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingConnection, @@ -154225,7 +154224,7 @@ func (ec *executionContext) _Query_groupSearch(ctx context.Context, field graphq ec.fieldContext_Query_groupSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().GroupSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOGroupConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupConnection, @@ -154274,7 +154273,7 @@ func (ec *executionContext) _Query_identityHolderSearch(ctx context.Context, fie ec.fieldContext_Query_identityHolderSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().IdentityHolderSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().IdentityHolderSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOIdentityHolderConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIdentityHolderConnection, @@ -154323,7 +154322,7 @@ func (ec *executionContext) _Query_integrationSearch(ctx context.Context, field ec.fieldContext_Query_integrationSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().IntegrationSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().IntegrationSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOIntegrationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIntegrationConnection, @@ -154372,7 +154371,7 @@ func (ec *executionContext) _Query_internalPolicySearch(ctx context.Context, fie ec.fieldContext_Query_internalPolicySearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().InternalPolicySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().InternalPolicySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOInternalPolicyConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInternalPolicyConnection, @@ -154421,7 +154420,7 @@ func (ec *executionContext) _Query_inviteSearch(ctx context.Context, field graph ec.fieldContext_Query_inviteSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().InviteSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().InviteSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOInviteConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInviteConnection, @@ -154470,7 +154469,7 @@ func (ec *executionContext) _Query_jobRunnerSearch(ctx context.Context, field gr ec.fieldContext_Query_jobRunnerSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobRunnerSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().JobRunnerSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOJobRunnerConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerConnection, @@ -154519,7 +154518,7 @@ func (ec *executionContext) _Query_jobTemplateSearch(ctx context.Context, field ec.fieldContext_Query_jobTemplateSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobTemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().JobTemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOJobTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobTemplateConnection, @@ -154568,7 +154567,7 @@ func (ec *executionContext) _Query_narrativeSearch(ctx context.Context, field gr ec.fieldContext_Query_narrativeSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NarrativeSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().NarrativeSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalONarrativeConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNarrativeConnection, @@ -154617,7 +154616,7 @@ func (ec *executionContext) _Query_notificationTemplateSearch(ctx context.Contex ec.fieldContext_Query_notificationTemplateSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NotificationTemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().NotificationTemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalONotificationTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationTemplateConnection, @@ -154666,7 +154665,7 @@ func (ec *executionContext) _Query_organizationSearch(ctx context.Context, field ec.fieldContext_Query_organizationSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrganizationSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().OrganizationSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOOrganizationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationConnection, @@ -154715,7 +154714,7 @@ func (ec *executionContext) _Query_platformSearch(ctx context.Context, field gra ec.fieldContext_Query_platformSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().PlatformSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().PlatformSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOPlatformConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPlatformConnection, @@ -154764,7 +154763,7 @@ func (ec *executionContext) _Query_procedureSearch(ctx context.Context, field gr ec.fieldContext_Query_procedureSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ProcedureSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ProcedureSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOProcedureConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProcedureConnection, @@ -154813,7 +154812,7 @@ func (ec *executionContext) _Query_programSearch(ctx context.Context, field grap ec.fieldContext_Query_programSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ProgramSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ProgramSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOProgramConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramConnection, @@ -154862,7 +154861,7 @@ func (ec *executionContext) _Query_remediationSearch(ctx context.Context, field ec.fieldContext_Query_remediationSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().RemediationSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().RemediationSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalORemediationConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRemediationConnection, @@ -154911,7 +154910,7 @@ func (ec *executionContext) _Query_reviewSearch(ctx context.Context, field graph ec.fieldContext_Query_reviewSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ReviewSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ReviewSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOReviewConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐReviewConnection, @@ -154960,7 +154959,7 @@ func (ec *executionContext) _Query_riskSearch(ctx context.Context, field graphql ec.fieldContext_Query_riskSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().RiskSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().RiskSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalORiskConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRiskConnection, @@ -155009,7 +155008,7 @@ func (ec *executionContext) _Query_scanSearch(ctx context.Context, field graphql ec.fieldContext_Query_scanSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ScanSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().ScanSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOScanConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScanConnection, @@ -155058,7 +155057,7 @@ func (ec *executionContext) _Query_standardSearch(ctx context.Context, field gra ec.fieldContext_Query_standardSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().StandardSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().StandardSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOStandardConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐStandardConnection, @@ -155107,7 +155106,7 @@ func (ec *executionContext) _Query_subcontrolSearch(ctx context.Context, field g ec.fieldContext_Query_subcontrolSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().SubcontrolSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().SubcontrolSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOSubcontrolConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubcontrolConnection, @@ -155156,7 +155155,7 @@ func (ec *executionContext) _Query_subprocessorSearch(ctx context.Context, field ec.fieldContext_Query_subprocessorSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().SubprocessorSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().SubprocessorSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOSubprocessorConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubprocessorConnection, @@ -155205,7 +155204,7 @@ func (ec *executionContext) _Query_subscriberSearch(ctx context.Context, field g ec.fieldContext_Query_subscriberSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().SubscriberSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().SubscriberSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOSubscriberConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubscriberConnection, @@ -155254,7 +155253,7 @@ func (ec *executionContext) _Query_tagDefinitionSearch(ctx context.Context, fiel ec.fieldContext_Query_tagDefinitionSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TagDefinitionSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().TagDefinitionSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOTagDefinitionConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTagDefinitionConnection, @@ -155303,7 +155302,7 @@ func (ec *executionContext) _Query_taskSearch(ctx context.Context, field graphql ec.fieldContext_Query_taskSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TaskSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().TaskSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOTaskConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTaskConnection, @@ -155352,7 +155351,7 @@ func (ec *executionContext) _Query_templateSearch(ctx context.Context, field gra ec.fieldContext_Query_templateSearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().TemplateSearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOTemplateConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTemplateConnection, @@ -155401,7 +155400,7 @@ func (ec *executionContext) _Query_trustCenterEntitySearch(ctx context.Context, ec.fieldContext_Query_trustCenterEntitySearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterEntitySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().TrustCenterEntitySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOTrustCenterEntityConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEntityConnection, @@ -155450,7 +155449,7 @@ func (ec *executionContext) _Query_vulnerabilitySearch(ctx context.Context, fiel ec.fieldContext_Query_vulnerabilitySearch, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().VulnerabilitySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().VulnerabilitySearch(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOVulnerabilityConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐVulnerabilityConnection, @@ -155499,7 +155498,7 @@ func (ec *executionContext) _Query_search(ctx context.Context, field graphql.Col ec.fieldContext_Query_search, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Search(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) + return ec.Resolvers.Query().Search(ctx, fc.Args["query"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int)) }, nil, ec.marshalOSearchResults2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐSearchResults, @@ -155630,7 +155629,7 @@ func (ec *executionContext) _Query_standard(ctx context.Context, field graphql.C ec.fieldContext_Query_standard, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Standard(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Standard(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNStandard2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐStandard, @@ -155735,7 +155734,7 @@ func (ec *executionContext) _Query_subcontrol(ctx context.Context, field graphql ec.fieldContext_Query_subcontrol, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Subcontrol(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Subcontrol(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNSubcontrol2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubcontrol, @@ -155906,7 +155905,7 @@ func (ec *executionContext) _Query_subprocessor(ctx context.Context, field graph ec.fieldContext_Query_subprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Subprocessor(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Subprocessor(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNSubprocessor2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubprocessor, @@ -155985,7 +155984,7 @@ func (ec *executionContext) _Query_subscriber(ctx context.Context, field graphql ec.fieldContext_Query_subscriber, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Subscriber(ctx, fc.Args["email"].(string)) + return ec.Resolvers.Query().Subscriber(ctx, fc.Args["email"].(string)) }, nil, ec.marshalNSubscriber2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubscriber, @@ -156060,7 +156059,7 @@ func (ec *executionContext) _Query_tagDefinition(ctx context.Context, field grap ec.fieldContext_Query_tagDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TagDefinition(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TagDefinition(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTagDefinition2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTagDefinition, @@ -156133,7 +156132,7 @@ func (ec *executionContext) _Query_task(ctx context.Context, field graphql.Colle ec.fieldContext_Query_task, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Task(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Task(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTask2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTask, @@ -156276,7 +156275,7 @@ func (ec *executionContext) _Query_template(ctx context.Context, field graphql.C ec.fieldContext_Query_template, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Template(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Template(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTemplate, @@ -156379,7 +156378,7 @@ func (ec *executionContext) _Query_tfaSetting(ctx context.Context, field graphql ec.fieldContext_Query_tfaSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TfaSetting(ctx, fc.Args["id"].(*string)) + return ec.Resolvers.Query().TfaSetting(ctx, fc.Args["id"].(*string)) }, nil, ec.marshalNTFASetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTFASetting, @@ -156438,7 +156437,7 @@ func (ec *executionContext) _Query_trustCenter(ctx context.Context, field graphq ec.fieldContext_Query_trustCenter, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenter(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenter(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenter2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenter, @@ -156543,7 +156542,7 @@ func (ec *executionContext) _Query_trustCenterCompliance(ctx context.Context, fi ec.fieldContext_Query_trustCenterCompliance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterCompliance(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterCompliance(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterCompliance2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterCompliance, @@ -156610,7 +156609,7 @@ func (ec *executionContext) _Query_trustCenterDoc(ctx context.Context, field gra ec.fieldContext_Query_trustCenterDoc, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterDoc(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterDoc(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterDoc2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterDoc, @@ -156699,7 +156698,7 @@ func (ec *executionContext) _Query_trustCenterEntity(ctx context.Context, field ec.fieldContext_Query_trustCenterEntity, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterEntity(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterEntity(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterEntity2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEntity, @@ -156772,7 +156771,7 @@ func (ec *executionContext) _Query_trustCenterFAQ(ctx context.Context, field gra ec.fieldContext_Query_trustCenterFAQ, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterFaq(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterFaq(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterFAQ2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterFAQ, @@ -156847,7 +156846,7 @@ func (ec *executionContext) _Query_trustCenterNDARequest(ctx context.Context, fi ec.fieldContext_Query_trustCenterNDARequest, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterNDARequest(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterNDARequest(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterNDARequest2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterNDARequest, @@ -156940,7 +156939,7 @@ func (ec *executionContext) _Query_trustCenterSetting(ctx context.Context, field ec.fieldContext_Query_trustCenterSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterSetting(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterSetting(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSetting, @@ -157047,7 +157046,7 @@ func (ec *executionContext) _Query_trustCenterSubprocessor(ctx context.Context, ec.fieldContext_Query_trustCenterSubprocessor, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterSubprocessor(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterSubprocessor(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterSubprocessor2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSubprocessor, @@ -157120,7 +157119,7 @@ func (ec *executionContext) _Query_trustCenterWatermarkConfig(ctx context.Contex ec.fieldContext_Query_trustCenterWatermarkConfig, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterWatermarkConfig(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().TrustCenterWatermarkConfig(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNTrustCenterWatermarkConfig2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterWatermarkConfig, @@ -157203,7 +157202,7 @@ func (ec *executionContext) _Query_user(ctx context.Context, field graphql.Colle ec.fieldContext_Query_user, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().User(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().User(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNUser2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUser, @@ -157335,7 +157334,7 @@ func (ec *executionContext) _Query_self(ctx context.Context, field graphql.Colle field, ec.fieldContext_Query_self, func(ctx context.Context) (any, error) { - return ec.resolvers.Query().Self(ctx) + return ec.Resolvers.Query().Self(ctx) }, nil, ec.marshalNUser2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUser, @@ -157457,7 +157456,7 @@ func (ec *executionContext) _Query_userSetting(ctx context.Context, field graphq ec.fieldContext_Query_userSetting, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().UserSetting(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().UserSetting(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNUserSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserSetting, @@ -157538,7 +157537,7 @@ func (ec *executionContext) _Query_vulnerability(ctx context.Context, field grap ec.fieldContext_Query_vulnerability, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Vulnerability(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Vulnerability(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNVulnerability2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐVulnerability, @@ -157711,7 +157710,7 @@ func (ec *executionContext) _Query_vulnerabilitySummary(ctx context.Context, fie ec.fieldContext_Query_vulnerabilitySummary, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().VulnerabilitySummary(ctx, fc.Args["where"].(*generated.VulnerabilityWhereInput)) + return ec.Resolvers.Query().VulnerabilitySummary(ctx, fc.Args["where"].(*generated.VulnerabilityWhereInput)) }, nil, ec.marshalNVulnerabilitySummary2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilitySummary, @@ -157762,7 +157761,7 @@ func (ec *executionContext) _Query_workflowAssignment(ctx context.Context, field ec.fieldContext_Query_workflowAssignment, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowAssignment(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().WorkflowAssignment(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowAssignment2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignment, @@ -157861,7 +157860,7 @@ func (ec *executionContext) _Query_myWorkflowAssignments(ctx context.Context, fi ec.fieldContext_Query_myWorkflowAssignments, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().MyWorkflowAssignments(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowAssignmentOrder), fc.Args["where"].(*generated.WorkflowAssignmentWhereInput)) + return ec.Resolvers.Query().MyWorkflowAssignments(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowAssignmentOrder), fc.Args["where"].(*generated.WorkflowAssignmentWhereInput)) }, nil, ec.marshalNWorkflowAssignmentConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentConnection, @@ -157910,7 +157909,7 @@ func (ec *executionContext) _Query_workflowAssignmentTarget(ctx context.Context, ec.fieldContext_Query_workflowAssignmentTarget, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowAssignmentTarget(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().WorkflowAssignmentTarget(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowAssignmentTarget2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentTarget, @@ -157987,7 +157986,7 @@ func (ec *executionContext) _Query_workflowDefinition(ctx context.Context, field ec.fieldContext_Query_workflowDefinition, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowDefinition(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().WorkflowDefinition(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowDefinition2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowDefinition, @@ -158085,7 +158084,7 @@ func (ec *executionContext) _Query_workflowMetadata(ctx context.Context, field g field, ec.fieldContext_Query_workflowMetadata, func(ctx context.Context) (any, error) { - return ec.resolvers.Query().WorkflowMetadata(ctx) + return ec.Resolvers.Query().WorkflowMetadata(ctx) }, nil, ec.marshalNWorkflowMetadata2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowMetadata, @@ -158119,7 +158118,7 @@ func (ec *executionContext) _Query_workflowEvent(ctx context.Context, field grap ec.fieldContext_Query_workflowEvent, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowEvent(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().WorkflowEvent(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowEvent2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEvent, @@ -158188,7 +158187,7 @@ func (ec *executionContext) _Query_workflowEventTimeline(ctx context.Context, fi ec.fieldContext_Query_workflowEventTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowEventTimeline(ctx, fc.Args["workflowInstanceID"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.Query().WorkflowEventTimeline(ctx, fc.Args["workflowInstanceID"].(string), fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -158237,7 +158236,7 @@ func (ec *executionContext) _Query_workflowInstance(ctx context.Context, field g ec.fieldContext_Query_workflowInstance, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowInstance(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().WorkflowInstance(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowInstance2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstance, @@ -158364,7 +158363,7 @@ func (ec *executionContext) _Query_workflowObjectRef(ctx context.Context, field ec.fieldContext_Query_workflowObjectRef, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowObjectRef(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().WorkflowObjectRef(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowObjectRef2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowObjectRef, @@ -158487,7 +158486,7 @@ func (ec *executionContext) _Query_workflowProposal(ctx context.Context, field g ec.fieldContext_Query_workflowProposal, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowProposal(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().WorkflowProposal(ctx, fc.Args["id"].(string)) }, nil, ec.marshalNWorkflowProposal2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowProposal, @@ -158566,7 +158565,7 @@ func (ec *executionContext) _Query_workflowProposalsForObject(ctx context.Contex ec.fieldContext_Query_workflowProposalsForObject, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowProposalsForObject(ctx, fc.Args["objectType"].(string), fc.Args["objectID"].(string), fc.Args["includeStates"].([]enums.WorkflowProposalState)) + return ec.Resolvers.Query().WorkflowProposalsForObject(ctx, fc.Args["objectType"].(string), fc.Args["objectID"].(string), fc.Args["includeStates"].([]enums.WorkflowProposalState)) }, nil, ec.marshalNWorkflowProposal2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowProposalᚄ, @@ -158645,7 +158644,7 @@ func (ec *executionContext) _Query___type(ctx context.Context, field graphql.Col ec.fieldContext_Query___type, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.introspectType(fc.Args["name"].(string)) + return ec.IntrospectType(fc.Args["name"].(string)) }, nil, ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType, @@ -158709,7 +158708,7 @@ func (ec *executionContext) _Query___schema(ctx context.Context, field graphql.C field, ec.fieldContext_Query___schema, func(ctx context.Context) (any, error) { - return ec.introspectSchema() + return ec.IntrospectSchema() }, nil, ec.marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐSchema, @@ -159024,11 +159023,11 @@ func (ec *executionContext) _Remediation_internalNotes(ctx context.Context, fiel var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -159071,11 +159070,11 @@ func (ec *executionContext) _Remediation_systemInternalID(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -161599,11 +161598,11 @@ func (ec *executionContext) _Review_internalNotes(ctx context.Context, field gra var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -161646,11 +161645,11 @@ func (ec *executionContext) _Review_systemInternalID(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -172269,11 +172268,11 @@ func (ec *executionContext) _Standard_internalNotes(ctx context.Context, field g var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -172316,11 +172315,11 @@ func (ec *executionContext) _Standard_systemInternalID(ctx context.Context, fiel var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -172624,11 +172623,11 @@ func (ec *executionContext) _Standard_isPublic(ctx context.Context, field graphq var zeroVal bool return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal bool return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -172671,11 +172670,11 @@ func (ec *executionContext) _Standard_freeToUse(ctx context.Context, field graph var zeroVal bool return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal bool return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -173823,11 +173822,11 @@ func (ec *executionContext) _Subcontrol_title(ctx context.Context, field graphql var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -173870,11 +173869,11 @@ func (ec *executionContext) _Subcontrol_description(ctx context.Context, field g var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -174091,11 +174090,11 @@ func (ec *executionContext) _Subcontrol_source(ctx context.Context, field graphq var zeroVal enums.ControlSource return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal enums.ControlSource return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -174138,11 +174137,11 @@ func (ec *executionContext) _Subcontrol_referenceFramework(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -174185,11 +174184,11 @@ func (ec *executionContext) _Subcontrol_referenceFrameworkRevision(ctx context.C var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -174232,11 +174231,11 @@ func (ec *executionContext) _Subcontrol_category(ctx context.Context, field grap var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -174279,11 +174278,11 @@ func (ec *executionContext) _Subcontrol_categoryID(ctx context.Context, field gr var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -174326,11 +174325,11 @@ func (ec *executionContext) _Subcontrol_subcategory(ctx context.Context, field g var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -174750,11 +174749,11 @@ func (ec *executionContext) _Subcontrol_internalNotes(ctx context.Context, field var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -174797,11 +174796,11 @@ func (ec *executionContext) _Subcontrol_systemInternalID(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -174931,11 +174930,11 @@ func (ec *executionContext) _Subcontrol_refCode(ctx context.Context, field graph var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -176707,7 +176706,7 @@ func (ec *executionContext) _Subcontrol_hasPendingWorkflow(ctx context.Context, field, ec.fieldContext_Subcontrol_hasPendingWorkflow, func(ctx context.Context) (any, error) { - return ec.resolvers.Subcontrol().HasPendingWorkflow(ctx, obj) + return ec.Resolvers.Subcontrol().HasPendingWorkflow(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -176736,7 +176735,7 @@ func (ec *executionContext) _Subcontrol_hasWorkflowHistory(ctx context.Context, field, ec.fieldContext_Subcontrol_hasWorkflowHistory, func(ctx context.Context) (any, error) { - return ec.resolvers.Subcontrol().HasWorkflowHistory(ctx, obj) + return ec.Resolvers.Subcontrol().HasWorkflowHistory(ctx, obj) }, nil, ec.marshalNBoolean2bool, @@ -176765,7 +176764,7 @@ func (ec *executionContext) _Subcontrol_activeWorkflowInstances(ctx context.Cont field, ec.fieldContext_Subcontrol_activeWorkflowInstances, func(ctx context.Context) (any, error) { - return ec.resolvers.Subcontrol().ActiveWorkflowInstances(ctx, obj) + return ec.Resolvers.Subcontrol().ActiveWorkflowInstances(ctx, obj) }, nil, ec.marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ, @@ -176881,7 +176880,7 @@ func (ec *executionContext) _Subcontrol_workflowTimeline(ctx context.Context, fi ec.fieldContext_Subcontrol_workflowTimeline, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Subcontrol().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) + return ec.Resolvers.Subcontrol().WorkflowTimeline(ctx, obj, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].([]*generated.WorkflowEventOrder), fc.Args["where"].(*generated.WorkflowEventWhereInput), fc.Args["includeEmitFailures"].(*bool)) }, nil, ec.marshalNWorkflowEventConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventConnection, @@ -177463,11 +177462,11 @@ func (ec *executionContext) _Subprocessor_internalNotes(ctx context.Context, fie var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -177510,11 +177509,11 @@ func (ec *executionContext) _Subprocessor_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -179981,11 +179980,11 @@ func (ec *executionContext) _TagDefinition_internalNotes(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -180028,11 +180027,11 @@ func (ec *executionContext) _TagDefinition_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -181312,11 +181311,11 @@ func (ec *executionContext) _Task_systemGenerated(ctx context.Context, field gra var zeroVal bool return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal bool return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -183739,11 +183738,11 @@ func (ec *executionContext) _Template_internalNotes(ctx context.Context, field g var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -183786,11 +183785,11 @@ func (ec *executionContext) _Template_systemInternalID(ctx context.Context, fiel var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -198761,11 +198760,11 @@ func (ec *executionContext) _Vulnerability_internalNotes(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -198808,11 +198807,11 @@ func (ec *executionContext) _Vulnerability_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -205045,11 +205044,11 @@ func (ec *executionContext) _WorkflowDefinition_internalNotes(ctx context.Contex var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -205092,11 +205091,11 @@ func (ec *executionContext) _WorkflowDefinition_systemInternalID(ctx context.Con var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -209861,7 +209860,7 @@ func (ec *executionContext) _WorkflowInstance_proposalPreview(ctx context.Contex field, ec.fieldContext_WorkflowInstance_proposalPreview, func(ctx context.Context) (any, error) { - return ec.resolvers.WorkflowInstance().ProposalPreview(ctx, obj) + return ec.Resolvers.WorkflowInstance().ProposalPreview(ctx, obj) }, nil, ec.marshalOWorkflowProposalPreview2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowProposalPreview, @@ -214373,7 +214372,7 @@ func (ec *executionContext) _WorkflowProposal_preview(ctx context.Context, field field, ec.fieldContext_WorkflowProposal_preview, func(ctx context.Context) (any, error) { - return ec.resolvers.WorkflowProposal().Preview(ctx, obj) + return ec.Resolvers.WorkflowProposal().Preview(ctx, obj) }, nil, ec.marshalOWorkflowProposalPreview2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowProposalPreview, @@ -214451,7 +214450,6 @@ func (ec *executionContext) unmarshalInputAPITokenOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -215584,7 +215582,6 @@ func (ec *executionContext) unmarshalInputAPITokenWhereInput(ctx context.Context it.ScopesHas = data } } - return it, nil } @@ -215622,7 +215619,6 @@ func (ec *executionContext) unmarshalInputActionPlanOrder(ctx context.Context, o it.Field = data } } - return it, nil } @@ -218498,7 +218494,6 @@ func (ec *executionContext) unmarshalInputActionPlanWhereInput(ctx context.Conte it.DismissedImprovementSuggestionsHas = data } } - return it, nil } @@ -218536,7 +218531,6 @@ func (ec *executionContext) unmarshalInputAssessmentOrder(ctx context.Context, o it.Field = data } } - return it, nil } @@ -218574,7 +218568,6 @@ func (ec *executionContext) unmarshalInputAssessmentResponseOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -220505,7 +220498,6 @@ func (ec *executionContext) unmarshalInputAssessmentResponseWhereInput(ctx conte it.HasDocumentWith = data } } - return it, nil } @@ -221498,7 +221490,6 @@ func (ec *executionContext) unmarshalInputAssessmentWhereInput(ctx context.Conte it.TagsHas = data } } - return it, nil } @@ -221536,7 +221527,6 @@ func (ec *executionContext) unmarshalInputAssetOrder(ctx context.Context, obj an it.Field = data } } - return it, nil } @@ -225931,7 +225921,6 @@ func (ec *executionContext) unmarshalInputAssetWhereInput(ctx context.Context, o it.CategoriesHas = data } } - return it, nil } @@ -225969,7 +225958,6 @@ func (ec *executionContext) unmarshalInputCampaignOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -226007,7 +225995,6 @@ func (ec *executionContext) unmarshalInputCampaignTargetOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -227455,7 +227442,6 @@ func (ec *executionContext) unmarshalInputCampaignTargetWhereInput(ctx context.C it.HasWorkflowObjectRefsWith = data } } - return it, nil } @@ -230436,7 +230422,6 @@ func (ec *executionContext) unmarshalInputCampaignWhereInput(ctx context.Context it.TagsHas = data } } - return it, nil } @@ -230474,7 +230459,6 @@ func (ec *executionContext) unmarshalInputContactOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -231775,7 +231759,6 @@ func (ec *executionContext) unmarshalInputContactWhereInput(ctx context.Context, it.TagsHas = data } } - return it, nil } @@ -231813,7 +231796,6 @@ func (ec *executionContext) unmarshalInputControlImplementationOrder(ctx context it.Field = data } } - return it, nil } @@ -233037,7 +233019,6 @@ func (ec *executionContext) unmarshalInputControlImplementationWhereInput(ctx co it.TagsHas = data } } - return it, nil } @@ -233075,7 +233056,6 @@ func (ec *executionContext) unmarshalInputControlObjectiveOrder(ctx context.Cont it.Field = data } } - return it, nil } @@ -234859,7 +234839,6 @@ func (ec *executionContext) unmarshalInputControlObjectiveWhereInput(ctx context it.TagsHas = data } } - return it, nil } @@ -234897,7 +234876,6 @@ func (ec *executionContext) unmarshalInputControlOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -238508,7 +238486,6 @@ func (ec *executionContext) unmarshalInputControlWhereInput(ctx context.Context, it.ControlQuestionsHas = data } } - return it, nil } @@ -238605,7 +238582,6 @@ func (ec *executionContext) unmarshalInputCreateAPITokenInput(ctx context.Contex it.OwnerID = data } } - return it, nil } @@ -238740,11 +238716,11 @@ func (ec *executionContext) unmarshalInputCreateActionPlanInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -238764,11 +238740,11 @@ func (ec *executionContext) unmarshalInputCreateActionPlanInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -239009,7 +238985,6 @@ func (ec *executionContext) unmarshalInputCreateActionPlanInput(ctx context.Cont it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -239134,7 +239109,6 @@ func (ec *executionContext) unmarshalInputCreateAssessmentInput(ctx context.Cont it.CampaignIDs = data } } - return it, nil } @@ -239259,7 +239233,6 @@ func (ec *executionContext) unmarshalInputCreateAssessmentResponseInput(ctx cont it.DocumentID = data } } - return it, nil } @@ -239352,11 +239325,11 @@ func (ec *executionContext) unmarshalInputCreateAssetInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -239376,11 +239349,11 @@ func (ec *executionContext) unmarshalInputCreateAssetInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -239670,7 +239643,6 @@ func (ec *executionContext) unmarshalInputCreateAssetInput(ctx context.Context, it.ConnectedFromIDs = data } } - return it, nil } @@ -239984,7 +239956,6 @@ func (ec *executionContext) unmarshalInputCreateCampaignInput(ctx context.Contex it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -240095,7 +240066,6 @@ func (ec *executionContext) unmarshalInputCreateCampaignTargetInput(ctx context. it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -240206,7 +240176,6 @@ func (ec *executionContext) unmarshalInputCreateContactInput(ctx context.Context it.FileIDs = data } } - return it, nil } @@ -240236,11 +240205,11 @@ func (ec *executionContext) unmarshalInputCreateControlImplementationInput(ctx c directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -240260,11 +240229,11 @@ func (ec *executionContext) unmarshalInputCreateControlImplementationInput(ctx c directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -240372,7 +240341,6 @@ func (ec *executionContext) unmarshalInputCreateControlImplementationInput(ctx c it.TaskIDs = data } } - return it, nil } @@ -240407,11 +240375,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240436,11 +240404,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240502,11 +240470,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *enums.ControlSource return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *enums.ControlSource return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240531,11 +240499,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240560,11 +240528,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240589,11 +240557,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240618,11 +240586,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240647,11 +240615,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -240734,11 +240702,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -240758,11 +240726,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -240815,11 +240783,11 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context var zeroVal string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -241044,7 +241012,6 @@ func (ec *executionContext) unmarshalInputCreateControlInput(ctx context.Context it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -241081,11 +241048,11 @@ func (ec *executionContext) unmarshalInputCreateControlObjectiveInput(ctx contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -241105,11 +241072,11 @@ func (ec *executionContext) unmarshalInputCreateControlObjectiveInput(ctx contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -241273,7 +241240,6 @@ func (ec *executionContext) unmarshalInputCreateControlObjectiveInput(ctx contex it.TaskIDs = data } } - return it, nil } @@ -241303,11 +241269,11 @@ func (ec *executionContext) unmarshalInputCreateCustomDomainInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -241327,11 +241293,11 @@ func (ec *executionContext) unmarshalInputCreateCustomDomainInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -241383,7 +241349,6 @@ func (ec *executionContext) unmarshalInputCreateCustomDomainInput(ctx context.Co it.DNSVerificationID = data } } - return it, nil } @@ -241406,11 +241371,11 @@ func (ec *executionContext) unmarshalInputCreateCustomTypeEnumInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -241430,11 +241395,11 @@ func (ec *executionContext) unmarshalInputCreateCustomTypeEnumInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -241570,7 +241535,6 @@ func (ec *executionContext) unmarshalInputCreateCustomTypeEnumInput(ctx context. it.PlatformIDs = data } } - return it, nil } @@ -241667,7 +241631,6 @@ func (ec *executionContext) unmarshalInputCreateDNSVerificationInput(ctx context it.CustomDomainIDs = data } } - return it, nil } @@ -241932,7 +241895,6 @@ func (ec *executionContext) unmarshalInputCreateDirectoryAccountInput(ctx contex it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -242106,7 +242068,6 @@ func (ec *executionContext) unmarshalInputCreateDirectoryGroupInput(ctx context. it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -242259,7 +242220,6 @@ func (ec *executionContext) unmarshalInputCreateDirectoryMembershipInput(ctx con it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -242405,7 +242365,6 @@ func (ec *executionContext) unmarshalInputCreateDirectorySyncRunInput(ctx contex it.DirectoryGroupIDs = data } } - return it, nil } @@ -242492,12 +242451,11 @@ func (ec *executionContext) unmarshalInputCreateDiscussionInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.CreateDiscussionInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateDiscussionInput().AddComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -242587,7 +242545,6 @@ func (ec *executionContext) unmarshalInputCreateDocumentDataInput(ctx context.Co it.FileIDs = data } } - return it, nil } @@ -242740,7 +242697,6 @@ func (ec *executionContext) unmarshalInputCreateEmailBrandingInput(ctx context.C it.EmailTemplateIDs = data } } - return it, nil } @@ -242763,11 +242719,11 @@ func (ec *executionContext) unmarshalInputCreateEmailTemplateInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -242787,11 +242743,11 @@ func (ec *executionContext) unmarshalInputCreateEmailTemplateInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -242955,7 +242911,6 @@ func (ec *executionContext) unmarshalInputCreateEmailTemplateInput(ctx context.C it.NotificationTemplateIDs = data } } - return it, nil } @@ -243006,11 +242961,11 @@ func (ec *executionContext) unmarshalInputCreateEntityInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -243030,11 +242985,11 @@ func (ec *executionContext) unmarshalInputCreateEntityInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -243510,12 +243465,11 @@ func (ec *executionContext) unmarshalInputCreateEntityInput(ctx context.Context, if err != nil { return it, err } - if err = ec.resolvers.CreateEntityInput().Note(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateEntityInput().Note(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -243545,11 +243499,11 @@ func (ec *executionContext) unmarshalInputCreateEntityTypeInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -243569,11 +243523,11 @@ func (ec *executionContext) unmarshalInputCreateEntityTypeInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -243611,7 +243565,6 @@ func (ec *executionContext) unmarshalInputCreateEntityTypeInput(ctx context.Cont it.EntityIDs = data } } - return it, nil } @@ -243736,7 +243689,6 @@ func (ec *executionContext) unmarshalInputCreateEventInput(ctx context.Context, it.OrgSubscriptionIDs = data } } - return it, nil } @@ -243945,7 +243897,6 @@ func (ec *executionContext) unmarshalInputCreateEvidenceInput(ctx context.Contex it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -244014,7 +243965,6 @@ func (ec *executionContext) unmarshalInputCreateExportInput(ctx context.Context, it.FileIDs = data } } - return it, nil } @@ -244044,11 +243994,11 @@ func (ec *executionContext) unmarshalInputCreateFileInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -244068,11 +244018,11 @@ func (ec *executionContext) unmarshalInputCreateFileInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -244355,7 +244305,6 @@ func (ec *executionContext) unmarshalInputCreateFileInput(ctx context.Context, o it.OriginalTrustCenterDocIDs = data } } - return it, nil } @@ -244438,7 +244387,6 @@ func (ec *executionContext) unmarshalInputCreateFindingControlInput(ctx context. it.StandardID = data } } - return it, nil } @@ -244468,11 +244416,11 @@ func (ec *executionContext) unmarshalInputCreateFindingInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -244492,11 +244440,11 @@ func (ec *executionContext) unmarshalInputCreateFindingInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -244954,7 +244902,6 @@ func (ec *executionContext) unmarshalInputCreateFindingInput(ctx context.Context it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -245363,12 +245310,11 @@ func (ec *executionContext) unmarshalInputCreateGroupInput(ctx context.Context, if err != nil { return it, err } - if err = ec.resolvers.CreateGroupInput().CreateGroupSettings(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateGroupInput().CreateGroupSettings(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -245416,7 +245362,6 @@ func (ec *executionContext) unmarshalInputCreateGroupMembershipInput(ctx context it.EventIDs = data } } - return it, nil } @@ -245471,7 +245416,6 @@ func (ec *executionContext) unmarshalInputCreateGroupSettingInput(ctx context.Co it.GroupID = data } } - return it, nil } @@ -245494,11 +245438,11 @@ func (ec *executionContext) unmarshalInputCreateHushInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -245518,11 +245462,11 @@ func (ec *executionContext) unmarshalInputCreateHushInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -245630,7 +245574,6 @@ func (ec *executionContext) unmarshalInputCreateHushInput(ctx context.Context, o it.EventIDs = data } } - return it, nil } @@ -245958,7 +245901,6 @@ func (ec *executionContext) unmarshalInputCreateIdentityHolderInput(ctx context. it.UserID = data } } - return it, nil } @@ -245995,11 +245937,11 @@ func (ec *executionContext) unmarshalInputCreateInternalPolicyInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -246019,11 +245961,11 @@ func (ec *executionContext) unmarshalInputCreateInternalPolicyInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -246313,7 +246255,6 @@ func (ec *executionContext) unmarshalInputCreateInternalPolicyInput(ctx context. it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -246396,7 +246337,6 @@ func (ec *executionContext) unmarshalInputCreateInviteInput(ctx context.Context, it.GroupIDs = data } } - return it, nil } @@ -246472,7 +246412,6 @@ func (ec *executionContext) unmarshalInputCreateJobResultInput(ctx context.Conte it.FileID = data } } - return it, nil } @@ -246502,11 +246441,11 @@ func (ec *executionContext) unmarshalInputCreateJobRunnerInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -246526,11 +246465,11 @@ func (ec *executionContext) unmarshalInputCreateJobRunnerInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -246596,7 +246535,6 @@ func (ec *executionContext) unmarshalInputCreateJobRunnerInput(ctx context.Conte it.JobRunnerTokenIDs = data } } - return it, nil } @@ -246644,7 +246582,6 @@ func (ec *executionContext) unmarshalInputCreateJobRunnerRegistrationTokenInput( it.JobRunnerID = data } } - return it, nil } @@ -246727,7 +246664,6 @@ func (ec *executionContext) unmarshalInputCreateJobRunnerTokenInput(ctx context. it.JobRunnerIDs = data } } - return it, nil } @@ -246757,11 +246693,11 @@ func (ec *executionContext) unmarshalInputCreateJobTemplateInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -246781,11 +246717,11 @@ func (ec *executionContext) unmarshalInputCreateJobTemplateInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -246851,7 +246787,6 @@ func (ec *executionContext) unmarshalInputCreateJobTemplateInput(ctx context.Con it.OwnerID = data } } - return it, nil } @@ -246899,7 +246834,6 @@ func (ec *executionContext) unmarshalInputCreateMappableDomainInput(ctx context. it.CustomDomainIDs = data } } - return it, nil } @@ -246929,11 +246863,11 @@ func (ec *executionContext) unmarshalInputCreateMappedControlInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -246953,11 +246887,11 @@ func (ec *executionContext) unmarshalInputCreateMappedControlInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -247055,7 +246989,7 @@ func (ec *executionContext) unmarshalInputCreateMappedControlInput(ctx context.C if err != nil { return it, err } - if err = ec.resolvers.CreateMappedControlInput().FromControlRefCodes(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateMappedControlInput().FromControlRefCodes(ctx, &it, data); err != nil { return it, err } case "fromSubcontrolRefCodes": @@ -247064,7 +246998,7 @@ func (ec *executionContext) unmarshalInputCreateMappedControlInput(ctx context.C if err != nil { return it, err } - if err = ec.resolvers.CreateMappedControlInput().FromSubcontrolRefCodes(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateMappedControlInput().FromSubcontrolRefCodes(ctx, &it, data); err != nil { return it, err } case "toControlRefCodes": @@ -247073,7 +247007,7 @@ func (ec *executionContext) unmarshalInputCreateMappedControlInput(ctx context.C if err != nil { return it, err } - if err = ec.resolvers.CreateMappedControlInput().ToControlRefCodes(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateMappedControlInput().ToControlRefCodes(ctx, &it, data); err != nil { return it, err } case "toSubcontrolRefCodes": @@ -247082,12 +247016,11 @@ func (ec *executionContext) unmarshalInputCreateMappedControlInput(ctx context.C if err != nil { return it, err } - if err = ec.resolvers.CreateMappedControlInput().ToSubcontrolRefCodes(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateMappedControlInput().ToSubcontrolRefCodes(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -247117,11 +247050,11 @@ func (ec *executionContext) unmarshalInputCreateNarrativeInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -247141,11 +247074,11 @@ func (ec *executionContext) unmarshalInputCreateNarrativeInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -247239,7 +247172,6 @@ func (ec *executionContext) unmarshalInputCreateNarrativeInput(ctx context.Conte it.ProcedureIDs = data } } - return it, nil } @@ -247378,7 +247310,6 @@ func (ec *executionContext) unmarshalInputCreateNoteInput(ctx context.Context, o it.FileIDs = data } } - return it, nil } @@ -247444,7 +247375,7 @@ func (ec *executionContext) unmarshalInputCreateNotificationInput(ctx context.Co if err != nil { return it, err } - if err = ec.resolvers.CreateNotificationInput().Channels(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateNotificationInput().Channels(ctx, &it, data); err != nil { return it, err } case "topic": @@ -247470,7 +247401,6 @@ func (ec *executionContext) unmarshalInputCreateNotificationInput(ctx context.Co it.NotificationTemplateID = data } } - return it, nil } @@ -247644,7 +247574,6 @@ func (ec *executionContext) unmarshalInputCreateNotificationPreferenceInput(ctx it.NotificationTemplateID = data } } - return it, nil } @@ -247667,11 +247596,11 @@ func (ec *executionContext) unmarshalInputCreateNotificationTemplateInput(ctx co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -247691,11 +247620,11 @@ func (ec *executionContext) unmarshalInputCreateNotificationTemplateInput(ctx co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -247859,7 +247788,6 @@ func (ec *executionContext) unmarshalInputCreateNotificationTemplateInput(ctx co it.NotificationIDs = data } } - return it, nil } @@ -247921,7 +247849,6 @@ func (ec *executionContext) unmarshalInputCreateOnboardingInput(ctx context.Cont it.OrganizationID = data } } - return it, nil } @@ -247969,7 +247896,6 @@ func (ec *executionContext) unmarshalInputCreateOrgMembershipInput(ctx context.C it.EventIDs = data } } - return it, nil } @@ -248728,12 +248654,11 @@ func (ec *executionContext) unmarshalInputCreateOrganizationInput(ctx context.Co if err != nil { return it, err } - if err = ec.resolvers.CreateOrganizationInput().CreateOrgSettings(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateOrganizationInput().CreateOrgSettings(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -248928,7 +248853,6 @@ func (ec *executionContext) unmarshalInputCreateOrganizationSettingInput(ctx con it.FileIDs = data } } - return it, nil } @@ -249011,7 +248935,6 @@ func (ec *executionContext) unmarshalInputCreatePersonalAccessTokenInput(ctx con it.EventIDs = data } } - return it, nil } @@ -249542,7 +249465,6 @@ func (ec *executionContext) unmarshalInputCreatePlatformInput(ctx context.Contex it.PlatformOwnerID = data } } - return it, nil } @@ -249677,11 +249599,11 @@ func (ec *executionContext) unmarshalInputCreateProcedureInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -249701,11 +249623,11 @@ func (ec *executionContext) unmarshalInputCreateProcedureInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -249883,7 +249805,6 @@ func (ec *executionContext) unmarshalInputCreateProcedureInput(ctx context.Conte it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -250127,7 +250048,6 @@ func (ec *executionContext) unmarshalInputCreateProgramInput(ctx context.Context it.ProgramOwnerID = data } } - return it, nil } @@ -250168,7 +250088,6 @@ func (ec *executionContext) unmarshalInputCreateProgramMembershipInput(ctx conte it.UserID = data } } - return it, nil } @@ -250198,11 +250117,11 @@ func (ec *executionContext) unmarshalInputCreateRemediationInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -250222,11 +250141,11 @@ func (ec *executionContext) unmarshalInputCreateRemediationInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -250537,7 +250456,6 @@ func (ec *executionContext) unmarshalInputCreateRemediationInput(ctx context.Con it.FileIDs = data } } - return it, nil } @@ -250567,11 +250485,11 @@ func (ec *executionContext) unmarshalInputCreateReviewInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -250591,11 +250509,11 @@ func (ec *executionContext) unmarshalInputCreateReviewInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -250892,7 +250810,6 @@ func (ec *executionContext) unmarshalInputCreateReviewInput(ctx context.Context, it.FileIDs = data } } - return it, nil } @@ -251185,7 +251102,6 @@ func (ec *executionContext) unmarshalInputCreateRiskInput(ctx context.Context, o it.DiscussionIDs = data } } - return it, nil } @@ -251293,7 +251209,7 @@ func (ec *executionContext) unmarshalInputCreateScanInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.CreateScanInput().VulnerabilityIds(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateScanInput().VulnerabilityIds(ctx, &it, data); err != nil { return it, err } case "status": @@ -251435,7 +251351,7 @@ func (ec *executionContext) unmarshalInputCreateScanInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.CreateScanInput().VulnerabilityIDs(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateScanInput().VulnerabilityIDs(ctx, &it, data); err != nil { return it, err } case "controlIDs": @@ -251468,7 +251384,6 @@ func (ec *executionContext) unmarshalInputCreateScanInput(ctx context.Context, o it.PerformedByGroupID = data } } - return it, nil } @@ -251544,7 +251459,6 @@ func (ec *executionContext) unmarshalInputCreateScheduledJobInput(ctx context.Co it.JobRunnerID = data } } - return it, nil } @@ -251606,7 +251520,6 @@ func (ec *executionContext) unmarshalInputCreateScheduledJobRunInput(ctx context it.JobRunnerID = data } } - return it, nil } @@ -251643,11 +251556,11 @@ func (ec *executionContext) unmarshalInputCreateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -251667,11 +251580,11 @@ func (ec *executionContext) unmarshalInputCreateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -251754,11 +251667,11 @@ func (ec *executionContext) unmarshalInputCreateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2ᚖbool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -251778,11 +251691,11 @@ func (ec *executionContext) unmarshalInputCreateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2ᚖbool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -251855,7 +251768,6 @@ func (ec *executionContext) unmarshalInputCreateStandardInput(ctx context.Contex it.LogoFileID = data } } - return it, nil } @@ -251890,11 +251802,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -251919,11 +251831,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -251985,11 +251897,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *enums.ControlSource return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *enums.ControlSource return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -252014,11 +251926,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -252043,11 +251955,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -252072,11 +251984,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -252101,11 +252013,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -252130,11 +252042,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -252217,11 +252129,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -252241,11 +252153,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -252284,11 +252196,11 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont var zeroVal string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -252436,7 +252348,6 @@ func (ec *executionContext) unmarshalInputCreateSubcontrolInput(ctx context.Cont it.WorkflowObjectRefIDs = data } } - return it, nil } @@ -252466,11 +252377,11 @@ func (ec *executionContext) unmarshalInputCreateSubprocessorInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -252490,11 +252401,11 @@ func (ec *executionContext) unmarshalInputCreateSubprocessorInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -252560,7 +252471,6 @@ func (ec *executionContext) unmarshalInputCreateSubprocessorInput(ctx context.Co it.EntityIDs = data } } - return it, nil } @@ -252615,7 +252525,6 @@ func (ec *executionContext) unmarshalInputCreateSubscriberInput(ctx context.Cont it.EventIDs = data } } - return it, nil } @@ -252642,7 +252551,6 @@ func (ec *executionContext) unmarshalInputCreateTFASettingInput(ctx context.Cont it.TotpAllowed = data } } - return it, nil } @@ -252665,11 +252573,11 @@ func (ec *executionContext) unmarshalInputCreateTagDefinitionInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -252689,11 +252597,11 @@ func (ec *executionContext) unmarshalInputCreateTagDefinitionInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -252745,7 +252653,6 @@ func (ec *executionContext) unmarshalInputCreateTagDefinitionInput(ctx context.C it.OwnerID = data } } - return it, nil } @@ -252843,11 +252750,11 @@ func (ec *executionContext) unmarshalInputCreateTaskInput(ctx context.Context, o var zeroVal *bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -253039,7 +252946,6 @@ func (ec *executionContext) unmarshalInputCreateTaskInput(ctx context.Context, o it.TaskIDs = data } } - return it, nil } @@ -253069,11 +252975,11 @@ func (ec *executionContext) unmarshalInputCreateTemplateInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -253093,11 +252999,11 @@ func (ec *executionContext) unmarshalInputCreateTemplateInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -253233,7 +253139,6 @@ func (ec *executionContext) unmarshalInputCreateTemplateInput(ctx context.Contex it.IdentityHolderIDs = data } } - return it, nil } @@ -253288,7 +253193,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterComplianceInput(ctx c it.StandardID = data } } - return it, nil } @@ -253399,7 +253303,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterDocInput(ctx context. it.OriginalFileID = data } } - return it, nil } @@ -253468,7 +253371,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterEntityInput(ctx conte it.EntityTypeID = data } } - return it, nil } @@ -253548,12 +253450,11 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterFAQInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.CreateTrustCenterFAQInput().CreateNote(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateTrustCenterFAQInput().CreateNote(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -253731,12 +253632,11 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterInput(ctx context.Con if err != nil { return it, err } - if err = ec.resolvers.CreateTrustCenterInput().CreateTrustCenterSetting(ctx, &it, data); err != nil { + if err = ec.Resolvers.CreateTrustCenterInput().CreateTrustCenterSetting(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -253868,7 +253768,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterNDARequestInput(ctx c it.FileID = data } } - return it, nil } @@ -254056,7 +253955,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterSettingInput(ctx cont it.FaviconFileID = data } } - return it, nil } @@ -254125,7 +254023,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterSubprocessorInput(ctx it.SubprocessorID = data } } - return it, nil } @@ -254236,7 +254133,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterWatermarkConfigInput( it.FileID = data } } - return it, nil } @@ -254522,7 +254418,6 @@ func (ec *executionContext) unmarshalInputCreateUserInput(ctx context.Context, o it.TargetedImpersonationIDs = data } } - return it, nil } @@ -254626,7 +254521,6 @@ func (ec *executionContext) unmarshalInputCreateUserSettingInput(ctx context.Con it.DefaultOrgID = data } } - return it, nil } @@ -254656,11 +254550,11 @@ func (ec *executionContext) unmarshalInputCreateVulnerabilityInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -254680,11 +254574,11 @@ func (ec *executionContext) unmarshalInputCreateVulnerabilityInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -255065,7 +254959,6 @@ func (ec *executionContext) unmarshalInputCreateVulnerabilityInput(ctx context.C it.FileIDs = data } } - return it, nil } @@ -255095,11 +254988,11 @@ func (ec *executionContext) unmarshalInputCreateWorkflowDefinitionInput(ctx cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -255119,11 +255012,11 @@ func (ec *executionContext) unmarshalInputCreateWorkflowDefinitionInput(ctx cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -255259,7 +255152,6 @@ func (ec *executionContext) unmarshalInputCreateWorkflowDefinitionInput(ctx cont it.EmailTemplateIDs = data } } - return it, nil } @@ -255297,7 +255189,6 @@ func (ec *executionContext) unmarshalInputCustomDomainOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -256542,7 +256433,6 @@ func (ec *executionContext) unmarshalInputCustomDomainWhereInput(ctx context.Con it.TagsHas = data } } - return it, nil } @@ -256580,7 +256470,6 @@ func (ec *executionContext) unmarshalInputCustomTypeEnumOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -258126,7 +258015,6 @@ func (ec *executionContext) unmarshalInputCustomTypeEnumWhereInput(ctx context.C it.HasPlatformsWith = data } } - return it, nil } @@ -258164,7 +258052,6 @@ func (ec *executionContext) unmarshalInputDNSVerificationOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -259514,7 +259401,6 @@ func (ec *executionContext) unmarshalInputDNSVerificationWhereInput(ctx context. it.TagsHas = data } } - return it, nil } @@ -259552,7 +259438,6 @@ func (ec *executionContext) unmarshalInputDirectoryAccountOrder(ctx context.Cont it.Field = data } } - return it, nil } @@ -263065,7 +262950,6 @@ func (ec *executionContext) unmarshalInputDirectoryAccountWhereInput(ctx context it.TagsHas = data } } - return it, nil } @@ -263103,7 +262987,6 @@ func (ec *executionContext) unmarshalInputDirectoryGroupOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -265307,7 +265190,6 @@ func (ec *executionContext) unmarshalInputDirectoryGroupWhereInput(ctx context.C it.TagsHas = data } } - return it, nil } @@ -265345,7 +265227,6 @@ func (ec *executionContext) unmarshalInputDirectoryMembershipOrder(ctx context.C it.Field = data } } - return it, nil } @@ -266555,7 +266436,6 @@ func (ec *executionContext) unmarshalInputDirectoryMembershipWhereInput(ctx cont it.LastConfirmedRunIDContainsFold = data } } - return it, nil } @@ -266593,7 +266473,6 @@ func (ec *executionContext) unmarshalInputDirectorySyncRunOrder(ctx context.Cont it.Field = data } } - return it, nil } @@ -268559,7 +268438,6 @@ func (ec *executionContext) unmarshalInputDirectorySyncRunWhereInput(ctx context it.HasDirectoryMembershipsWith = data } } - return it, nil } @@ -268597,7 +268475,6 @@ func (ec *executionContext) unmarshalInputDiscussionOrder(ctx context.Context, o it.Field = data } } - return it, nil } @@ -269380,7 +269257,6 @@ func (ec *executionContext) unmarshalInputDiscussionWhereInput(ctx context.Conte it.HasInternalPolicyWith = data } } - return it, nil } @@ -269418,7 +269294,6 @@ func (ec *executionContext) unmarshalInputDocumentDataOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -270600,7 +270475,6 @@ func (ec *executionContext) unmarshalInputDocumentDataWhereInput(ctx context.Con it.TagsHas = data } } - return it, nil } @@ -270638,7 +270512,6 @@ func (ec *executionContext) unmarshalInputEmailBrandingOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -272401,7 +272274,6 @@ func (ec *executionContext) unmarshalInputEmailBrandingWhereInput(ctx context.Co it.TagsHas = data } } - return it, nil } @@ -272439,7 +272311,6 @@ func (ec *executionContext) unmarshalInputEmailTemplateOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -274657,7 +274528,6 @@ func (ec *executionContext) unmarshalInputEmailTemplateWhereInput(ctx context.Co it.HasNotificationTemplatesWith = data } } - return it, nil } @@ -274695,7 +274565,6 @@ func (ec *executionContext) unmarshalInputEntityOrder(ctx context.Context, obj a it.Field = data } } - return it, nil } @@ -274733,7 +274602,6 @@ func (ec *executionContext) unmarshalInputEntityTypeOrder(ctx context.Context, o it.Field = data } } - return it, nil } @@ -275663,7 +275531,6 @@ func (ec *executionContext) unmarshalInputEntityTypeWhereInput(ctx context.Conte it.TagsHas = data } } - return it, nil } @@ -280429,7 +280296,6 @@ func (ec *executionContext) unmarshalInputEntityWhereInput(ctx context.Context, it.LinksHas = data } } - return it, nil } @@ -280467,7 +280333,6 @@ func (ec *executionContext) unmarshalInputEventOrder(ctx context.Context, obj an it.Field = data } } - return it, nil } @@ -281404,7 +281269,6 @@ func (ec *executionContext) unmarshalInputEventWhereInput(ctx context.Context, o it.TagsHas = data } } - return it, nil } @@ -281442,7 +281306,6 @@ func (ec *executionContext) unmarshalInputEvidenceOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -283457,7 +283320,6 @@ func (ec *executionContext) unmarshalInputEvidenceWhereInput(ctx context.Context it.TagsHas = data } } - return it, nil } @@ -283495,7 +283357,6 @@ func (ec *executionContext) unmarshalInputExportOrder(ctx context.Context, obj a it.Field = data } } - return it, nil } @@ -284509,7 +284370,6 @@ func (ec *executionContext) unmarshalInputExportWhereInput(ctx context.Context, it.FieldsHas = data } } - return it, nil } @@ -284547,7 +284407,6 @@ func (ec *executionContext) unmarshalInputFileOrder(ctx context.Context, obj any it.Field = data } } - return it, nil } @@ -287472,7 +287331,6 @@ func (ec *executionContext) unmarshalInputFileWhereInput(ctx context.Context, ob it.TagsHas = data } } - return it, nil } @@ -287510,7 +287368,6 @@ func (ec *executionContext) unmarshalInputFindingControlOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -288461,7 +288318,6 @@ func (ec *executionContext) unmarshalInputFindingControlWhereInput(ctx context.C it.DiscoveredAtNotNil = data } } - return it, nil } @@ -288499,7 +288355,6 @@ func (ec *executionContext) unmarshalInputFindingOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -292684,7 +292539,6 @@ func (ec *executionContext) unmarshalInputFindingWhereInput(ctx context.Context, it.TargetsHas = data } } - return it, nil } @@ -292722,7 +292576,6 @@ func (ec *executionContext) unmarshalInputGroupMembershipOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -293225,7 +293078,6 @@ func (ec *executionContext) unmarshalInputGroupMembershipWhereInput(ctx context. it.UserID = data } } - return it, nil } @@ -293263,7 +293115,6 @@ func (ec *executionContext) unmarshalInputGroupOrder(ctx context.Context, obj an it.Field = data } } - return it, nil } @@ -293301,7 +293152,6 @@ func (ec *executionContext) unmarshalInputGroupSettingOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -293993,7 +293843,6 @@ func (ec *executionContext) unmarshalInputGroupSettingWhereInput(ctx context.Con it.HasGroupWith = data } } - return it, nil } @@ -295882,7 +295731,6 @@ func (ec *executionContext) unmarshalInputGroupWhereInput(ctx context.Context, o it.TagsHas = data } } - return it, nil } @@ -295920,7 +295768,6 @@ func (ec *executionContext) unmarshalInputHushOrder(ctx context.Context, obj any it.Field = data } } - return it, nil } @@ -297221,7 +297068,6 @@ func (ec *executionContext) unmarshalInputHushWhereInput(ctx context.Context, ob it.HasEventsWith = data } } - return it, nil } @@ -297259,7 +297105,6 @@ func (ec *executionContext) unmarshalInputIdentityHolderOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -300464,7 +300309,6 @@ func (ec *executionContext) unmarshalInputIdentityHolderWhereInput(ctx context.C it.TagsHas = data } } - return it, nil } @@ -300502,7 +300346,6 @@ func (ec *executionContext) unmarshalInputIntegrationOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -302419,7 +302262,6 @@ func (ec *executionContext) unmarshalInputIntegrationWhereInput(ctx context.Cont it.TagsHas = data } } - return it, nil } @@ -302457,7 +302299,6 @@ func (ec *executionContext) unmarshalInputInternalPolicyOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -305256,7 +305097,6 @@ func (ec *executionContext) unmarshalInputInternalPolicyWhereInput(ctx context.C it.DismissedImprovementSuggestionsHas = data } } - return it, nil } @@ -305294,7 +305134,6 @@ func (ec *executionContext) unmarshalInputInviteOrder(ctx context.Context, obj a it.Field = data } } - return it, nil } @@ -306308,7 +306147,6 @@ func (ec *executionContext) unmarshalInputInviteWhereInput(ctx context.Context, it.HasGroupsWith = data } } - return it, nil } @@ -306346,7 +306184,6 @@ func (ec *executionContext) unmarshalInputJobResultOrder(ctx context.Context, ob it.Field = data } } - return it, nil } @@ -307437,7 +307274,6 @@ func (ec *executionContext) unmarshalInputJobResultWhereInput(ctx context.Contex it.HasFileWith = data } } - return it, nil } @@ -307475,7 +307311,6 @@ func (ec *executionContext) unmarshalInputJobRunnerOrder(ctx context.Context, ob it.Field = data } } - return it, nil } @@ -307513,7 +307348,6 @@ func (ec *executionContext) unmarshalInputJobRunnerRegistrationTokenOrder(ctx co it.Field = data } } - return it, nil } @@ -308289,7 +308123,6 @@ func (ec *executionContext) unmarshalInputJobRunnerRegistrationTokenWhereInput(c it.TagsHas = data } } - return it, nil } @@ -308327,7 +308160,6 @@ func (ec *executionContext) unmarshalInputJobRunnerTokenOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -309376,7 +309208,6 @@ func (ec *executionContext) unmarshalInputJobRunnerTokenWhereInput(ctx context.C it.TagsHas = data } } - return it, nil } @@ -310810,7 +310641,6 @@ func (ec *executionContext) unmarshalInputJobRunnerWhereInput(ctx context.Contex it.TagsHas = data } } - return it, nil } @@ -310848,7 +310678,6 @@ func (ec *executionContext) unmarshalInputJobTemplateOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -312002,7 +311831,6 @@ func (ec *executionContext) unmarshalInputJobTemplateWhereInput(ctx context.Cont it.TagsHas = data } } - return it, nil } @@ -312040,7 +311868,6 @@ func (ec *executionContext) unmarshalInputMappableDomainOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -312704,7 +312531,6 @@ func (ec *executionContext) unmarshalInputMappableDomainWhereInput(ctx context.C it.TagsHas = data } } - return it, nil } @@ -312742,7 +312568,6 @@ func (ec *executionContext) unmarshalInputMappedControlOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -313896,7 +313721,6 @@ func (ec *executionContext) unmarshalInputMappedControlWhereInput(ctx context.Co it.TagsHas = data } } - return it, nil } @@ -313934,7 +313758,6 @@ func (ec *executionContext) unmarshalInputNarrativeOrder(ctx context.Context, ob it.Field = data } } - return it, nil } @@ -315249,7 +315072,6 @@ func (ec *executionContext) unmarshalInputNarrativeWhereInput(ctx context.Contex it.TagsHas = data } } - return it, nil } @@ -315287,7 +315109,6 @@ func (ec *executionContext) unmarshalInputNoteOrder(ctx context.Context, obj any it.Field = data } } - return it, nil } @@ -316637,7 +316458,6 @@ func (ec *executionContext) unmarshalInputNoteWhereInput(ctx context.Context, ob it.HasFilesWith = data } } - return it, nil } @@ -316675,7 +316495,6 @@ func (ec *executionContext) unmarshalInputNotificationOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -316713,7 +316532,6 @@ func (ec *executionContext) unmarshalInputNotificationPreferenceOrder(ctx contex it.Field = data } } - return it, nil } @@ -318518,7 +318336,6 @@ func (ec *executionContext) unmarshalInputNotificationPreferenceWhereInput(ctx c it.TopicPatternsHas = data } } - return it, nil } @@ -318556,7 +318373,6 @@ func (ec *executionContext) unmarshalInputNotificationTemplateOrder(ctx context. it.Field = data } } - return it, nil } @@ -320641,7 +320457,6 @@ func (ec *executionContext) unmarshalInputNotificationTemplateWhereInput(ctx con it.HasEmailTemplateWith = data } } - return it, nil } @@ -320969,7 +320784,6 @@ func (ec *executionContext) unmarshalInputOnboardingWhereInput(ctx context.Conte it.DomainsHas = data } } - return it, nil } @@ -321007,7 +320821,6 @@ func (ec *executionContext) unmarshalInputOrgMembershipOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -321517,7 +321330,6 @@ func (ec *executionContext) unmarshalInputOrgMembershipWhereInput(ctx context.Co it.HasUserWith = data } } - return it, nil } @@ -321555,7 +321367,6 @@ func (ec *executionContext) unmarshalInputOrgSubscriptionOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -322625,7 +322436,6 @@ func (ec *executionContext) unmarshalInputOrgSubscriptionWhereInput(ctx context. it.TagsHas = data } } - return it, nil } @@ -322663,7 +322473,6 @@ func (ec *executionContext) unmarshalInputOrganizationOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -322701,7 +322510,6 @@ func (ec *executionContext) unmarshalInputOrganizationSettingOrder(ctx context.C it.Field = data } } - return it, nil } @@ -324863,7 +324671,6 @@ func (ec *executionContext) unmarshalInputOrganizationSettingWhereInput(ctx cont it.AllowedEmailDomainsHas = data } } - return it, nil } @@ -327235,7 +327042,6 @@ func (ec *executionContext) unmarshalInputOrganizationWhereInput(ctx context.Con it.TagsHas = data } } - return it, nil } @@ -327273,7 +327079,6 @@ func (ec *executionContext) unmarshalInputPersonalAccessTokenOrder(ctx context.C it.Field = data } } - return it, nil } @@ -328329,7 +328134,6 @@ func (ec *executionContext) unmarshalInputPersonalAccessTokenWhereInput(ctx cont it.ScopesHas = data } } - return it, nil } @@ -328367,7 +328171,6 @@ func (ec *executionContext) unmarshalInputPlatformOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -333756,7 +333559,6 @@ func (ec *executionContext) unmarshalInputPlatformWhereInput(ctx context.Context it.TagsHas = data } } - return it, nil } @@ -333794,7 +333596,6 @@ func (ec *executionContext) unmarshalInputProcedureOrder(ctx context.Context, ob it.Field = data } } - return it, nil } @@ -336565,7 +336366,6 @@ func (ec *executionContext) unmarshalInputProcedureWhereInput(ctx context.Contex it.DismissedImprovementSuggestionsHas = data } } - return it, nil } @@ -336603,7 +336403,6 @@ func (ec *executionContext) unmarshalInputProgramMembershipOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -337106,7 +336905,6 @@ func (ec *executionContext) unmarshalInputProgramMembershipWhereInput(ctx contex it.UserID = data } } - return it, nil } @@ -337144,7 +336942,6 @@ func (ec *executionContext) unmarshalInputProgramOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -339229,7 +339026,6 @@ func (ec *executionContext) unmarshalInputProgramWhereInput(ctx context.Context, it.TagsHas = data } } - return it, nil } @@ -339267,7 +339063,6 @@ func (ec *executionContext) unmarshalInputRemediationOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -342668,7 +342463,6 @@ func (ec *executionContext) unmarshalInputRemediationWhereInput(ctx context.Cont it.TagsHas = data } } - return it, nil } @@ -342706,7 +342500,6 @@ func (ec *executionContext) unmarshalInputReviewOrder(ctx context.Context, obj a it.Field = data } } - return it, nil } @@ -345715,7 +345508,6 @@ func (ec *executionContext) unmarshalInputReviewWhereInput(ctx context.Context, it.TagsHas = data } } - return it, nil } @@ -345753,7 +345545,6 @@ func (ec *executionContext) unmarshalInputRiskOrder(ctx context.Context, obj any it.Field = data } } - return it, nil } @@ -348391,7 +348182,6 @@ func (ec *executionContext) unmarshalInputRiskWhereInput(ctx context.Context, ob it.TagsHas = data } } - return it, nil } @@ -348429,7 +348219,6 @@ func (ec *executionContext) unmarshalInputScanOrder(ctx context.Context, obj any it.Field = data } } - return it, nil } @@ -351088,7 +350877,6 @@ func (ec *executionContext) unmarshalInputScanWhereInput(ctx context.Context, ob it.VulnerabilityIdsHas = data } } - return it, nil } @@ -351126,7 +350914,6 @@ func (ec *executionContext) unmarshalInputScheduledJobOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -351164,7 +350951,6 @@ func (ec *executionContext) unmarshalInputScheduledJobRunOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -352129,7 +351915,6 @@ func (ec *executionContext) unmarshalInputScheduledJobRunWhereInput(ctx context. it.HasJobRunnerWith = data } } - return it, nil } @@ -353066,7 +352851,6 @@ func (ec *executionContext) unmarshalInputScheduledJobWhereInput(ctx context.Con it.HasJobRunnerWith = data } } - return it, nil } @@ -353104,7 +352888,6 @@ func (ec *executionContext) unmarshalInputStandardOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -355245,7 +355028,6 @@ func (ec *executionContext) unmarshalInputStandardWhereInput(ctx context.Context it.DomainsHas = data } } - return it, nil } @@ -355283,7 +355065,6 @@ func (ec *executionContext) unmarshalInputSubcontrolOrder(ctx context.Context, o it.Field = data } } - return it, nil } @@ -358236,7 +358017,6 @@ func (ec *executionContext) unmarshalInputSubcontrolWhereInput(ctx context.Conte it.ControlQuestionsHas = data } } - return it, nil } @@ -358274,7 +358054,6 @@ func (ec *executionContext) unmarshalInputSubprocessorOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -359547,7 +359326,6 @@ func (ec *executionContext) unmarshalInputSubprocessorWhereInput(ctx context.Con it.TagsHas = data } } - return it, nil } @@ -359585,7 +359363,6 @@ func (ec *executionContext) unmarshalInputSubscriberOrder(ctx context.Context, o it.Field = data } } - return it, nil } @@ -360494,7 +360271,6 @@ func (ec *executionContext) unmarshalInputSubscriberWhereInput(ctx context.Conte it.TagsHas = data } } - return it, nil } @@ -360532,7 +360308,6 @@ func (ec *executionContext) unmarshalInputTFASettingOrder(ctx context.Context, o it.Field = data } } - return it, nil } @@ -361049,7 +360824,6 @@ func (ec *executionContext) unmarshalInputTFASettingWhereInput(ctx context.Conte it.HasOwnerWith = data } } - return it, nil } @@ -361087,7 +360861,6 @@ func (ec *executionContext) unmarshalInputTagDefinitionOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -362318,7 +362091,6 @@ func (ec *executionContext) unmarshalInputTagDefinitionWhereInput(ctx context.Co it.AliasesHas = data } } - return it, nil } @@ -362356,7 +362128,6 @@ func (ec *executionContext) unmarshalInputTaskOrder(ctx context.Context, obj any it.Field = data } } - return it, nil } @@ -364791,7 +364562,6 @@ func (ec *executionContext) unmarshalInputTaskWhereInput(ctx context.Context, ob it.ExternalReferenceURLHas = data } } - return it, nil } @@ -364829,7 +364599,6 @@ func (ec *executionContext) unmarshalInputTemplateOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -366557,7 +366326,6 @@ func (ec *executionContext) unmarshalInputTemplateWhereInput(ctx context.Context it.TagsHas = data } } - return it, nil } @@ -366595,7 +366363,6 @@ func (ec *executionContext) unmarshalInputTrustCenterComplianceOrder(ctx context it.Field = data } } - return it, nil } @@ -367315,7 +367082,6 @@ func (ec *executionContext) unmarshalInputTrustCenterComplianceWhereInput(ctx co it.TagsHas = data } } - return it, nil } @@ -367353,7 +367119,6 @@ func (ec *executionContext) unmarshalInputTrustCenterDocOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -368752,7 +368517,6 @@ func (ec *executionContext) unmarshalInputTrustCenterDocWhereInput(ctx context.C it.TagsHas = data } } - return it, nil } @@ -368790,7 +368554,6 @@ func (ec *executionContext) unmarshalInputTrustCenterEntityOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -369727,7 +369490,6 @@ func (ec *executionContext) unmarshalInputTrustCenterEntityWhereInput(ctx contex it.HasEntityTypeWith = data } } - return it, nil } @@ -369765,7 +369527,6 @@ func (ec *executionContext) unmarshalInputTrustCenterFAQOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -370877,7 +370638,6 @@ func (ec *executionContext) unmarshalInputTrustCenterFAQWhereInput(ctx context.C it.HasNoteWith = data } } - return it, nil } @@ -370915,7 +370675,6 @@ func (ec *executionContext) unmarshalInputTrustCenterNDARequestOrder(ctx context it.Field = data } } - return it, nil } @@ -372594,7 +372353,6 @@ func (ec *executionContext) unmarshalInputTrustCenterNDARequestWhereInput(ctx co it.TagsHas = data } } - return it, nil } @@ -372632,7 +372390,6 @@ func (ec *executionContext) unmarshalInputTrustCenterOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -372670,7 +372427,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSettingOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -375322,7 +375078,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSettingWhereInput(ctx conte it.HasFaviconFileWith = data } } - return it, nil } @@ -375360,7 +375115,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSubprocessorOrder(ctx conte it.Field = data } } - return it, nil } @@ -376304,7 +376058,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSubprocessorWhereInput(ctx it.CountriesHas = data } } - return it, nil } @@ -376342,7 +376095,6 @@ func (ec *executionContext) unmarshalInputTrustCenterWatermarkConfigOrder(ctx co it.Field = data } } - return it, nil } @@ -377678,7 +377430,6 @@ func (ec *executionContext) unmarshalInputTrustCenterWatermarkConfigWhereInput(c it.HasFileWith = data } } - return it, nil } @@ -379252,7 +379003,6 @@ func (ec *executionContext) unmarshalInputTrustCenterWhereInput(ctx context.Cont it.TagsHas = data } } - return it, nil } @@ -379433,7 +379183,6 @@ func (ec *executionContext) unmarshalInputUpdateAPITokenInput(ctx context.Contex it.ClearOwner = data } } - return it, nil } @@ -379729,11 +379478,11 @@ func (ec *executionContext) unmarshalInputUpdateActionPlanInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -379753,11 +379502,11 @@ func (ec *executionContext) unmarshalInputUpdateActionPlanInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -379775,11 +379524,11 @@ func (ec *executionContext) unmarshalInputUpdateActionPlanInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -380318,12 +380067,11 @@ func (ec *executionContext) unmarshalInputUpdateActionPlanInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateActionPlanInput().RevisionBump(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateActionPlanInput().RevisionBump(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -380588,7 +380336,6 @@ func (ec *executionContext) unmarshalInputUpdateAssessmentInput(ctx context.Cont it.ClearCampaigns = data } } - return it, nil } @@ -380758,11 +380505,11 @@ func (ec *executionContext) unmarshalInputUpdateAssetInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -380782,11 +380529,11 @@ func (ec *executionContext) unmarshalInputUpdateAssetInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -380804,11 +380551,11 @@ func (ec *executionContext) unmarshalInputUpdateAssetInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -381427,7 +381174,6 @@ func (ec *executionContext) unmarshalInputUpdateAssetInput(ctx context.Context, it.ClearConnectedFrom = data } } - return it, nil } @@ -382063,7 +381809,6 @@ func (ec *executionContext) unmarshalInputUpdateCampaignInput(ctx context.Contex it.ClearWorkflowObjectRefs = data } } - return it, nil } @@ -382237,7 +381982,6 @@ func (ec *executionContext) unmarshalInputUpdateCampaignTargetInput(ctx context. it.ClearWorkflowObjectRefs = data } } - return it, nil } @@ -382467,7 +382211,6 @@ func (ec *executionContext) unmarshalInputUpdateContactInput(ctx context.Context it.ClearFiles = data } } - return it, nil } @@ -382511,11 +382254,11 @@ func (ec *executionContext) unmarshalInputUpdateControlImplementationInput(ctx c directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -382535,11 +382278,11 @@ func (ec *executionContext) unmarshalInputUpdateControlImplementationInput(ctx c directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -382557,11 +382300,11 @@ func (ec *executionContext) unmarshalInputUpdateControlImplementationInput(ctx c directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -382802,7 +382545,6 @@ func (ec *executionContext) unmarshalInputUpdateControlImplementationInput(ctx c it.ClearTasks = data } } - return it, nil } @@ -382851,11 +382593,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -382880,11 +382622,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -382907,11 +382649,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -382936,11 +382678,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383049,11 +382791,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *enums.ControlSource return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *enums.ControlSource return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383078,11 +382820,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383105,11 +382847,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383134,11 +382876,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383161,11 +382903,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383190,11 +382932,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383217,11 +382959,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383253,11 +382995,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383282,11 +383024,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -383493,11 +383235,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -383517,11 +383259,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -383539,11 +383281,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -383631,11 +383373,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -384209,7 +383951,7 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context if err != nil { return it, err } - if err = ec.resolvers.UpdateControlInput().AddDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateControlInput().AddDiscussion(ctx, &it, data); err != nil { return it, err } case "updateDiscussion": @@ -384218,7 +383960,7 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context if err != nil { return it, err } - if err = ec.resolvers.UpdateControlInput().UpdateDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateControlInput().UpdateDiscussion(ctx, &it, data); err != nil { return it, err } case "deleteDiscussion": @@ -384227,7 +383969,7 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context if err != nil { return it, err } - if err = ec.resolvers.UpdateControlInput().DeleteDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateControlInput().DeleteDiscussion(ctx, &it, data); err != nil { return it, err } case "addComment": @@ -384236,7 +383978,7 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context if err != nil { return it, err } - if err = ec.resolvers.UpdateControlInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateControlInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -384245,12 +383987,11 @@ func (ec *executionContext) unmarshalInputUpdateControlInput(ctx context.Context if err != nil { return it, err } - if err = ec.resolvers.UpdateControlInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateControlInput().DeleteComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -384308,11 +384049,11 @@ func (ec *executionContext) unmarshalInputUpdateControlObjectiveInput(ctx contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384332,11 +384073,11 @@ func (ec *executionContext) unmarshalInputUpdateControlObjectiveInput(ctx contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384354,11 +384095,11 @@ func (ec *executionContext) unmarshalInputUpdateControlObjectiveInput(ctx contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384750,12 +384491,11 @@ func (ec *executionContext) unmarshalInputUpdateControlObjectiveInput(ctx contex if err != nil { return it, err } - if err = ec.resolvers.UpdateControlObjectiveInput().RevisionBump(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateControlObjectiveInput().RevisionBump(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -384799,11 +384539,11 @@ func (ec *executionContext) unmarshalInputUpdateCustomDomainInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384823,11 +384563,11 @@ func (ec *executionContext) unmarshalInputUpdateCustomDomainInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384845,11 +384585,11 @@ func (ec *executionContext) unmarshalInputUpdateCustomDomainInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384915,7 +384655,6 @@ func (ec *executionContext) unmarshalInputUpdateCustomDomainInput(ctx context.Co it.ClearDNSVerification = data } } - return it, nil } @@ -384938,11 +384677,11 @@ func (ec *executionContext) unmarshalInputUpdateCustomTypeEnumInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384962,11 +384701,11 @@ func (ec *executionContext) unmarshalInputUpdateCustomTypeEnumInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -384984,11 +384723,11 @@ func (ec *executionContext) unmarshalInputUpdateCustomTypeEnumInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -385278,7 +385017,6 @@ func (ec *executionContext) unmarshalInputUpdateCustomTypeEnumInput(ctx context. it.ClearPlatforms = data } } - return it, nil } @@ -385438,7 +385176,6 @@ func (ec *executionContext) unmarshalInputUpdateDNSVerificationInput(ctx context it.ClearCustomDomains = data } } - return it, nil } @@ -385885,7 +385622,6 @@ func (ec *executionContext) unmarshalInputUpdateDirectoryAccountInput(ctx contex it.ClearWorkflowObjectRefs = data } } - return it, nil } @@ -386136,7 +385872,6 @@ func (ec *executionContext) unmarshalInputUpdateDirectoryGroupInput(ctx context. it.ClearWorkflowObjectRefs = data } } - return it, nil } @@ -386352,7 +386087,6 @@ func (ec *executionContext) unmarshalInputUpdateDirectoryMembershipInput(ctx con it.ClearWorkflowObjectRefs = data } } - return it, nil } @@ -386582,7 +386316,6 @@ func (ec *executionContext) unmarshalInputUpdateDirectorySyncRunInput(ctx contex it.ClearDirectoryGroups = data } } - return it, nil } @@ -386718,7 +386451,7 @@ func (ec *executionContext) unmarshalInputUpdateDiscussionInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateDiscussionInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateDiscussionInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -386727,12 +386460,11 @@ func (ec *executionContext) unmarshalInputUpdateDiscussionInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateDiscussionInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateDiscussionInput().DeleteComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -386892,7 +386624,6 @@ func (ec *executionContext) unmarshalInputUpdateDocumentDataInput(ctx context.Co it.ClearFiles = data } } - return it, nil } @@ -387199,7 +386930,6 @@ func (ec *executionContext) unmarshalInputUpdateEmailBrandingInput(ctx context.C it.ClearEmailTemplates = data } } - return it, nil } @@ -387222,11 +386952,11 @@ func (ec *executionContext) unmarshalInputUpdateEmailTemplateInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -387246,11 +386976,11 @@ func (ec *executionContext) unmarshalInputUpdateEmailTemplateInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -387268,11 +386998,11 @@ func (ec *executionContext) unmarshalInputUpdateEmailTemplateInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -387548,7 +387278,6 @@ func (ec *executionContext) unmarshalInputUpdateEmailTemplateInput(ctx context.C it.ClearNotificationTemplates = data } } - return it, nil } @@ -387634,11 +387363,11 @@ func (ec *executionContext) unmarshalInputUpdateEntityInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -387658,11 +387387,11 @@ func (ec *executionContext) unmarshalInputUpdateEntityInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -387680,11 +387409,11 @@ func (ec *executionContext) unmarshalInputUpdateEntityInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -388769,12 +388498,11 @@ func (ec *executionContext) unmarshalInputUpdateEntityInput(ctx context.Context, if err != nil { return it, err } - if err = ec.resolvers.UpdateEntityInput().Note(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateEntityInput().Note(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -388818,11 +388546,11 @@ func (ec *executionContext) unmarshalInputUpdateEntityTypeInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -388842,11 +388570,11 @@ func (ec *executionContext) unmarshalInputUpdateEntityTypeInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -388864,11 +388592,11 @@ func (ec *executionContext) unmarshalInputUpdateEntityTypeInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -388934,7 +388662,6 @@ func (ec *executionContext) unmarshalInputUpdateEntityTypeInput(ctx context.Cont it.ClearEntities = data } } - return it, nil } @@ -389234,7 +388961,6 @@ func (ec *executionContext) unmarshalInputUpdateEventInput(ctx context.Context, it.ClearOrgSubscriptions = data } } - return it, nil } @@ -389692,7 +389418,7 @@ func (ec *executionContext) unmarshalInputUpdateEvidenceInput(ctx context.Contex if err != nil { return it, err } - if err = ec.resolvers.UpdateEvidenceInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateEvidenceInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -389701,12 +389427,11 @@ func (ec *executionContext) unmarshalInputUpdateEvidenceInput(ctx context.Contex if err != nil { return it, err } - if err = ec.resolvers.UpdateEvidenceInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateEvidenceInput().DeleteComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -389803,7 +389528,6 @@ func (ec *executionContext) unmarshalInputUpdateExportInput(ctx context.Context, it.ClearFiles = data } } - return it, nil } @@ -389847,11 +389571,11 @@ func (ec *executionContext) unmarshalInputUpdateFileInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -389871,11 +389595,11 @@ func (ec *executionContext) unmarshalInputUpdateFileInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -389893,11 +389617,11 @@ func (ec *executionContext) unmarshalInputUpdateFileInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -390551,7 +390275,6 @@ func (ec *executionContext) unmarshalInputUpdateFileInput(ctx context.Context, o it.ClearOriginalTrustCenterDoc = data } } - return it, nil } @@ -390655,7 +390378,6 @@ func (ec *executionContext) unmarshalInputUpdateFindingControlInput(ctx context. it.ClearDiscoveredAt = data } } - return it, nil } @@ -390699,11 +390421,11 @@ func (ec *executionContext) unmarshalInputUpdateFindingInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -390723,11 +390445,11 @@ func (ec *executionContext) unmarshalInputUpdateFindingInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -390745,11 +390467,11 @@ func (ec *executionContext) unmarshalInputUpdateFindingInput(ctx context.Context directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -391816,7 +391538,6 @@ func (ec *executionContext) unmarshalInputUpdateFindingInput(ctx context.Context it.ClearWorkflowObjectRefs = data } } - return it, nil } @@ -392911,7 +392632,7 @@ func (ec *executionContext) unmarshalInputUpdateGroupInput(ctx context.Context, if err != nil { return it, err } - if err = ec.resolvers.UpdateGroupInput().AddGroupMembers(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateGroupInput().AddGroupMembers(ctx, &it, data); err != nil { return it, err } case "removeGroupMembers": @@ -392920,7 +392641,7 @@ func (ec *executionContext) unmarshalInputUpdateGroupInput(ctx context.Context, if err != nil { return it, err } - if err = ec.resolvers.UpdateGroupInput().RemoveGroupMembers(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateGroupInput().RemoveGroupMembers(ctx, &it, data); err != nil { return it, err } case "updateGroupSettings": @@ -392929,7 +392650,7 @@ func (ec *executionContext) unmarshalInputUpdateGroupInput(ctx context.Context, if err != nil { return it, err } - if err = ec.resolvers.UpdateGroupInput().UpdateGroupSettings(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateGroupInput().UpdateGroupSettings(ctx, &it, data); err != nil { return it, err } case "inheritGroupPermissions": @@ -392938,12 +392659,11 @@ func (ec *executionContext) unmarshalInputUpdateGroupInput(ctx context.Context, if err != nil { return it, err } - if err = ec.resolvers.UpdateGroupInput().InheritGroupPermissions(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateGroupInput().InheritGroupPermissions(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -392991,7 +392711,6 @@ func (ec *executionContext) unmarshalInputUpdateGroupMembershipInput(ctx context it.ClearEvents = data } } - return it, nil } @@ -393067,7 +392786,6 @@ func (ec *executionContext) unmarshalInputUpdateGroupSettingInput(ctx context.Co it.ClearGroup = data } } - return it, nil } @@ -393090,11 +392808,11 @@ func (ec *executionContext) unmarshalInputUpdateHushInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -393114,11 +392832,11 @@ func (ec *executionContext) unmarshalInputUpdateHushInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -393136,11 +392854,11 @@ func (ec *executionContext) unmarshalInputUpdateHushInput(ctx context.Context, o directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -393332,7 +393050,6 @@ func (ec *executionContext) unmarshalInputUpdateHushInput(ctx context.Context, o it.ClearEvents = data } } - return it, nil } @@ -394031,7 +393748,6 @@ func (ec *executionContext) unmarshalInputUpdateIdentityHolderInput(ctx context. it.ClearUser = data } } - return it, nil } @@ -394089,11 +393805,11 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -394113,11 +393829,11 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -394135,11 +393851,11 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -394853,7 +394569,7 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateInternalPolicyInput().AddDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateInternalPolicyInput().AddDiscussion(ctx, &it, data); err != nil { return it, err } case "updateDiscussion": @@ -394862,7 +394578,7 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateInternalPolicyInput().UpdateDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateInternalPolicyInput().UpdateDiscussion(ctx, &it, data); err != nil { return it, err } case "deleteDiscussion": @@ -394871,7 +394587,7 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateInternalPolicyInput().DeleteDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateInternalPolicyInput().DeleteDiscussion(ctx, &it, data); err != nil { return it, err } case "addComment": @@ -394880,7 +394596,7 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateInternalPolicyInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateInternalPolicyInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -394889,7 +394605,7 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateInternalPolicyInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateInternalPolicyInput().DeleteComment(ctx, &it, data); err != nil { return it, err } case "RevisionBump": @@ -394898,12 +394614,11 @@ func (ec *executionContext) unmarshalInputUpdateInternalPolicyInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateInternalPolicyInput().RevisionBump(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateInternalPolicyInput().RevisionBump(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -395028,7 +394743,6 @@ func (ec *executionContext) unmarshalInputUpdateInviteInput(ctx context.Context, it.ClearGroups = data } } - return it, nil } @@ -395097,7 +394811,6 @@ func (ec *executionContext) unmarshalInputUpdateJobResultInput(ctx context.Conte it.FileID = data } } - return it, nil } @@ -395141,11 +394854,11 @@ func (ec *executionContext) unmarshalInputUpdateJobRunnerInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395165,11 +394878,11 @@ func (ec *executionContext) unmarshalInputUpdateJobRunnerInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395187,11 +394900,11 @@ func (ec *executionContext) unmarshalInputUpdateJobRunnerInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395313,7 +395026,6 @@ func (ec *executionContext) unmarshalInputUpdateJobRunnerInput(ctx context.Conte it.ClearJobRunnerTokens = data } } - return it, nil } @@ -395396,7 +395108,6 @@ func (ec *executionContext) unmarshalInputUpdateJobRunnerRegistrationTokenInput( it.ClearJobRunner = data } } - return it, nil } @@ -395542,7 +395253,6 @@ func (ec *executionContext) unmarshalInputUpdateJobRunnerTokenInput(ctx context. it.ClearJobRunners = data } } - return it, nil } @@ -395586,11 +395296,11 @@ func (ec *executionContext) unmarshalInputUpdateJobTemplateInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395610,11 +395320,11 @@ func (ec *executionContext) unmarshalInputUpdateJobTemplateInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395632,11 +395342,11 @@ func (ec *executionContext) unmarshalInputUpdateJobTemplateInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395758,7 +395468,6 @@ func (ec *executionContext) unmarshalInputUpdateJobTemplateInput(ctx context.Con it.ClearScheduledJobs = data } } - return it, nil } @@ -395820,7 +395529,6 @@ func (ec *executionContext) unmarshalInputUpdateMappableDomainInput(ctx context. it.ClearCustomDomains = data } } - return it, nil } @@ -395864,11 +395572,11 @@ func (ec *executionContext) unmarshalInputUpdateMappedControlInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395888,11 +395596,11 @@ func (ec *executionContext) unmarshalInputUpdateMappedControlInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -395910,11 +395618,11 @@ func (ec *executionContext) unmarshalInputUpdateMappedControlInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -396127,7 +395835,6 @@ func (ec *executionContext) unmarshalInputUpdateMappedControlInput(ctx context.C it.ClearToSubcontrols = data } } - return it, nil } @@ -396171,11 +395878,11 @@ func (ec *executionContext) unmarshalInputUpdateNarrativeInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -396195,11 +395902,11 @@ func (ec *executionContext) unmarshalInputUpdateNarrativeInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -396217,11 +395924,11 @@ func (ec *executionContext) unmarshalInputUpdateNarrativeInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -396427,7 +396134,6 @@ func (ec *executionContext) unmarshalInputUpdateNarrativeInput(ctx context.Conte it.ClearProcedures = data } } - return it, nil } @@ -396678,7 +396384,6 @@ func (ec *executionContext) unmarshalInputUpdateNoteInput(ctx context.Context, o it.ClearFiles = data } } - return it, nil } @@ -396747,7 +396452,6 @@ func (ec *executionContext) unmarshalInputUpdateNotificationInput(ctx context.Co it.ClearOwner = data } } - return it, nil } @@ -397033,7 +396737,6 @@ func (ec *executionContext) unmarshalInputUpdateNotificationPreferenceInput(ctx it.ClearNotificationTemplate = data } } - return it, nil } @@ -397056,11 +396759,11 @@ func (ec *executionContext) unmarshalInputUpdateNotificationTemplateInput(ctx co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -397080,11 +396783,11 @@ func (ec *executionContext) unmarshalInputUpdateNotificationTemplateInput(ctx co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -397102,11 +396805,11 @@ func (ec *executionContext) unmarshalInputUpdateNotificationTemplateInput(ctx co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -397361,7 +397064,6 @@ func (ec *executionContext) unmarshalInputUpdateNotificationTemplateInput(ctx co it.ClearNotifications = data } } - return it, nil } @@ -397409,7 +397111,6 @@ func (ec *executionContext) unmarshalInputUpdateOrgMembershipInput(ctx context.C it.ClearEvents = data } } - return it, nil } @@ -399512,7 +399213,7 @@ func (ec *executionContext) unmarshalInputUpdateOrganizationInput(ctx context.Co if err != nil { return it, err } - if err = ec.resolvers.UpdateOrganizationInput().AddOrgMembers(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateOrganizationInput().AddOrgMembers(ctx, &it, data); err != nil { return it, err } case "removeOrgMembers": @@ -399521,7 +399222,7 @@ func (ec *executionContext) unmarshalInputUpdateOrganizationInput(ctx context.Co if err != nil { return it, err } - if err = ec.resolvers.UpdateOrganizationInput().RemoveOrgMembers(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateOrganizationInput().RemoveOrgMembers(ctx, &it, data); err != nil { return it, err } case "updateOrgSettings": @@ -399530,12 +399231,11 @@ func (ec *executionContext) unmarshalInputUpdateOrganizationInput(ctx context.Co if err != nil { return it, err } - if err = ec.resolvers.UpdateOrganizationInput().UpdateOrgSettings(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateOrganizationInput().UpdateOrgSettings(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -399919,7 +399619,6 @@ func (ec *executionContext) unmarshalInputUpdateOrganizationSettingInput(ctx con it.ClearFiles = data } } - return it, nil } @@ -400086,7 +399785,6 @@ func (ec *executionContext) unmarshalInputUpdatePersonalAccessTokenInput(ctx con it.ClearEvents = data } } - return it, nil } @@ -401268,7 +400966,6 @@ func (ec *executionContext) unmarshalInputUpdatePlatformInput(ctx context.Contex it.ClearPlatformOwner = data } } - return it, nil } @@ -401564,11 +401261,11 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -401588,11 +401285,11 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -401610,11 +401307,11 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -402048,7 +401745,7 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte if err != nil { return it, err } - if err = ec.resolvers.UpdateProcedureInput().AddDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProcedureInput().AddDiscussion(ctx, &it, data); err != nil { return it, err } case "updateDiscussion": @@ -402057,7 +401754,7 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte if err != nil { return it, err } - if err = ec.resolvers.UpdateProcedureInput().UpdateDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProcedureInput().UpdateDiscussion(ctx, &it, data); err != nil { return it, err } case "deleteDiscussion": @@ -402066,7 +401763,7 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte if err != nil { return it, err } - if err = ec.resolvers.UpdateProcedureInput().DeleteDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProcedureInput().DeleteDiscussion(ctx, &it, data); err != nil { return it, err } case "addComment": @@ -402075,7 +401772,7 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte if err != nil { return it, err } - if err = ec.resolvers.UpdateProcedureInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProcedureInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -402084,7 +401781,7 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte if err != nil { return it, err } - if err = ec.resolvers.UpdateProcedureInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProcedureInput().DeleteComment(ctx, &it, data); err != nil { return it, err } case "RevisionBump": @@ -402093,12 +401790,11 @@ func (ec *executionContext) unmarshalInputUpdateProcedureInput(ctx context.Conte if err != nil { return it, err } - if err = ec.resolvers.UpdateProcedureInput().RevisionBump(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProcedureInput().RevisionBump(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -402647,7 +402343,7 @@ func (ec *executionContext) unmarshalInputUpdateProgramInput(ctx context.Context if err != nil { return it, err } - if err = ec.resolvers.UpdateProgramInput().AddProgramMembers(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProgramInput().AddProgramMembers(ctx, &it, data); err != nil { return it, err } case "removeProgramMembers": @@ -402656,12 +402352,11 @@ func (ec *executionContext) unmarshalInputUpdateProgramInput(ctx context.Context if err != nil { return it, err } - if err = ec.resolvers.UpdateProgramInput().RemoveProgramMembers(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateProgramInput().RemoveProgramMembers(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -402688,7 +402383,6 @@ func (ec *executionContext) unmarshalInputUpdateProgramMembershipInput(ctx conte it.Role = data } } - return it, nil } @@ -402732,11 +402426,11 @@ func (ec *executionContext) unmarshalInputUpdateRemediationInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -402756,11 +402450,11 @@ func (ec *executionContext) unmarshalInputUpdateRemediationInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -402778,11 +402472,11 @@ func (ec *executionContext) unmarshalInputUpdateRemediationInput(ctx context.Con directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -403506,7 +403200,6 @@ func (ec *executionContext) unmarshalInputUpdateRemediationInput(ctx context.Con it.ClearFiles = data } } - return it, nil } @@ -403550,11 +403243,11 @@ func (ec *executionContext) unmarshalInputUpdateReviewInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -403574,11 +403267,11 @@ func (ec *executionContext) unmarshalInputUpdateReviewInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -403596,11 +403289,11 @@ func (ec *executionContext) unmarshalInputUpdateReviewInput(ctx context.Context, directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -404282,7 +403975,6 @@ func (ec *executionContext) unmarshalInputUpdateReviewInput(ctx context.Context, it.ClearFiles = data } } - return it, nil } @@ -404971,7 +404663,7 @@ func (ec *executionContext) unmarshalInputUpdateRiskInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.UpdateRiskInput().AddDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateRiskInput().AddDiscussion(ctx, &it, data); err != nil { return it, err } case "updateDiscussion": @@ -404980,7 +404672,7 @@ func (ec *executionContext) unmarshalInputUpdateRiskInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.UpdateRiskInput().UpdateDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateRiskInput().UpdateDiscussion(ctx, &it, data); err != nil { return it, err } case "deleteDiscussion": @@ -404989,7 +404681,7 @@ func (ec *executionContext) unmarshalInputUpdateRiskInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.UpdateRiskInput().DeleteDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateRiskInput().DeleteDiscussion(ctx, &it, data); err != nil { return it, err } case "addComment": @@ -404998,7 +404690,7 @@ func (ec *executionContext) unmarshalInputUpdateRiskInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.UpdateRiskInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateRiskInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -405007,12 +404699,11 @@ func (ec *executionContext) unmarshalInputUpdateRiskInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.UpdateRiskInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateRiskInput().DeleteComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -405634,7 +405325,6 @@ func (ec *executionContext) unmarshalInputUpdateScanInput(ctx context.Context, o it.ClearPerformedByGroup = data } } - return it, nil } @@ -405759,7 +405449,6 @@ func (ec *executionContext) unmarshalInputUpdateScheduledJobInput(ctx context.Co it.ClearJobRunner = data } } - return it, nil } @@ -405814,7 +405503,6 @@ func (ec *executionContext) unmarshalInputUpdateScheduledJobRunInput(ctx context it.JobRunnerID = data } } - return it, nil } @@ -405872,11 +405560,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -405896,11 +405584,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -405918,11 +405606,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -406075,11 +405763,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2ᚖbool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -406099,11 +405787,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -406121,11 +405809,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2ᚖbool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -406145,11 +405833,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -406308,12 +405996,11 @@ func (ec *executionContext) unmarshalInputUpdateStandardInput(ctx context.Contex if err != nil { return it, err } - if err = ec.resolvers.UpdateStandardInput().RevisionBump(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateStandardInput().RevisionBump(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -406362,11 +406049,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406391,11 +406078,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406418,11 +406105,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406447,11 +406134,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406560,11 +406247,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *enums.ControlSource return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *enums.ControlSource return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406589,11 +406276,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406616,11 +406303,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406645,11 +406332,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406672,11 +406359,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406701,11 +406388,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406728,11 +406415,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406764,11 +406451,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -406793,11 +406480,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -407004,11 +406691,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407028,11 +406715,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407050,11 +406737,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407114,11 +406801,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -407475,7 +407162,7 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateSubcontrolInput().AddDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateSubcontrolInput().AddDiscussion(ctx, &it, data); err != nil { return it, err } case "updateDiscussion": @@ -407484,7 +407171,7 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateSubcontrolInput().UpdateDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateSubcontrolInput().UpdateDiscussion(ctx, &it, data); err != nil { return it, err } case "deleteDiscussion": @@ -407493,7 +407180,7 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateSubcontrolInput().DeleteDiscussion(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateSubcontrolInput().DeleteDiscussion(ctx, &it, data); err != nil { return it, err } case "addComment": @@ -407502,7 +407189,7 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateSubcontrolInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateSubcontrolInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -407511,12 +407198,11 @@ func (ec *executionContext) unmarshalInputUpdateSubcontrolInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateSubcontrolInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateSubcontrolInput().DeleteComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -407560,11 +407246,11 @@ func (ec *executionContext) unmarshalInputUpdateSubprocessorInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407584,11 +407270,11 @@ func (ec *executionContext) unmarshalInputUpdateSubprocessorInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407606,11 +407292,11 @@ func (ec *executionContext) unmarshalInputUpdateSubprocessorInput(ctx context.Co directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407725,7 +407411,6 @@ func (ec *executionContext) unmarshalInputUpdateSubprocessorInput(ctx context.Co it.ClearEntities = data } } - return it, nil } @@ -407829,7 +407514,6 @@ func (ec *executionContext) unmarshalInputUpdateSubscriberInput(ctx context.Cont it.ClearEvents = data } } - return it, nil } @@ -407874,12 +407558,11 @@ func (ec *executionContext) unmarshalInputUpdateTFASettingInput(ctx context.Cont if err != nil { return it, err } - if err = ec.resolvers.UpdateTFASettingInput().RegenBackupCodes(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTFASettingInput().RegenBackupCodes(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -407902,11 +407585,11 @@ func (ec *executionContext) unmarshalInputUpdateTagDefinitionInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407926,11 +407609,11 @@ func (ec *executionContext) unmarshalInputUpdateTagDefinitionInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -407948,11 +407631,11 @@ func (ec *executionContext) unmarshalInputUpdateTagDefinitionInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -408039,7 +407722,6 @@ func (ec *executionContext) unmarshalInputUpdateTagDefinitionInput(ctx context.C it.ClearOwner = data } } - return it, nil } @@ -408207,11 +407889,11 @@ func (ec *executionContext) unmarshalInputUpdateTaskInput(ctx context.Context, o var zeroVal *bool return zeroVal, err } - if ec.directives.ExternalReadOnly == nil { + if ec.Directives.ExternalReadOnly == nil { var zeroVal *bool return zeroVal, errors.New("directive externalReadOnly is not implemented") } - return ec.directives.ExternalReadOnly(ctx, obj, directive0, source) + return ec.Directives.ExternalReadOnly(ctx, obj, directive0, source) } tmp, err := directive1(ctx) @@ -408694,7 +408376,7 @@ func (ec *executionContext) unmarshalInputUpdateTaskInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.UpdateTaskInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTaskInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -408703,12 +408385,11 @@ func (ec *executionContext) unmarshalInputUpdateTaskInput(ctx context.Context, o if err != nil { return it, err } - if err = ec.resolvers.UpdateTaskInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTaskInput().DeleteComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -408752,11 +408433,11 @@ func (ec *executionContext) unmarshalInputUpdateTemplateInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -408776,11 +408457,11 @@ func (ec *executionContext) unmarshalInputUpdateTemplateInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -408798,11 +408479,11 @@ func (ec *executionContext) unmarshalInputUpdateTemplateInput(ctx context.Contex directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -409064,7 +408745,6 @@ func (ec *executionContext) unmarshalInputUpdateTemplateInput(ctx context.Contex it.ClearIdentityHolders = data } } - return it, nil } @@ -409154,7 +408834,6 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterComplianceInput(ctx c it.StandardID = data } } - return it, nil } @@ -409356,7 +409035,6 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterDocInput(ctx context. it.ClearOriginalFile = data } } - return it, nil } @@ -409446,7 +409124,6 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterEntityInput(ctx conte it.ClearLogoFile = data } } - return it, nil } @@ -409568,7 +409245,7 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterFAQInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateTrustCenterFAQInput().AddComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTrustCenterFAQInput().AddComment(ctx, &it, data); err != nil { return it, err } case "deleteComment": @@ -409577,12 +409254,11 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterFAQInput(ctx context. if err != nil { return it, err } - if err = ec.resolvers.UpdateTrustCenterFAQInput().DeleteComment(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTrustCenterFAQInput().DeleteComment(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -409991,7 +409667,7 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterInput(ctx context.Con if err != nil { return it, err } - if err = ec.resolvers.UpdateTrustCenterInput().AddPost(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTrustCenterInput().AddPost(ctx, &it, data); err != nil { return it, err } case "deletePost": @@ -410000,7 +409676,7 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterInput(ctx context.Con if err != nil { return it, err } - if err = ec.resolvers.UpdateTrustCenterInput().DeletePost(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTrustCenterInput().DeletePost(ctx, &it, data); err != nil { return it, err } case "updateTrustCenterSetting": @@ -410009,12 +409685,11 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterInput(ctx context.Con if err != nil { return it, err } - if err = ec.resolvers.UpdateTrustCenterInput().UpdateTrustCenterSetting(ctx, &it, data); err != nil { + if err = ec.Resolvers.UpdateTrustCenterInput().UpdateTrustCenterSetting(ctx, &it, data); err != nil { return it, err } } } - return it, nil } @@ -410265,7 +409940,6 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterNDARequestInput(ctx c it.ClearFile = data } } - return it, nil } @@ -410621,7 +410295,6 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterSettingInput(ctx cont it.ClearFaviconFile = data } } - return it, nil } @@ -410732,7 +410405,6 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterSubprocessorInput(ctx it.ClearEditors = data } } - return it, nil } @@ -410927,7 +410599,6 @@ func (ec *executionContext) unmarshalInputUpdateTrustCenterWatermarkConfigInput( it.ClearFile = data } } - return it, nil } @@ -411584,7 +411255,6 @@ func (ec *executionContext) unmarshalInputUpdateUserInput(ctx context.Context, o it.ClearTargetedImpersonations = data } } - return it, nil } @@ -411758,7 +411428,6 @@ func (ec *executionContext) unmarshalInputUpdateUserSettingInput(ctx context.Con it.ClearDefaultOrg = data } } - return it, nil } @@ -411802,11 +411471,11 @@ func (ec *executionContext) unmarshalInputUpdateVulnerabilityInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -411826,11 +411495,11 @@ func (ec *executionContext) unmarshalInputUpdateVulnerabilityInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -411848,11 +411517,11 @@ func (ec *executionContext) unmarshalInputUpdateVulnerabilityInput(ctx context.C directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -412723,7 +412392,6 @@ func (ec *executionContext) unmarshalInputUpdateVulnerabilityInput(ctx context.C it.ClearFiles = data } } - return it, nil } @@ -412767,11 +412435,11 @@ func (ec *executionContext) unmarshalInputUpdateWorkflowDefinitionInput(ctx cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -412791,11 +412459,11 @@ func (ec *executionContext) unmarshalInputUpdateWorkflowDefinitionInput(ctx cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOBoolean2bool(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal bool return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -412813,11 +412481,11 @@ func (ec *executionContext) unmarshalInputUpdateWorkflowDefinitionInput(ctx cont directive0 := func(ctx context.Context) (any, error) { return ec.unmarshalOString2ᚖstring(ctx, v) } directive1 := func(ctx context.Context) (any, error) { - if ec.directives.ReadOnly == nil { + if ec.Directives.ReadOnly == nil { var zeroVal *string return zeroVal, errors.New("directive readOnly is not implemented") } - return ec.directives.ReadOnly(ctx, obj, directive0) + return ec.Directives.ReadOnly(ctx, obj, directive0) } tmp, err := directive1(ctx) @@ -413044,7 +412712,6 @@ func (ec *executionContext) unmarshalInputUpdateWorkflowDefinitionInput(ctx cont it.ClearEmailTemplates = data } } - return it, nil } @@ -413082,7 +412749,6 @@ func (ec *executionContext) unmarshalInputUserOrder(ctx context.Context, obj any it.Field = data } } - return it, nil } @@ -413120,7 +412786,6 @@ func (ec *executionContext) unmarshalInputUserSettingOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -414190,7 +413855,6 @@ func (ec *executionContext) unmarshalInputUserSettingWhereInput(ctx context.Cont it.TagsHas = data } } - return it, nil } @@ -416450,7 +416114,6 @@ func (ec *executionContext) unmarshalInputUserWhereInput(ctx context.Context, ob it.TagsHas = data } } - return it, nil } @@ -416488,7 +416151,6 @@ func (ec *executionContext) unmarshalInputVulnerabilityOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -420099,7 +419761,6 @@ func (ec *executionContext) unmarshalInputVulnerabilityWhereInput(ctx context.Co it.ImpactsHas = data } } - return it, nil } @@ -420137,7 +419798,6 @@ func (ec *executionContext) unmarshalInputWebauthnOrder(ctx context.Context, obj it.Field = data } } - return it, nil } @@ -420619,7 +420279,6 @@ func (ec *executionContext) unmarshalInputWebauthnWhereInput(ctx context.Context it.TagsHas = data } } - return it, nil } @@ -420657,7 +420316,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -420695,7 +420353,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentTargetOrder(ctx cont it.Field = data } } - return it, nil } @@ -421849,7 +421506,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentTargetWhereInput(ctx it.TagsHas = data } } - return it, nil } @@ -423458,7 +423114,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentWhereInput(ctx conte it.TagsHas = data } } - return it, nil } @@ -423496,7 +423151,6 @@ func (ec *executionContext) unmarshalInputWorkflowDefinitionOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -425014,7 +424668,6 @@ func (ec *executionContext) unmarshalInputWorkflowDefinitionWhereInput(ctx conte it.TrackedFieldsHas = data } } - return it, nil } @@ -425052,7 +424705,6 @@ func (ec *executionContext) unmarshalInputWorkflowEventOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -425863,7 +425515,6 @@ func (ec *executionContext) unmarshalInputWorkflowEventWhereInput(ctx context.Co it.TagsHas = data } } - return it, nil } @@ -425901,7 +425552,6 @@ func (ec *executionContext) unmarshalInputWorkflowInstanceOrder(ctx context.Cont it.Field = data } } - return it, nil } @@ -428189,7 +427839,6 @@ func (ec *executionContext) unmarshalInputWorkflowInstanceWhereInput(ctx context it.TagsHas = data } } - return it, nil } @@ -428227,7 +427876,6 @@ func (ec *executionContext) unmarshalInputWorkflowObjectRefOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -430788,7 +430436,6 @@ func (ec *executionContext) unmarshalInputWorkflowObjectRefWhereInput(ctx contex it.HasPlatformWith = data } } - return it, nil } @@ -431388,10 +431035,10 @@ func (ec *executionContext) _APIToken(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -431434,10 +431081,10 @@ func (ec *executionContext) _APITokenConnection(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -431475,10 +431122,10 @@ func (ec *executionContext) _APITokenEdge(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -432423,10 +432070,10 @@ func (ec *executionContext) _ActionPlan(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -432469,10 +432116,10 @@ func (ec *executionContext) _ActionPlanConnection(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -432510,10 +432157,10 @@ func (ec *executionContext) _ActionPlanEdge(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -432897,10 +432544,10 @@ func (ec *executionContext) _Assessment(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -432943,10 +432590,10 @@ func (ec *executionContext) _AssessmentConnection(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -432984,10 +432631,10 @@ func (ec *executionContext) _AssessmentEdge(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -433300,10 +432947,10 @@ func (ec *executionContext) _AssessmentResponse(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -433346,10 +432993,10 @@ func (ec *executionContext) _AssessmentResponseConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -433387,10 +433034,10 @@ func (ec *executionContext) _AssessmentResponseEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -434317,10 +433964,10 @@ func (ec *executionContext) _Asset(ctx context.Context, sel ast.SelectionSet, ob return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -434363,10 +434010,10 @@ func (ec *executionContext) _AssetConnection(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -434404,10 +434051,10 @@ func (ec *executionContext) _AssetEdge(ctx context.Context, sel ast.SelectionSet return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -435303,10 +434950,10 @@ func (ec *executionContext) _Campaign(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -435349,10 +434996,10 @@ func (ec *executionContext) _CampaignConnection(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -435390,10 +435037,10 @@ func (ec *executionContext) _CampaignEdge(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -435818,10 +435465,10 @@ func (ec *executionContext) _CampaignTarget(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -435864,10 +435511,10 @@ func (ec *executionContext) _CampaignTargetConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -435905,10 +435552,10 @@ func (ec *executionContext) _CampaignTargetEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -436150,10 +435797,10 @@ func (ec *executionContext) _Contact(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -436196,10 +435843,10 @@ func (ec *executionContext) _ContactConnection(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -436237,10 +435884,10 @@ func (ec *executionContext) _ContactEdge(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -437574,10 +437221,10 @@ func (ec *executionContext) _Control(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -437620,10 +437267,10 @@ func (ec *executionContext) _ControlConnection(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -437661,10 +437308,10 @@ func (ec *executionContext) _ControlEdge(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -437979,10 +437626,10 @@ func (ec *executionContext) _ControlImplementation(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438025,10 +437672,10 @@ func (ec *executionContext) _ControlImplementationConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438066,10 +437713,10 @@ func (ec *executionContext) _ControlImplementationEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438614,10 +438261,10 @@ func (ec *executionContext) _ControlObjective(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438660,10 +438307,10 @@ func (ec *executionContext) _ControlObjectiveConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438701,10 +438348,10 @@ func (ec *executionContext) _ControlObjectiveEdge(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438874,10 +438521,10 @@ func (ec *executionContext) _CustomDomain(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438920,10 +438567,10 @@ func (ec *executionContext) _CustomDomainConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438961,10 +438608,10 @@ func (ec *executionContext) _CustomDomainEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -439430,10 +439077,10 @@ func (ec *executionContext) _CustomTypeEnum(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -439476,10 +439123,10 @@ func (ec *executionContext) _CustomTypeEnumConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -439517,10 +439164,10 @@ func (ec *executionContext) _CustomTypeEnumEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -439670,10 +439317,10 @@ func (ec *executionContext) _DNSVerification(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -439716,10 +439363,10 @@ func (ec *executionContext) _DNSVerificationConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -439757,10 +439404,10 @@ func (ec *executionContext) _DNSVerificationEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440298,10 +439945,10 @@ func (ec *executionContext) _DirectoryAccount(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440344,10 +439991,10 @@ func (ec *executionContext) _DirectoryAccountConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440385,10 +440032,10 @@ func (ec *executionContext) _DirectoryAccountEdge(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440814,10 +440461,10 @@ func (ec *executionContext) _DirectoryGroup(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440860,10 +440507,10 @@ func (ec *executionContext) _DirectoryGroupConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440901,10 +440548,10 @@ func (ec *executionContext) _DirectoryGroupEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -441350,10 +440997,10 @@ func (ec *executionContext) _DirectoryMembership(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -441396,10 +441043,10 @@ func (ec *executionContext) _DirectoryMembershipConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -441437,10 +441084,10 @@ func (ec *executionContext) _DirectoryMembershipEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -441812,10 +441459,10 @@ func (ec *executionContext) _DirectorySyncRun(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -441858,10 +441505,10 @@ func (ec *executionContext) _DirectorySyncRunConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -441899,10 +441546,10 @@ func (ec *executionContext) _DirectorySyncRunEdge(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442189,10 +441836,10 @@ func (ec *executionContext) _Discussion(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442235,10 +441882,10 @@ func (ec *executionContext) _DiscussionConnection(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442276,10 +441923,10 @@ func (ec *executionContext) _DiscussionEdge(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442546,10 +442193,10 @@ func (ec *executionContext) _DocumentData(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442592,10 +442239,10 @@ func (ec *executionContext) _DocumentDataConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442633,10 +442280,10 @@ func (ec *executionContext) _DocumentDataEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442924,10 +442571,10 @@ func (ec *executionContext) _EmailBranding(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -442970,10 +442617,10 @@ func (ec *executionContext) _EmailBrandingConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -443011,10 +442658,10 @@ func (ec *executionContext) _EmailBrandingEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -443357,10 +443004,10 @@ func (ec *executionContext) _EmailTemplate(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -443403,10 +443050,10 @@ func (ec *executionContext) _EmailTemplateConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -443444,10 +443091,10 @@ func (ec *executionContext) _EmailTemplateEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -444644,10 +444291,10 @@ func (ec *executionContext) _Entity(ctx context.Context, sel ast.SelectionSet, o return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -444690,10 +444337,10 @@ func (ec *executionContext) _EntityConnection(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -444731,10 +444378,10 @@ func (ec *executionContext) _EntityEdge(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -444862,10 +444509,10 @@ func (ec *executionContext) _EntityType(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -444908,10 +444555,10 @@ func (ec *executionContext) _EntityTypeConnection(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -444949,10 +444596,10 @@ func (ec *executionContext) _EntityTypeEdge(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -445441,10 +445088,10 @@ func (ec *executionContext) _Event(ctx context.Context, sel ast.SelectionSet, ob return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -445487,10 +445134,10 @@ func (ec *executionContext) _EventConnection(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -445528,10 +445175,10 @@ func (ec *executionContext) _EventEdge(ctx context.Context, sel ast.SelectionSet return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -446257,10 +445904,10 @@ func (ec *executionContext) _Evidence(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -446303,10 +445950,10 @@ func (ec *executionContext) _EvidenceConnection(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -446344,10 +445991,10 @@ func (ec *executionContext) _EvidenceEdge(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -446521,10 +446168,10 @@ func (ec *executionContext) _Export(ctx context.Context, sel ast.SelectionSet, o return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -446567,10 +446214,10 @@ func (ec *executionContext) _ExportConnection(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -446608,10 +446255,10 @@ func (ec *executionContext) _ExportEdge(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -447360,10 +447007,10 @@ func (ec *executionContext) _File(ctx context.Context, sel ast.SelectionSet, obj return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -447406,10 +447053,10 @@ func (ec *executionContext) _FileConnection(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -447447,10 +447094,10 @@ func (ec *executionContext) _FileEdge(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448482,10 +448129,10 @@ func (ec *executionContext) _Finding(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448528,10 +448175,10 @@ func (ec *executionContext) _FindingConnection(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448704,10 +448351,10 @@ func (ec *executionContext) _FindingControl(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448750,10 +448397,10 @@ func (ec *executionContext) _FindingControlConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448791,10 +448438,10 @@ func (ec *executionContext) _FindingControlEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448832,10 +448479,10 @@ func (ec *executionContext) _FindingEdge(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -450672,10 +450319,10 @@ func (ec *executionContext) _Group(ctx context.Context, sel ast.SelectionSet, ob return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -450718,10 +450365,10 @@ func (ec *executionContext) _GroupConnection(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -450759,10 +450406,10 @@ func (ec *executionContext) _GroupEdge(ctx context.Context, sel ast.SelectionSet return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -450929,10 +450576,10 @@ func (ec *executionContext) _GroupMembership(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -450975,10 +450622,10 @@ func (ec *executionContext) _GroupMembershipConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -451016,10 +450663,10 @@ func (ec *executionContext) _GroupMembershipEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -451112,10 +450759,10 @@ func (ec *executionContext) _GroupSetting(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -451158,10 +450805,10 @@ func (ec *executionContext) _GroupSettingConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -451199,10 +450846,10 @@ func (ec *executionContext) _GroupSettingEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -451414,10 +451061,10 @@ func (ec *executionContext) _Hush(ctx context.Context, sel ast.SelectionSet, obj return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -451460,10 +451107,10 @@ func (ec *executionContext) _HushConnection(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -451501,10 +451148,10 @@ func (ec *executionContext) _HushEdge(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -452541,10 +452188,10 @@ func (ec *executionContext) _IdentityHolder(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -452587,10 +452234,10 @@ func (ec *executionContext) _IdentityHolderConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -452628,10 +452275,10 @@ func (ec *executionContext) _IdentityHolderEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -453416,10 +453063,10 @@ func (ec *executionContext) _Integration(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -453462,10 +453109,10 @@ func (ec *executionContext) _IntegrationConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -453503,10 +453150,10 @@ func (ec *executionContext) _IntegrationEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454499,10 +454146,10 @@ func (ec *executionContext) _InternalPolicy(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454545,10 +454192,10 @@ func (ec *executionContext) _InternalPolicyConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454586,10 +454233,10 @@ func (ec *executionContext) _InternalPolicyEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454766,10 +454413,10 @@ func (ec *executionContext) _Invite(ctx context.Context, sel ast.SelectionSet, o return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454812,10 +454459,10 @@ func (ec *executionContext) _InviteConnection(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454853,10 +454500,10 @@ func (ec *executionContext) _InviteEdge(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455039,10 +454686,10 @@ func (ec *executionContext) _JobResult(ctx context.Context, sel ast.SelectionSet return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455085,10 +454732,10 @@ func (ec *executionContext) _JobResultConnection(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455126,10 +454773,10 @@ func (ec *executionContext) _JobResultEdge(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455275,10 +454922,10 @@ func (ec *executionContext) _JobRunner(ctx context.Context, sel ast.SelectionSet return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455321,10 +454968,10 @@ func (ec *executionContext) _JobRunnerConnection(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455362,10 +455009,10 @@ func (ec *executionContext) _JobRunnerEdge(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455493,10 +455140,10 @@ func (ec *executionContext) _JobRunnerRegistrationToken(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455539,10 +455186,10 @@ func (ec *executionContext) _JobRunnerRegistrationTokenConnection(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455580,10 +455227,10 @@ func (ec *executionContext) _JobRunnerRegistrationTokenEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455717,10 +455364,10 @@ func (ec *executionContext) _JobRunnerToken(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455763,10 +455410,10 @@ func (ec *executionContext) _JobRunnerTokenConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455804,10 +455451,10 @@ func (ec *executionContext) _JobRunnerTokenEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -455956,10 +455603,10 @@ func (ec *executionContext) _JobTemplate(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456002,10 +455649,10 @@ func (ec *executionContext) _JobTemplateConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456043,10 +455690,10 @@ func (ec *executionContext) _JobTemplateEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456138,10 +455785,10 @@ func (ec *executionContext) _MappableDomain(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456184,10 +455831,10 @@ func (ec *executionContext) _MappableDomainConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456225,10 +455872,10 @@ func (ec *executionContext) _MappableDomainEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456542,10 +456189,10 @@ func (ec *executionContext) _MappedControl(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456588,10 +456235,10 @@ func (ec *executionContext) _MappedControlConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456629,10 +456276,10 @@ func (ec *executionContext) _MappedControlEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456985,10 +456632,10 @@ func (ec *executionContext) _Narrative(ctx context.Context, sel ast.SelectionSet return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457031,10 +456678,10 @@ func (ec *executionContext) _NarrativeConnection(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457072,10 +456719,10 @@ func (ec *executionContext) _NarrativeEdge(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457548,10 +457195,10 @@ func (ec *executionContext) _Note(ctx context.Context, sel ast.SelectionSet, obj return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457594,10 +457241,10 @@ func (ec *executionContext) _NoteConnection(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457635,10 +457282,10 @@ func (ec *executionContext) _NoteEdge(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457815,10 +457462,10 @@ func (ec *executionContext) _Notification(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457861,10 +457508,10 @@ func (ec *executionContext) _NotificationConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -457902,10 +457549,10 @@ func (ec *executionContext) _NotificationEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458113,10 +457760,10 @@ func (ec *executionContext) _NotificationPreference(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458159,10 +457806,10 @@ func (ec *executionContext) _NotificationPreferenceConnection(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458200,10 +457847,10 @@ func (ec *executionContext) _NotificationPreferenceEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458485,10 +458132,10 @@ func (ec *executionContext) _NotificationTemplate(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458531,10 +458178,10 @@ func (ec *executionContext) _NotificationTemplateConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458572,10 +458219,10 @@ func (ec *executionContext) _NotificationTemplateEdge(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458659,10 +458306,10 @@ func (ec *executionContext) _Onboarding(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458829,10 +458476,10 @@ func (ec *executionContext) _OrgMembership(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458875,10 +458522,10 @@ func (ec *executionContext) _OrgMembershipConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -458916,10 +458563,10 @@ func (ec *executionContext) _OrgMembershipEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -459053,10 +458700,10 @@ func (ec *executionContext) _OrgSubscription(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -459099,10 +458746,10 @@ func (ec *executionContext) _OrgSubscriptionConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -459140,10 +458787,10 @@ func (ec *executionContext) _OrgSubscriptionEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -462804,10 +462451,10 @@ func (ec *executionContext) _Organization(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -462850,10 +462497,10 @@ func (ec *executionContext) _OrganizationConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -462891,10 +462538,10 @@ func (ec *executionContext) _OrganizationEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463071,10 +462718,10 @@ func (ec *executionContext) _OrganizationSetting(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463117,10 +462764,10 @@ func (ec *executionContext) _OrganizationSettingConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463158,10 +462805,10 @@ func (ec *executionContext) _OrganizationSettingEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463206,10 +462853,10 @@ func (ec *executionContext) _PageInfo(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463391,10 +463038,10 @@ func (ec *executionContext) _PersonalAccessToken(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463437,10 +463084,10 @@ func (ec *executionContext) _PersonalAccessTokenConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463478,10 +463125,10 @@ func (ec *executionContext) _PersonalAccessTokenEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -465275,10 +464922,10 @@ func (ec *executionContext) _Platform(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -465321,10 +464968,10 @@ func (ec *executionContext) _PlatformConnection(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -465362,10 +465009,10 @@ func (ec *executionContext) _PlatformEdge(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -466286,10 +465933,10 @@ func (ec *executionContext) _Procedure(ctx context.Context, sel ast.SelectionSet return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -466332,10 +465979,10 @@ func (ec *executionContext) _ProcedureConnection(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -466373,10 +466020,10 @@ func (ec *executionContext) _ProcedureEdge(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -467185,10 +466832,10 @@ func (ec *executionContext) _Program(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -467231,10 +466878,10 @@ func (ec *executionContext) _ProgramConnection(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -467272,10 +466919,10 @@ func (ec *executionContext) _ProgramEdge(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -467406,10 +467053,10 @@ func (ec *executionContext) _ProgramMembership(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -467452,10 +467099,10 @@ func (ec *executionContext) _ProgramMembershipConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -467493,10 +467140,10 @@ func (ec *executionContext) _ProgramMembershipEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -472638,10 +472285,10 @@ func (ec *executionContext) _Query(ctx context.Context, sel ast.SelectionSet) gr return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -473493,10 +473140,10 @@ func (ec *executionContext) _Remediation(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -473539,10 +473186,10 @@ func (ec *executionContext) _RemediationConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -473580,10 +473227,10 @@ func (ec *executionContext) _RemediationEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -474428,10 +474075,10 @@ func (ec *executionContext) _Review(ctx context.Context, sel ast.SelectionSet, o return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -474474,10 +474121,10 @@ func (ec *executionContext) _ReviewConnection(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -474515,10 +474162,10 @@ func (ec *executionContext) _ReviewEdge(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -475423,10 +475070,10 @@ func (ec *executionContext) _Risk(ctx context.Context, sel ast.SelectionSet, obj return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -475469,10 +475116,10 @@ func (ec *executionContext) _RiskConnection(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -475510,10 +475157,10 @@ func (ec *executionContext) _RiskEdge(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -476412,10 +476059,10 @@ func (ec *executionContext) _Scan(ctx context.Context, sel ast.SelectionSet, obj return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -476458,10 +476105,10 @@ func (ec *executionContext) _ScanConnection(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -476499,10 +476146,10 @@ func (ec *executionContext) _ScanEdge(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -476743,10 +476390,10 @@ func (ec *executionContext) _ScheduledJob(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -476789,10 +476436,10 @@ func (ec *executionContext) _ScheduledJobConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -476830,10 +476477,10 @@ func (ec *executionContext) _ScheduledJobEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477009,10 +476656,10 @@ func (ec *executionContext) _ScheduledJobRun(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477055,10 +476702,10 @@ func (ec *executionContext) _ScheduledJobRunConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477096,10 +476743,10 @@ func (ec *executionContext) _ScheduledJobRunEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477396,10 +477043,10 @@ func (ec *executionContext) _Standard(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477442,10 +477089,10 @@ func (ec *executionContext) _StandardConnection(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477483,10 +477130,10 @@ func (ec *executionContext) _StandardEdge(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478424,10 +478071,10 @@ func (ec *executionContext) _Subcontrol(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478470,10 +478117,10 @@ func (ec *executionContext) _SubcontrolConnection(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478511,10 +478158,10 @@ func (ec *executionContext) _SubcontrolEdge(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478717,10 +478364,10 @@ func (ec *executionContext) _Subprocessor(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478763,10 +478410,10 @@ func (ec *executionContext) _SubprocessorConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478804,10 +478451,10 @@ func (ec *executionContext) _SubprocessorEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478956,10 +478603,10 @@ func (ec *executionContext) _Subscriber(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479002,10 +478649,10 @@ func (ec *executionContext) _SubscriberConnection(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479043,10 +478690,10 @@ func (ec *executionContext) _SubscriberEdge(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479130,10 +478777,10 @@ func (ec *executionContext) _TFASetting(ctx context.Context, sel ast.SelectionSe return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479176,10 +478823,10 @@ func (ec *executionContext) _TFASettingConnection(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479217,10 +478864,10 @@ func (ec *executionContext) _TFASettingEdge(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479318,10 +478965,10 @@ func (ec *executionContext) _TagDefinition(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479364,10 +479011,10 @@ func (ec *executionContext) _TagDefinitionConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -479405,10 +479052,10 @@ func (ec *executionContext) _TagDefinitionEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480346,10 +479993,10 @@ func (ec *executionContext) _Task(ctx context.Context, sel ast.SelectionSet, obj return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480392,10 +480039,10 @@ func (ec *executionContext) _TaskConnection(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480433,10 +480080,10 @@ func (ec *executionContext) _TaskEdge(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480833,10 +480480,10 @@ func (ec *executionContext) _Template(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480879,10 +480526,10 @@ func (ec *executionContext) _TemplateConnection(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480920,10 +480567,10 @@ func (ec *executionContext) _TemplateEdge(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -481545,10 +481192,10 @@ func (ec *executionContext) _TrustCenter(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -481742,10 +481389,10 @@ func (ec *executionContext) _TrustCenterCompliance(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -481788,10 +481435,10 @@ func (ec *executionContext) _TrustCenterComplianceConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -481829,10 +481476,10 @@ func (ec *executionContext) _TrustCenterComplianceEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -481875,10 +481522,10 @@ func (ec *executionContext) _TrustCenterConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482184,10 +481831,10 @@ func (ec *executionContext) _TrustCenterDoc(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482230,10 +481877,10 @@ func (ec *executionContext) _TrustCenterDocConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482271,10 +481918,10 @@ func (ec *executionContext) _TrustCenterDocEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482312,10 +481959,10 @@ func (ec *executionContext) _TrustCenterEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482543,10 +482190,10 @@ func (ec *executionContext) _TrustCenterEntity(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482589,10 +482236,10 @@ func (ec *executionContext) _TrustCenterEntityConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482630,10 +482277,10 @@ func (ec *executionContext) _TrustCenterEntityEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482866,10 +482513,10 @@ func (ec *executionContext) _TrustCenterFAQ(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482912,10 +482559,10 @@ func (ec *executionContext) _TrustCenterFAQConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -482953,10 +482600,10 @@ func (ec *executionContext) _TrustCenterFAQEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483244,10 +482891,10 @@ func (ec *executionContext) _TrustCenterNDARequest(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483290,10 +482937,10 @@ func (ec *executionContext) _TrustCenterNDARequestConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483331,10 +482978,10 @@ func (ec *executionContext) _TrustCenterNDARequestEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483562,10 +483209,10 @@ func (ec *executionContext) _TrustCenterSetting(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483608,10 +483255,10 @@ func (ec *executionContext) _TrustCenterSettingConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483649,10 +483296,10 @@ func (ec *executionContext) _TrustCenterSettingEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483883,10 +483530,10 @@ func (ec *executionContext) _TrustCenterSubprocessor(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483929,10 +483576,10 @@ func (ec *executionContext) _TrustCenterSubprocessorConnection(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -483970,10 +483617,10 @@ func (ec *executionContext) _TrustCenterSubprocessorEdge(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -484208,10 +483855,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfig(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -484254,10 +483901,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigConnection(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -484295,10 +483942,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -485145,10 +484792,10 @@ func (ec *executionContext) _User(ctx context.Context, sel ast.SelectionSet, obj return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -485191,10 +484838,10 @@ func (ec *executionContext) _UserConnection(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -485232,10 +484879,10 @@ func (ec *executionContext) _UserEdge(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -485378,10 +485025,10 @@ func (ec *executionContext) _UserSetting(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -485424,10 +485071,10 @@ func (ec *executionContext) _UserSettingConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -485465,10 +485112,10 @@ func (ec *executionContext) _UserSettingEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486343,10 +485990,10 @@ func (ec *executionContext) _Vulnerability(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486389,10 +486036,10 @@ func (ec *executionContext) _VulnerabilityConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486430,10 +486077,10 @@ func (ec *executionContext) _VulnerabilityEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486530,10 +486177,10 @@ func (ec *executionContext) _Webauthn(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486576,10 +486223,10 @@ func (ec *executionContext) _WebauthnConnection(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486617,10 +486264,10 @@ func (ec *executionContext) _WebauthnEdge(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486889,10 +486536,10 @@ func (ec *executionContext) _WorkflowAssignment(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486935,10 +486582,10 @@ func (ec *executionContext) _WorkflowAssignmentConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486976,10 +486623,10 @@ func (ec *executionContext) _WorkflowAssignmentEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487183,10 +486830,10 @@ func (ec *executionContext) _WorkflowAssignmentTarget(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487229,10 +486876,10 @@ func (ec *executionContext) _WorkflowAssignmentTargetConnection(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487270,10 +486917,10 @@ func (ec *executionContext) _WorkflowAssignmentTargetEdge(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487557,10 +487204,10 @@ func (ec *executionContext) _WorkflowDefinition(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487603,10 +487250,10 @@ func (ec *executionContext) _WorkflowDefinitionConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487644,10 +487291,10 @@ func (ec *executionContext) _WorkflowDefinitionEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487781,10 +487428,10 @@ func (ec *executionContext) _WorkflowEvent(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487827,10 +487474,10 @@ func (ec *executionContext) _WorkflowEventConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487868,10 +487515,10 @@ func (ec *executionContext) _WorkflowEventEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -488543,10 +488190,10 @@ func (ec *executionContext) _WorkflowInstance(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -488589,10 +488236,10 @@ func (ec *executionContext) _WorkflowInstanceConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -488630,10 +488277,10 @@ func (ec *executionContext) _WorkflowInstanceEdge(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -489283,10 +488930,10 @@ func (ec *executionContext) _WorkflowObjectRef(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -489329,10 +488976,10 @@ func (ec *executionContext) _WorkflowObjectRefConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -489370,10 +489017,10 @@ func (ec *executionContext) _WorkflowObjectRefEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -489517,10 +489164,10 @@ func (ec *executionContext) _WorkflowProposal(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -493277,39 +492924,11 @@ func (ec *executionContext) unmarshalNNarrativeWhereInput2ᚖgithubᚗcomᚋtheo } func (ec *executionContext) marshalNNode2ᚕgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoder(ctx context.Context, sel ast.SelectionSet, v []generated.Noder) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONode2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoder(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONode2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoder(ctx, sel, v[i]) + }) return ret } @@ -496547,39 +496166,11 @@ func (ec *executionContext) marshalNWorkflowInstance2githubᚗcomᚋtheopenlane } func (ec *executionContext) marshalNWorkflowInstance2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceᚄ(ctx context.Context, sel ast.SelectionSet, v []*generated.WorkflowInstance) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowInstance2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstance(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowInstance2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstance(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -496709,39 +496300,11 @@ func (ec *executionContext) marshalNWorkflowProposal2githubᚗcomᚋtheopenlane } func (ec *executionContext) marshalNWorkflowProposal2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowProposalᚄ(ctx context.Context, sel ast.SelectionSet, v []*generated.WorkflowProposal) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowProposal2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowProposal(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowProposal2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowProposal(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -496776,39 +496339,11 @@ func (ec *executionContext) marshalOAPIToken2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAPIToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAPIToken(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAPIToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAPIToken(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -496830,39 +496365,11 @@ func (ec *executionContext) marshalOAPITokenEdge2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOAPITokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAPITokenEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOAPITokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAPITokenEdge(ctx, sel, v[i]) + }) return ret } @@ -496922,39 +496429,11 @@ func (ec *executionContext) marshalOActionPlan2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlan2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐActionPlan(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlan2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐActionPlan(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497011,39 +496490,11 @@ func (ec *executionContext) marshalOActionPlanDocumentStatus2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlanDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlanDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497074,39 +496525,11 @@ func (ec *executionContext) marshalOActionPlanEdge2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOActionPlanEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐActionPlanEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOActionPlanEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐActionPlanEdge(ctx, sel, v[i]) + }) return ret } @@ -497150,39 +496573,11 @@ func (ec *executionContext) marshalOActionPlanFrequency2ᚕgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlanFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlanFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497259,39 +496654,11 @@ func (ec *executionContext) marshalOActionPlanPriority2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlanPriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlanPriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497373,39 +496740,11 @@ func (ec *executionContext) marshalOAssessmentAssessmentType2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssessmentAssessmentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssessmentAssessmentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497443,39 +496782,11 @@ func (ec *executionContext) marshalOAssessmentEdge2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOAssessmentEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOAssessmentEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentEdge(ctx, sel, v[i]) + }) return ret } @@ -497534,39 +496845,11 @@ func (ec *executionContext) marshalOAssessmentResponseAssessmentResponseStatus2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssessmentResponseAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssessmentResponseAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497604,39 +496887,11 @@ func (ec *executionContext) marshalOAssessmentResponseEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOAssessmentResponseEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentResponseEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOAssessmentResponseEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssessmentResponseEdge(ctx, sel, v[i]) + }) return ret } @@ -497722,39 +496977,11 @@ func (ec *executionContext) marshalOAsset2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcor if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAsset2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAsset(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAsset2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAsset(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497794,39 +497021,11 @@ func (ec *executionContext) marshalOAssetAssetType2ᚕgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssetAssetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssetType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssetAssetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssetType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -497864,39 +497063,11 @@ func (ec *executionContext) marshalOAssetEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOAssetEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssetEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOAssetEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐAssetEdge(ctx, sel, v[i]) + }) return ret } @@ -497948,39 +497119,11 @@ func (ec *executionContext) marshalOAssetSourceType2ᚕgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssetSourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssetSourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498037,39 +497180,11 @@ func (ec *executionContext) marshalOCampaign2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaign2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaign(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaign2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaign(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498109,39 +497224,11 @@ func (ec *executionContext) marshalOCampaignCampaignStatus2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignCampaignStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignCampaignStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498190,39 +497277,11 @@ func (ec *executionContext) marshalOCampaignCampaignType2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignCampaignType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignCampaignType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498260,39 +497319,11 @@ func (ec *executionContext) marshalOCampaignEdge2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOCampaignEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOCampaignEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignEdge(ctx, sel, v[i]) + }) return ret } @@ -498336,39 +497367,11 @@ func (ec *executionContext) marshalOCampaignFrequency2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498417,39 +497420,11 @@ func (ec *executionContext) marshalOCampaignTarget2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignTarget2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignTarget(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignTarget2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignTarget(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498489,39 +497464,11 @@ func (ec *executionContext) marshalOCampaignTargetAssessmentResponseStatus2ᚕgi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignTargetAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignTargetAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498559,39 +497506,11 @@ func (ec *executionContext) marshalOCampaignTargetEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOCampaignTargetEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignTargetEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOCampaignTargetEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCampaignTargetEdge(ctx, sel, v[i]) + }) return ret } @@ -498677,39 +497596,11 @@ func (ec *executionContext) marshalOContact2ᚕᚖgithubᚗcomᚋtheopenlaneᚋc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNContact2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐContact(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNContact2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐContact(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498738,39 +497629,11 @@ func (ec *executionContext) marshalOContactEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOContactEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐContactEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOContactEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐContactEdge(ctx, sel, v[i]) + }) return ret } @@ -498822,39 +497685,11 @@ func (ec *executionContext) marshalOContactUserStatus2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNContactUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNContactUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -498911,39 +497746,11 @@ func (ec *executionContext) marshalOControl2ᚕᚖgithubᚗcomᚋtheopenlaneᚋc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControl(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControl(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499000,39 +497807,11 @@ func (ec *executionContext) marshalOControlControlSource2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499091,39 +497870,11 @@ func (ec *executionContext) marshalOControlControlStatus2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499154,39 +497905,11 @@ func (ec *executionContext) marshalOControlEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOControlEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOControlEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlEdge(ctx, sel, v[i]) + }) return ret } @@ -499202,39 +497925,11 @@ func (ec *executionContext) marshalOControlImplementation2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlImplementation2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlImplementation(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlImplementation2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlImplementation(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499284,39 +497979,11 @@ func (ec *executionContext) marshalOControlImplementationDocumentStatus2ᚕgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlImplementationDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlImplementationDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499347,39 +498014,11 @@ func (ec *executionContext) marshalOControlImplementationEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOControlImplementationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlImplementationEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOControlImplementationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlImplementationEdge(ctx, sel, v[i]) + }) return ret } @@ -499439,39 +498078,11 @@ func (ec *executionContext) marshalOControlObjective2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlObjective2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlObjective(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlObjective2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlObjective(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499528,39 +498139,11 @@ func (ec *executionContext) marshalOControlObjectiveControlSource2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlObjectiveControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlObjectiveControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499591,39 +498174,11 @@ func (ec *executionContext) marshalOControlObjectiveEdge2ᚕᚖgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOControlObjectiveEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlObjectiveEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOControlObjectiveEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐControlObjectiveEdge(ctx, sel, v[i]) + }) return ret } @@ -499667,39 +498222,11 @@ func (ec *executionContext) marshalOControlObjectiveObjectiveStatus2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlObjectiveObjectiveStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐObjectiveStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlObjectiveObjectiveStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐObjectiveStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -499820,39 +498347,11 @@ func (ec *executionContext) marshalOControlTrustCenterControlVisibility2ᚕgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlTrustCenterControlVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterControlVisibility(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlTrustCenterControlVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterControlVisibility(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501143,39 +499642,11 @@ func (ec *executionContext) marshalOCustomDomain2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCustomDomain2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomDomain(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCustomDomain2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomDomain(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501197,39 +499668,11 @@ func (ec *executionContext) marshalOCustomDomainEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOCustomDomainEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomDomainEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOCustomDomainEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomDomainEdge(ctx, sel, v[i]) + }) return ret } @@ -501289,39 +499732,11 @@ func (ec *executionContext) marshalOCustomTypeEnum2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCustomTypeEnum2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomTypeEnum(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCustomTypeEnum2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomTypeEnum(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501350,39 +499765,11 @@ func (ec *executionContext) marshalOCustomTypeEnumEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOCustomTypeEnumEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomTypeEnumEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOCustomTypeEnumEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐCustomTypeEnumEdge(ctx, sel, v[i]) + }) return ret } @@ -501442,39 +499829,11 @@ func (ec *executionContext) marshalODNSVerification2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDNSVerification2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDNSVerification(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDNSVerification2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDNSVerification(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501514,39 +499873,11 @@ func (ec *executionContext) marshalODNSVerificationDNSVerificationStatus2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDNSVerificationDNSVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDNSVerificationStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDNSVerificationDNSVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDNSVerificationStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501577,39 +499908,11 @@ func (ec *executionContext) marshalODNSVerificationEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODNSVerificationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDNSVerificationEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODNSVerificationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDNSVerificationEdge(ctx, sel, v[i]) + }) return ret } @@ -501661,39 +499964,11 @@ func (ec *executionContext) marshalODNSVerificationSSLVerificationStatus2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDNSVerificationSSLVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSLVerificationStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDNSVerificationSSLVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSLVerificationStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501750,39 +500025,11 @@ func (ec *executionContext) marshalODirectoryAccount2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccount2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryAccount(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccount2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryAccount(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501822,39 +500069,11 @@ func (ec *executionContext) marshalODirectoryAccountDirectoryAccountMFAState2ᚕ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccountDirectoryAccountMFAState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountMFAState(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccountDirectoryAccountMFAState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountMFAState(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501903,39 +500122,11 @@ func (ec *executionContext) marshalODirectoryAccountDirectoryAccountStatus2ᚕgi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccountDirectoryAccountStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccountDirectoryAccountStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -501994,39 +500185,11 @@ func (ec *executionContext) marshalODirectoryAccountDirectoryAccountType2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccountDirectoryAccountType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccountDirectoryAccountType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502057,39 +500220,11 @@ func (ec *executionContext) marshalODirectoryAccountEdge2ᚕᚖgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODirectoryAccountEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryAccountEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODirectoryAccountEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryAccountEdge(ctx, sel, v[i]) + }) return ret } @@ -502149,39 +500284,11 @@ func (ec *executionContext) marshalODirectoryGroup2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryGroup2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryGroup(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryGroup2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryGroup(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502221,39 +500328,11 @@ func (ec *executionContext) marshalODirectoryGroupDirectoryGroupClassification2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryGroupDirectoryGroupClassification2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupClassification(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryGroupDirectoryGroupClassification2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupClassification(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502302,39 +500381,11 @@ func (ec *executionContext) marshalODirectoryGroupDirectoryGroupStatus2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryGroupDirectoryGroupStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryGroupDirectoryGroupStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502365,39 +500416,11 @@ func (ec *executionContext) marshalODirectoryGroupEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODirectoryGroupEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryGroupEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODirectoryGroupEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryGroupEdge(ctx, sel, v[i]) + }) return ret } @@ -502457,39 +500480,11 @@ func (ec *executionContext) marshalODirectoryMembership2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryMembership(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryMembership(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502539,39 +500534,11 @@ func (ec *executionContext) marshalODirectoryMembershipDirectoryMembershipRole2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryMembershipDirectoryMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryMembershipRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryMembershipDirectoryMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryMembershipRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502602,39 +500569,11 @@ func (ec *executionContext) marshalODirectoryMembershipEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODirectoryMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryMembershipEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODirectoryMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectoryMembershipEdge(ctx, sel, v[i]) + }) return ret } @@ -502694,39 +500633,11 @@ func (ec *executionContext) marshalODirectorySyncRun2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectorySyncRun2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectorySyncRun(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectorySyncRun2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectorySyncRun(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502766,39 +500677,11 @@ func (ec *executionContext) marshalODirectorySyncRunDirectorySyncRunStatus2ᚕgi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectorySyncRunDirectorySyncRunStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectorySyncRunStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectorySyncRunDirectorySyncRunStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectorySyncRunStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502829,39 +500712,11 @@ func (ec *executionContext) marshalODirectorySyncRunEdge2ᚕᚖgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODirectorySyncRunEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectorySyncRunEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODirectorySyncRunEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDirectorySyncRunEdge(ctx, sel, v[i]) + }) return ret } @@ -502921,39 +500776,11 @@ func (ec *executionContext) marshalODiscussion2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDiscussion2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDiscussion(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDiscussion2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDiscussion(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -502975,39 +500802,11 @@ func (ec *executionContext) marshalODiscussionEdge2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODiscussionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDiscussionEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODiscussionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDiscussionEdge(ctx, sel, v[i]) + }) return ret } @@ -503067,39 +500866,11 @@ func (ec *executionContext) marshalODocumentData2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDocumentData2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDocumentData(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDocumentData2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDocumentData(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -503121,39 +500892,11 @@ func (ec *executionContext) marshalODocumentDataEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODocumentDataEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDocumentDataEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODocumentDataEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐDocumentDataEdge(ctx, sel, v[i]) + }) return ret } @@ -503213,39 +500956,11 @@ func (ec *executionContext) marshalOEmailBranding2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailBranding2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailBranding(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailBranding2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailBranding(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -503274,39 +500989,11 @@ func (ec *executionContext) marshalOEmailBrandingEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEmailBrandingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailBrandingEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEmailBrandingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailBrandingEdge(ctx, sel, v[i]) + }) return ret } @@ -503350,39 +501037,11 @@ func (ec *executionContext) marshalOEmailBrandingFont2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailBrandingFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailBrandingFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -503457,39 +501116,11 @@ func (ec *executionContext) marshalOEmailTemplate2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailTemplate(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailTemplate(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -503518,39 +501149,11 @@ func (ec *executionContext) marshalOEmailTemplateEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEmailTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailTemplateEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEmailTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEmailTemplateEdge(ctx, sel, v[i]) + }) return ret } @@ -503584,39 +501187,11 @@ func (ec *executionContext) marshalOEmailTemplateNotificationTemplateFormat2ᚕg if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailTemplateNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailTemplateNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -503691,39 +501266,11 @@ func (ec *executionContext) marshalOEntity2ᚕᚖgithubᚗcomᚋtheopenlaneᚋco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntity2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntity(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntity2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntity(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -503752,39 +501299,11 @@ func (ec *executionContext) marshalOEntityEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEntityEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEntityEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityEdge(ctx, sel, v[i]) + }) return ret } @@ -503828,39 +501347,11 @@ func (ec *executionContext) marshalOEntityEntityStatus2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntityEntityStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEntityStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntityEntityStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEntityStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -503919,39 +501410,11 @@ func (ec *executionContext) marshalOEntityFrequency2ᚕgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntityFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntityFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504000,39 +501463,11 @@ func (ec *executionContext) marshalOEntityType2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntityType2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntityType2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504054,39 +501489,11 @@ func (ec *executionContext) marshalOEntityTypeEdge2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEntityTypeEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityTypeEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEntityTypeEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEntityTypeEdge(ctx, sel, v[i]) + }) return ret } @@ -504172,39 +501579,11 @@ func (ec *executionContext) marshalOEvent2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcor if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEvent2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvent(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEvent2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvent(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504226,39 +501605,11 @@ func (ec *executionContext) marshalOEventEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEventEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEventEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEventEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEventEdge(ctx, sel, v[i]) + }) return ret } @@ -504318,39 +501669,11 @@ func (ec *executionContext) marshalOEvidence2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEvidence2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvidence(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEvidence2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvidence(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504379,39 +501702,11 @@ func (ec *executionContext) marshalOEvidenceEdge2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEvidenceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvidenceEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEvidenceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐEvidenceEdge(ctx, sel, v[i]) + }) return ret } @@ -504455,39 +501750,11 @@ func (ec *executionContext) marshalOEvidenceEvidenceStatus2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEvidenceEvidenceStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEvidenceStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEvidenceEvidenceStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEvidenceStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504562,39 +501829,11 @@ func (ec *executionContext) marshalOExport2ᚕᚖgithubᚗcomᚋtheopenlaneᚋco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNExport2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐExport(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNExport2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐExport(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504616,39 +501855,11 @@ func (ec *executionContext) marshalOExportEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOExportEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐExportEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOExportEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐExportEdge(ctx, sel, v[i]) + }) return ret } @@ -504682,39 +501893,11 @@ func (ec *executionContext) marshalOExportExportFormat2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNExportExportFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐExportFormat(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNExportExportFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐExportFormat(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504763,39 +501946,11 @@ func (ec *executionContext) marshalOExportExportStatus2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNExportExportStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐExportStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNExportExportStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐExportStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504844,39 +501999,11 @@ func (ec *executionContext) marshalOExportExportType2ᚕgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNExportExportType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐExportType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNExportExportType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐExportType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -504958,39 +502085,11 @@ func (ec *executionContext) marshalOFileEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOFileEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFileEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOFileEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFileEdge(ctx, sel, v[i]) + }) return ret } @@ -505050,39 +502149,11 @@ func (ec *executionContext) marshalOFinding2ᚕᚖgithubᚗcomᚋtheopenlaneᚋc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNFinding2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFinding(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNFinding2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFinding(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -505111,39 +502182,11 @@ func (ec *executionContext) marshalOFindingControl2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNFindingControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingControl(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNFindingControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingControl(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -505165,39 +502208,11 @@ func (ec *executionContext) marshalOFindingControlEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOFindingControlEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingControlEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOFindingControlEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingControlEdge(ctx, sel, v[i]) + }) return ret } @@ -505257,39 +502272,11 @@ func (ec *executionContext) marshalOFindingEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOFindingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOFindingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐFindingEdge(ctx, sel, v[i]) + }) return ret } @@ -505349,39 +502336,11 @@ func (ec *executionContext) marshalOGroup2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcor if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroup2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroup(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroup2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroup(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -505410,39 +502369,11 @@ func (ec *executionContext) marshalOGroupEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOGroupEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOGroupEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupEdge(ctx, sel, v[i]) + }) return ret } @@ -505458,39 +502389,11 @@ func (ec *executionContext) marshalOGroupMembership2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupMembership(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupMembership(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -505512,39 +502415,11 @@ func (ec *executionContext) marshalOGroupMembershipEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOGroupMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupMembershipEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOGroupMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupMembershipEdge(ctx, sel, v[i]) + }) return ret } @@ -505596,39 +502471,11 @@ func (ec *executionContext) marshalOGroupMembershipRole2ᚕgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -505703,39 +502550,11 @@ func (ec *executionContext) marshalOGroupSetting2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupSetting(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupSetting(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -505757,39 +502576,11 @@ func (ec *executionContext) marshalOGroupSettingEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOGroupSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupSettingEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOGroupSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐGroupSettingEdge(ctx, sel, v[i]) + }) return ret } @@ -505823,39 +502614,11 @@ func (ec *executionContext) marshalOGroupSettingJoinPolicy2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupSettingJoinPolicy2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJoinPolicy(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupSettingJoinPolicy2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJoinPolicy(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -505922,39 +502685,11 @@ func (ec *executionContext) marshalOGroupSettingVisibility2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupSettingVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐVisibility(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupSettingVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐVisibility(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506037,39 +502772,11 @@ func (ec *executionContext) marshalOHush2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcore if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNHush2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐHush(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNHush2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐHush(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506091,39 +502798,11 @@ func (ec *executionContext) marshalOHushEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOHushEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐHushEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOHushEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐHushEdge(ctx, sel, v[i]) + }) return ret } @@ -506183,39 +502862,11 @@ func (ec *executionContext) marshalOIdentityHolder2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNIdentityHolder2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIdentityHolder(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNIdentityHolder2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIdentityHolder(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506244,39 +502895,11 @@ func (ec *executionContext) marshalOIdentityHolderEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOIdentityHolderEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIdentityHolderEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOIdentityHolderEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIdentityHolderEdge(ctx, sel, v[i]) + }) return ret } @@ -506310,39 +502933,11 @@ func (ec *executionContext) marshalOIdentityHolderIdentityHolderType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNIdentityHolderIdentityHolderType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐIdentityHolderType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNIdentityHolderIdentityHolderType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐIdentityHolderType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506409,39 +503004,11 @@ func (ec *executionContext) marshalOIdentityHolderUserStatus2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNIdentityHolderUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNIdentityHolderUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506512,39 +503079,11 @@ func (ec *executionContext) marshalOIntegrationEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOIntegrationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIntegrationEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOIntegrationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐIntegrationEdge(ctx, sel, v[i]) + }) return ret } @@ -506604,39 +503143,11 @@ func (ec *executionContext) marshalOInternalPolicy2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInternalPolicy2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInternalPolicy(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInternalPolicy2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInternalPolicy(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506693,39 +503204,11 @@ func (ec *executionContext) marshalOInternalPolicyDocumentStatus2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInternalPolicyDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInternalPolicyDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506756,39 +503239,11 @@ func (ec *executionContext) marshalOInternalPolicyEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOInternalPolicyEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInternalPolicyEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOInternalPolicyEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInternalPolicyEdge(ctx, sel, v[i]) + }) return ret } @@ -506832,39 +503287,11 @@ func (ec *executionContext) marshalOInternalPolicyFrequency2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInternalPolicyFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInternalPolicyFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -506939,39 +503366,11 @@ func (ec *executionContext) marshalOInvite2ᚕᚖgithubᚗcomᚋtheopenlaneᚋco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInvite2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInvite(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInvite2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInvite(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -507000,39 +503399,11 @@ func (ec *executionContext) marshalOInviteEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOInviteEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInviteEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOInviteEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐInviteEdge(ctx, sel, v[i]) + }) return ret } @@ -507066,39 +503437,11 @@ func (ec *executionContext) marshalOInviteInviteStatus2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInviteInviteStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐInviteStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInviteInviteStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐInviteStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -507165,39 +503508,11 @@ func (ec *executionContext) marshalOInviteRole2ᚕgithubᚗcomᚋtheopenlaneᚋc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInviteRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInviteRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -507261,39 +503576,11 @@ func (ec *executionContext) marshalOJobResultEdge2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOJobResultEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobResultEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOJobResultEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobResultEdge(ctx, sel, v[i]) + }) return ret } @@ -507327,39 +503614,11 @@ func (ec *executionContext) marshalOJobResultJobExecutionStatus2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNJobResultJobExecutionStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobExecutionStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNJobResultJobExecutionStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobExecutionStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -507448,39 +503707,11 @@ func (ec *executionContext) marshalOJobRunnerEdge2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOJobRunnerEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOJobRunnerEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerEdge(ctx, sel, v[i]) + }) return ret } @@ -507514,39 +503745,11 @@ func (ec *executionContext) marshalOJobRunnerJobRunnerStatus2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNJobRunnerJobRunnerStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobRunnerStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNJobRunnerJobRunnerStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobRunnerStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -507595,39 +503798,11 @@ func (ec *executionContext) marshalOJobRunnerRegistrationToken2ᚕᚖgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNJobRunnerRegistrationToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerRegistrationToken(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNJobRunnerRegistrationToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerRegistrationToken(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -507649,39 +503824,11 @@ func (ec *executionContext) marshalOJobRunnerRegistrationTokenEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOJobRunnerRegistrationTokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerRegistrationTokenEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOJobRunnerRegistrationTokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerRegistrationTokenEdge(ctx, sel, v[i]) + }) return ret } @@ -507748,39 +503895,11 @@ func (ec *executionContext) marshalOJobRunnerTokenEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOJobRunnerTokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerTokenEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOJobRunnerTokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobRunnerTokenEdge(ctx, sel, v[i]) + }) return ret } @@ -507866,39 +503985,11 @@ func (ec *executionContext) marshalOJobTemplate2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNJobTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobTemplate(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNJobTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobTemplate(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -507927,39 +504018,11 @@ func (ec *executionContext) marshalOJobTemplateEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOJobTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobTemplateEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOJobTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐJobTemplateEdge(ctx, sel, v[i]) + }) return ret } @@ -507993,39 +504056,11 @@ func (ec *executionContext) marshalOJobTemplateJobPlatformType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNJobTemplateJobPlatformType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobPlatformType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNJobTemplateJobPlatformType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobPlatformType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -508118,39 +504153,11 @@ func (ec *executionContext) marshalOMappableDomain2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappableDomain2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappableDomain(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappableDomain2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappableDomain(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -508172,39 +504179,11 @@ func (ec *executionContext) marshalOMappableDomainEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOMappableDomainEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappableDomainEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOMappableDomainEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappableDomainEdge(ctx, sel, v[i]) + }) return ret } @@ -508264,39 +504243,11 @@ func (ec *executionContext) marshalOMappedControl2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappedControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappedControl(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappedControl2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappedControl(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -508318,39 +504269,11 @@ func (ec *executionContext) marshalOMappedControlEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOMappedControlEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappedControlEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOMappedControlEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐMappedControlEdge(ctx, sel, v[i]) + }) return ret } @@ -508394,39 +504317,11 @@ func (ec *executionContext) marshalOMappedControlMappingSource2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappedControlMappingSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappedControlMappingSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -508475,39 +504370,11 @@ func (ec *executionContext) marshalOMappedControlMappingType2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappedControlMappingType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappedControlMappingType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -508582,39 +504449,11 @@ func (ec *executionContext) marshalONarrative2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNarrative2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNarrative(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNarrative2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNarrative(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -508643,39 +504482,11 @@ func (ec *executionContext) marshalONarrativeEdge2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONarrativeEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNarrativeEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONarrativeEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNarrativeEdge(ctx, sel, v[i]) + }) return ret } @@ -508749,39 +504560,11 @@ func (ec *executionContext) marshalONoteEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONoteEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoteEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONoteEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNoteEdge(ctx, sel, v[i]) + }) return ret } @@ -508848,39 +504631,11 @@ func (ec *executionContext) marshalONotificationEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONotificationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONotificationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationEdge(ctx, sel, v[i]) + }) return ret } @@ -508930,39 +504685,11 @@ func (ec *executionContext) marshalONotificationPreference2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreference2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationPreference(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreference2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationPreference(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509002,39 +504729,11 @@ func (ec *executionContext) marshalONotificationPreferenceChannel2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509065,39 +504764,11 @@ func (ec *executionContext) marshalONotificationPreferenceEdge2ᚕᚖgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONotificationPreferenceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationPreferenceEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONotificationPreferenceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationPreferenceEdge(ctx, sel, v[i]) + }) return ret } @@ -509131,39 +504802,11 @@ func (ec *executionContext) marshalONotificationPreferenceNotificationCadence2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceNotificationCadence2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationCadence(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceNotificationCadence2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationCadence(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509212,39 +504855,11 @@ func (ec *executionContext) marshalONotificationPreferenceNotificationChannelSta if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceNotificationChannelStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationChannelStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceNotificationChannelStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationChannelStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509321,39 +504936,11 @@ func (ec *executionContext) marshalONotificationPreferencePriority2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferencePriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferencePriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509410,39 +504997,11 @@ func (ec *executionContext) marshalONotificationTemplate2ᚕᚖgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationTemplate(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationTemplate(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509482,39 +505041,11 @@ func (ec *executionContext) marshalONotificationTemplateChannel2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationTemplateChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationTemplateChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509552,39 +505083,11 @@ func (ec *executionContext) marshalONotificationTemplateEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONotificationTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationTemplateEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONotificationTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotificationTemplateEdge(ctx, sel, v[i]) + }) return ret } @@ -509618,39 +505121,11 @@ func (ec *executionContext) marshalONotificationTemplateNotificationTemplateForm if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationTemplateNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationTemplateNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509751,39 +505226,11 @@ func (ec *executionContext) marshalOOrgMembership2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrgMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgMembership(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrgMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgMembership(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509805,39 +505252,11 @@ func (ec *executionContext) marshalOOrgMembershipEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrgMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgMembershipEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrgMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgMembershipEdge(ctx, sel, v[i]) + }) return ret } @@ -509889,39 +505308,11 @@ func (ec *executionContext) marshalOOrgMembershipRole2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrgMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrgMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -509978,39 +505369,11 @@ func (ec *executionContext) marshalOOrgSubscription2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrgSubscription2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgSubscription(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrgSubscription2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgSubscription(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510032,39 +505395,11 @@ func (ec *executionContext) marshalOOrgSubscriptionEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrgSubscriptionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgSubscriptionEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrgSubscriptionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrgSubscriptionEdge(ctx, sel, v[i]) + }) return ret } @@ -510114,39 +505449,11 @@ func (ec *executionContext) marshalOOrganization2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganization2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganization(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganization2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganization(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510175,39 +505482,11 @@ func (ec *executionContext) marshalOOrganizationEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrganizationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrganizationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationEdge(ctx, sel, v[i]) + }) return ret } @@ -510241,39 +505520,11 @@ func (ec *executionContext) marshalOOrganizationSetting2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganizationSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationSetting(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganizationSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationSetting(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510295,39 +505546,11 @@ func (ec *executionContext) marshalOOrganizationSettingEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrganizationSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationSettingEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrganizationSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐOrganizationSettingEdge(ctx, sel, v[i]) + }) return ret } @@ -510389,39 +505612,11 @@ func (ec *executionContext) marshalOOrganizationSettingRegion2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganizationSettingRegion2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRegion(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganizationSettingRegion2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRegion(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510480,39 +505675,11 @@ func (ec *executionContext) marshalOOrganizationSettingSSOProvider2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganizationSettingSSOProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSOProvider(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganizationSettingSSOProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSOProvider(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510595,39 +505762,11 @@ func (ec *executionContext) marshalOPersonalAccessToken2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNPersonalAccessToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPersonalAccessToken(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNPersonalAccessToken2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPersonalAccessToken(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510649,39 +505788,11 @@ func (ec *executionContext) marshalOPersonalAccessTokenEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOPersonalAccessTokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPersonalAccessTokenEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOPersonalAccessTokenEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPersonalAccessTokenEdge(ctx, sel, v[i]) + }) return ret } @@ -510741,39 +505852,11 @@ func (ec *executionContext) marshalOPlatform2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNPlatform2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPlatform(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNPlatform2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPlatform(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510802,39 +505885,11 @@ func (ec *executionContext) marshalOPlatformEdge2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOPlatformEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPlatformEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOPlatformEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐPlatformEdge(ctx, sel, v[i]) + }) return ret } @@ -510886,39 +505941,11 @@ func (ec *executionContext) marshalOPlatformPlatformStatus2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNPlatformPlatformStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPlatformStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNPlatformPlatformStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPlatformStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -510967,39 +505994,11 @@ func (ec *executionContext) marshalOPlatformSourceType2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNPlatformSourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNPlatformSourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511056,39 +506055,11 @@ func (ec *executionContext) marshalOProcedure2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProcedure2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProcedure(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProcedure2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProcedure(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511145,39 +506116,11 @@ func (ec *executionContext) marshalOProcedureDocumentStatus2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProcedureDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProcedureDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511208,39 +506151,11 @@ func (ec *executionContext) marshalOProcedureEdge2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOProcedureEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProcedureEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOProcedureEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProcedureEdge(ctx, sel, v[i]) + }) return ret } @@ -511284,39 +506199,11 @@ func (ec *executionContext) marshalOProcedureFrequency2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProcedureFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProcedureFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511391,39 +506278,11 @@ func (ec *executionContext) marshalOProgram2ᚕᚖgithubᚗcomᚋtheopenlaneᚋc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgram2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgram(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgram2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgram(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511452,39 +506311,11 @@ func (ec *executionContext) marshalOProgramEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOProgramEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOProgramEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramEdge(ctx, sel, v[i]) + }) return ret } @@ -511500,39 +506331,11 @@ func (ec *executionContext) marshalOProgramMembership2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgramMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramMembership(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgramMembership2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramMembership(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511554,39 +506357,11 @@ func (ec *executionContext) marshalOProgramMembershipEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOProgramMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramMembershipEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOProgramMembershipEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐProgramMembershipEdge(ctx, sel, v[i]) + }) return ret } @@ -511638,39 +506413,11 @@ func (ec *executionContext) marshalOProgramMembershipRole2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgramMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgramMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511763,39 +506510,11 @@ func (ec *executionContext) marshalOProgramProgramStatus2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgramProgramStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐProgramStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgramProgramStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐProgramStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511852,39 +506571,11 @@ func (ec *executionContext) marshalORemediation2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRemediation2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRemediation(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRemediation2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRemediation(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -511913,39 +506604,11 @@ func (ec *executionContext) marshalORemediationEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalORemediationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRemediationEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalORemediationEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRemediationEdge(ctx, sel, v[i]) + }) return ret } @@ -512005,39 +506668,11 @@ func (ec *executionContext) marshalOReview2ᚕᚖgithubᚗcomᚋtheopenlaneᚋco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNReview2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐReview(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNReview2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐReview(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512066,39 +506701,11 @@ func (ec *executionContext) marshalOReviewEdge2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOReviewEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐReviewEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOReviewEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐReviewEdge(ctx, sel, v[i]) + }) return ret } @@ -512158,39 +506765,11 @@ func (ec *executionContext) marshalORisk2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcore if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRisk2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRisk(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRisk2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRisk(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512219,39 +506798,11 @@ func (ec *executionContext) marshalORiskEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalORiskEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRiskEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalORiskEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐRiskEdge(ctx, sel, v[i]) + }) return ret } @@ -512313,39 +506864,11 @@ func (ec *executionContext) marshalORiskRiskImpact2ᚕgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRiskRiskImpact2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskImpact(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRiskRiskImpact2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskImpact(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512404,39 +506927,11 @@ func (ec *executionContext) marshalORiskRiskLikelihood2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRiskRiskLikelihood2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskLikelihood(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRiskRiskLikelihood2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskLikelihood(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512495,39 +506990,11 @@ func (ec *executionContext) marshalORiskRiskStatus2ᚕgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRiskRiskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRiskRiskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512584,39 +507051,11 @@ func (ec *executionContext) marshalOScan2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcore if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScan2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScan(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScan2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScan(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512645,39 +507084,11 @@ func (ec *executionContext) marshalOScanEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOScanEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScanEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOScanEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScanEdge(ctx, sel, v[i]) + }) return ret } @@ -512729,39 +507140,11 @@ func (ec *executionContext) marshalOScanScanStatus2ᚕgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScanScanStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScanScanStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512810,39 +507193,11 @@ func (ec *executionContext) marshalOScanScanType2ᚕgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScanScanType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScanScanType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512899,39 +507254,11 @@ func (ec *executionContext) marshalOScheduledJob2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScheduledJob2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJob(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScheduledJob2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJob(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -512953,39 +507280,11 @@ func (ec *executionContext) marshalOScheduledJobEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOScheduledJobEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJobEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOScheduledJobEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJobEdge(ctx, sel, v[i]) + }) return ret } @@ -513026,39 +507325,11 @@ func (ec *executionContext) marshalOScheduledJobRunEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOScheduledJobRunEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJobRunEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOScheduledJobRunEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐScheduledJobRunEdge(ctx, sel, v[i]) + }) return ret } @@ -513110,39 +507381,11 @@ func (ec *executionContext) marshalOScheduledJobRunScheduledJobRunStatus2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScheduledJobRunScheduledJobRunStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScheduledJobRunStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScheduledJobRunScheduledJobRunStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScheduledJobRunStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -513225,39 +507468,11 @@ func (ec *executionContext) marshalOStandard2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNStandard2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐStandard(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNStandard2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐStandard(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -513286,39 +507501,11 @@ func (ec *executionContext) marshalOStandardEdge2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOStandardEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐStandardEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOStandardEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐStandardEdge(ctx, sel, v[i]) + }) return ret } @@ -513380,39 +507567,11 @@ func (ec *executionContext) marshalOStandardStandardStatus2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNStandardStandardStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐStandardStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNStandardStandardStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐStandardStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -513469,39 +507628,11 @@ func (ec *executionContext) marshalOSubcontrol2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubcontrol2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubcontrol(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubcontrol2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubcontrol(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -513558,39 +507689,11 @@ func (ec *executionContext) marshalOSubcontrolControlSource2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubcontrolControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubcontrolControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -513649,39 +507752,11 @@ func (ec *executionContext) marshalOSubcontrolControlStatus2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubcontrolControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubcontrolControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -513712,39 +507787,11 @@ func (ec *executionContext) marshalOSubcontrolEdge2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOSubcontrolEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubcontrolEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOSubcontrolEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubcontrolEdge(ctx, sel, v[i]) + }) return ret } @@ -513804,39 +507851,11 @@ func (ec *executionContext) marshalOSubprocessor2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubprocessor2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubprocessor(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubprocessor2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubprocessor(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -513865,39 +507884,11 @@ func (ec *executionContext) marshalOSubprocessorEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOSubprocessorEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubprocessorEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOSubprocessorEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubprocessorEdge(ctx, sel, v[i]) + }) return ret } @@ -513957,39 +507948,11 @@ func (ec *executionContext) marshalOSubscriber2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubscriber2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubscriber(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubscriber2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubscriber(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -514018,39 +507981,11 @@ func (ec *executionContext) marshalOSubscriberEdge2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOSubscriberEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubscriberEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOSubscriberEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐSubscriberEdge(ctx, sel, v[i]) + }) return ret } @@ -514117,39 +508052,11 @@ func (ec *executionContext) marshalOTFASettingEdge2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTFASettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTFASettingEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTFASettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTFASettingEdge(ctx, sel, v[i]) + }) return ret } @@ -514209,39 +508116,11 @@ func (ec *executionContext) marshalOTagDefinition2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTagDefinition2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTagDefinition(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTagDefinition2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTagDefinition(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -514270,39 +508149,11 @@ func (ec *executionContext) marshalOTagDefinitionEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTagDefinitionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTagDefinitionEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTagDefinitionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTagDefinitionEdge(ctx, sel, v[i]) + }) return ret } @@ -514362,39 +508213,11 @@ func (ec *executionContext) marshalOTask2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcore if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTask2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTask(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTask2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTask(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -514423,39 +508246,11 @@ func (ec *executionContext) marshalOTaskEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTaskEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTaskEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTaskEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTaskEdge(ctx, sel, v[i]) + }) return ret } @@ -514507,39 +508302,11 @@ func (ec *executionContext) marshalOTaskTaskStatus2ᚕgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTaskTaskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTaskStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTaskTaskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTaskStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -514596,39 +508363,11 @@ func (ec *executionContext) marshalOTemplate2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTemplate(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTemplate2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTemplate(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -514675,39 +508414,11 @@ func (ec *executionContext) marshalOTemplateDocumentType2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTemplateDocumentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTemplateDocumentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -514738,39 +508449,11 @@ func (ec *executionContext) marshalOTemplateEdge2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTemplateEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTemplateEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTemplateEdge(ctx, sel, v[i]) + }) return ret } @@ -514832,39 +508515,11 @@ func (ec *executionContext) marshalOTemplateTemplateKind2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTemplateTemplateKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTemplateKind(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTemplateTemplateKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTemplateKind(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -514987,39 +508642,11 @@ func (ec *executionContext) marshalOTrustCenter2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenter2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenter(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenter2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenter(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515041,39 +508668,11 @@ func (ec *executionContext) marshalOTrustCenterCompliance2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterCompliance2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterCompliance(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterCompliance2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterCompliance(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515095,39 +508694,11 @@ func (ec *executionContext) marshalOTrustCenterComplianceEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterComplianceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterComplianceEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterComplianceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterComplianceEdge(ctx, sel, v[i]) + }) return ret } @@ -515187,39 +508758,11 @@ func (ec *executionContext) marshalOTrustCenterDoc2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterDoc2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterDoc(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterDoc2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterDoc(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515241,39 +508784,11 @@ func (ec *executionContext) marshalOTrustCenterDocEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterDocEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterDocEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterDocEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterDocEdge(ctx, sel, v[i]) + }) return ret } @@ -515335,39 +508850,11 @@ func (ec *executionContext) marshalOTrustCenterDocTrustCenterDocumentVisibility2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterDocTrustCenterDocumentVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterDocumentVisibility(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterDocTrustCenterDocumentVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterDocumentVisibility(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515426,39 +508913,11 @@ func (ec *executionContext) marshalOTrustCenterDocWatermarkStatus2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterDocWatermarkStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWatermarkStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterDocWatermarkStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWatermarkStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515515,39 +508974,11 @@ func (ec *executionContext) marshalOTrustCenterEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEdge(ctx, sel, v[i]) + }) return ret } @@ -515563,39 +508994,11 @@ func (ec *executionContext) marshalOTrustCenterEntity2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterEntity2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEntity(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterEntity2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEntity(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515624,39 +509027,11 @@ func (ec *executionContext) marshalOTrustCenterEntityEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterEntityEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEntityEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterEntityEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterEntityEdge(ctx, sel, v[i]) + }) return ret } @@ -515716,39 +509091,11 @@ func (ec *executionContext) marshalOTrustCenterFAQ2ᚕᚖgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterFAQ2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterFAQ(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterFAQ2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterFAQ(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515770,39 +509117,11 @@ func (ec *executionContext) marshalOTrustCenterFAQEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterFAQEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterFAQEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterFAQEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterFAQEdge(ctx, sel, v[i]) + }) return ret } @@ -515862,39 +509181,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequest2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterNDARequest2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterNDARequest(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterNDARequest2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterNDARequest(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -515916,39 +509207,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequestEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterNDARequestEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterNDARequestEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterNDARequestEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterNDARequestEdge(ctx, sel, v[i]) + }) return ret } @@ -516010,39 +509273,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequestTrustCenterNDARequestAc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterNDARequestTrustCenterNDARequestAccessLevel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestAccessLevel(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterNDARequestTrustCenterNDARequestAccessLevel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestAccessLevel(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516101,39 +509336,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequestTrustCenterNDARequestSt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterNDARequestTrustCenterNDARequestStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterNDARequestTrustCenterNDARequestStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516208,39 +509415,11 @@ func (ec *executionContext) marshalOTrustCenterSetting2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSetting(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSetting(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516262,39 +509441,11 @@ func (ec *executionContext) marshalOTrustCenterSettingEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSettingEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSettingEdge(ctx, sel, v[i]) + }) return ret } @@ -516356,39 +509507,11 @@ func (ec *executionContext) marshalOTrustCenterSettingTrustCenterEnvironment2ᚕ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSettingTrustCenterEnvironment2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterEnvironment(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSettingTrustCenterEnvironment2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterEnvironment(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516447,39 +509570,11 @@ func (ec *executionContext) marshalOTrustCenterSettingTrustCenterThemeMode2ᚕgi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSettingTrustCenterThemeMode2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterThemeMode(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSettingTrustCenterThemeMode2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterThemeMode(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516536,39 +509631,11 @@ func (ec *executionContext) marshalOTrustCenterSubprocessor2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSubprocessor2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSubprocessor(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSubprocessor2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSubprocessor(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516590,39 +509657,11 @@ func (ec *executionContext) marshalOTrustCenterSubprocessorEdge2ᚕᚖgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterSubprocessorEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSubprocessorEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterSubprocessorEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterSubprocessorEdge(ctx, sel, v[i]) + }) return ret } @@ -516710,39 +509749,11 @@ func (ec *executionContext) marshalOTrustCenterTrustCenterPreviewStatus2ᚕgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterTrustCenterPreviewStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterPreviewStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterTrustCenterPreviewStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterPreviewStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516773,39 +509784,11 @@ func (ec *executionContext) marshalOTrustCenterWatermarkConfig2ᚕᚖgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterWatermarkConfig2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterWatermarkConfig(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterWatermarkConfig2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterWatermarkConfig(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -516827,39 +509810,11 @@ func (ec *executionContext) marshalOTrustCenterWatermarkConfigEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterWatermarkConfigEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterWatermarkConfigEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterWatermarkConfigEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐTrustCenterWatermarkConfigEdge(ctx, sel, v[i]) + }) return ret } @@ -516903,39 +509858,11 @@ func (ec *executionContext) marshalOTrustCenterWatermarkConfigFont2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterWatermarkConfigFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterWatermarkConfigFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -517060,39 +509987,11 @@ func (ec *executionContext) marshalOUser2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcore if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUser2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUser(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUser2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUser(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -517142,39 +510041,11 @@ func (ec *executionContext) marshalOUserAuthProvider2ᚕgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserAuthProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAuthProvider(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserAuthProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAuthProvider(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -517205,39 +510076,11 @@ func (ec *executionContext) marshalOUserEdge2ᚕᚖgithubᚗcomᚋtheopenlaneᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOUserEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOUserEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserEdge(ctx, sel, v[i]) + }) return ret } @@ -517299,39 +510142,11 @@ func (ec *executionContext) marshalOUserRole2ᚕgithubᚗcomᚋtheopenlaneᚋcor if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -517362,39 +510177,11 @@ func (ec *executionContext) marshalOUserSetting2ᚕᚖgithubᚗcomᚋtheopenlane if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserSetting(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserSetting2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserSetting(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -517416,39 +510203,11 @@ func (ec *executionContext) marshalOUserSettingEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOUserSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserSettingEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOUserSettingEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐUserSettingEdge(ctx, sel, v[i]) + }) return ret } @@ -517500,39 +510259,11 @@ func (ec *executionContext) marshalOUserSettingUserStatus2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserSettingUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserSettingUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -517615,39 +510346,11 @@ func (ec *executionContext) marshalOVulnerability2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNVulnerability2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐVulnerability(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNVulnerability2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐVulnerability(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -517676,39 +510379,11 @@ func (ec *executionContext) marshalOVulnerabilityEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOVulnerabilityEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐVulnerabilityEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOVulnerabilityEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐVulnerabilityEdge(ctx, sel, v[i]) + }) return ret } @@ -517775,39 +510450,11 @@ func (ec *executionContext) marshalOWebauthnEdge2ᚕᚖgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWebauthnEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWebauthnEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWebauthnEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWebauthnEdge(ctx, sel, v[i]) + }) return ret } @@ -517864,39 +510511,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowAssignmentEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowAssignmentEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentEdge(ctx, sel, v[i]) + }) return ret } @@ -517937,39 +510556,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentTargetEdge2ᚕᚖgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowAssignmentTargetEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentTargetEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowAssignmentTargetEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowAssignmentTargetEdge(ctx, sel, v[i]) + }) return ret } @@ -518047,39 +510638,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentTargetWorkflowTargetType2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowAssignmentTargetWorkflowTargetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowTargetType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowAssignmentTargetWorkflowTargetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowTargetType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -518154,39 +510717,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentWorkflowAssignmentStatus2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowAssignmentWorkflowAssignmentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowAssignmentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowAssignmentWorkflowAssignmentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowAssignmentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -518217,39 +510752,11 @@ func (ec *executionContext) marshalOWorkflowDefinition2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowDefinition2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowDefinition(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowDefinition2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowDefinition(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -518271,39 +510778,11 @@ func (ec *executionContext) marshalOWorkflowDefinitionEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowDefinitionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowDefinitionEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowDefinitionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowDefinitionEdge(ctx, sel, v[i]) + }) return ret } @@ -518381,39 +510860,11 @@ func (ec *executionContext) marshalOWorkflowDefinitionWorkflowKind2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowDefinitionWorkflowKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowKind(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowDefinitionWorkflowKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowKind(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -518451,39 +510902,11 @@ func (ec *executionContext) marshalOWorkflowEventEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowEventEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowEventEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowEventEdge(ctx, sel, v[i]) + }) return ret } @@ -518561,39 +510984,11 @@ func (ec *executionContext) marshalOWorkflowEventWorkflowEventType2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowEventWorkflowEventType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowEventType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowEventWorkflowEventType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowEventType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -518631,39 +511026,11 @@ func (ec *executionContext) marshalOWorkflowInstanceEdge2ᚕᚖgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowInstanceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowInstanceEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowInstanceEdge(ctx, sel, v[i]) + }) return ret } @@ -518741,39 +511108,11 @@ func (ec *executionContext) marshalOWorkflowInstanceWorkflowInstanceState2ᚕgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowInstanceWorkflowInstanceState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowInstanceState(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowInstanceWorkflowInstanceState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowInstanceState(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -518811,39 +511150,11 @@ func (ec *executionContext) marshalOWorkflowObjectRefEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowObjectRefEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowObjectRefEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowObjectRefEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐWorkflowObjectRefEdge(ctx, sel, v[i]) + }) return ret } diff --git a/internal/graphapi/generated/entity.generated.go b/internal/graphapi/generated/entity.generated.go index 0b7663a648..890b5fee10 100644 --- a/internal/graphapi/generated/entity.generated.go +++ b/internal/graphapi/generated/entity.generated.go @@ -977,10 +977,10 @@ func (ec *executionContext) _EntityBulkCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1016,10 +1016,10 @@ func (ec *executionContext) _EntityBulkDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1054,10 +1054,10 @@ func (ec *executionContext) _EntityBulkUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1093,10 +1093,10 @@ func (ec *executionContext) _EntityCreatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1132,10 +1132,10 @@ func (ec *executionContext) _EntityDeletePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1171,10 +1171,10 @@ func (ec *executionContext) _EntityUpdatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/entitytype.generated.go b/internal/graphapi/generated/entitytype.generated.go index 625159e621..19d9d4c7d6 100644 --- a/internal/graphapi/generated/entitytype.generated.go +++ b/internal/graphapi/generated/entitytype.generated.go @@ -377,10 +377,10 @@ func (ec *executionContext) _EntityTypeBulkCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -416,10 +416,10 @@ func (ec *executionContext) _EntityTypeBulkDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454,10 +454,10 @@ func (ec *executionContext) _EntityTypeBulkUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -493,10 +493,10 @@ func (ec *executionContext) _EntityTypeCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -532,10 +532,10 @@ func (ec *executionContext) _EntityTypeDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -571,10 +571,10 @@ func (ec *executionContext) _EntityTypeUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/event.generated.go b/internal/graphapi/generated/event.generated.go index 7febd903a6..92d06806e3 100644 --- a/internal/graphapi/generated/event.generated.go +++ b/internal/graphapi/generated/event.generated.go @@ -449,10 +449,10 @@ func (ec *executionContext) _EventBulkCreatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -488,10 +488,10 @@ func (ec *executionContext) _EventBulkDeletePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -526,10 +526,10 @@ func (ec *executionContext) _EventBulkUpdatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -565,10 +565,10 @@ func (ec *executionContext) _EventCreatePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -604,10 +604,10 @@ func (ec *executionContext) _EventDeletePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -643,10 +643,10 @@ func (ec *executionContext) _EventUpdatePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/evidence.generated.go b/internal/graphapi/generated/evidence.generated.go index d51d98cef5..65981f3990 100644 --- a/internal/graphapi/generated/evidence.generated.go +++ b/internal/graphapi/generated/evidence.generated.go @@ -593,10 +593,10 @@ func (ec *executionContext) _EvidenceBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -632,10 +632,10 @@ func (ec *executionContext) _EvidenceBulkDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -670,10 +670,10 @@ func (ec *executionContext) _EvidenceBulkUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -709,10 +709,10 @@ func (ec *executionContext) _EvidenceCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -748,10 +748,10 @@ func (ec *executionContext) _EvidenceDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -787,10 +787,10 @@ func (ec *executionContext) _EvidenceUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/export.generated.go b/internal/graphapi/generated/export.generated.go index bcccab5767..63796c2eca 100644 --- a/internal/graphapi/generated/export.generated.go +++ b/internal/graphapi/generated/export.generated.go @@ -309,10 +309,10 @@ func (ec *executionContext) _ExportBulkCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -348,10 +348,10 @@ func (ec *executionContext) _ExportBulkDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -387,10 +387,10 @@ func (ec *executionContext) _ExportCreatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -426,10 +426,10 @@ func (ec *executionContext) _ExportDeletePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -465,10 +465,10 @@ func (ec *executionContext) _ExportUpdatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/file.generated.go b/internal/graphapi/generated/file.generated.go index 1c1641655e..2ed5501fe0 100644 --- a/internal/graphapi/generated/file.generated.go +++ b/internal/graphapi/generated/file.generated.go @@ -93,10 +93,10 @@ func (ec *executionContext) _FileDeletePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/finding.generated.go b/internal/graphapi/generated/finding.generated.go index 517ea28348..49e6ad4ede 100644 --- a/internal/graphapi/generated/finding.generated.go +++ b/internal/graphapi/generated/finding.generated.go @@ -646,10 +646,10 @@ func (ec *executionContext) _FindingBulkCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -685,10 +685,10 @@ func (ec *executionContext) _FindingCreatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -724,10 +724,10 @@ func (ec *executionContext) _FindingDeletePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -763,10 +763,10 @@ func (ec *executionContext) _FindingUpdatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/findingcontrol.generated.go b/internal/graphapi/generated/findingcontrol.generated.go index 7f4fce2079..0856820de4 100644 --- a/internal/graphapi/generated/findingcontrol.generated.go +++ b/internal/graphapi/generated/findingcontrol.generated.go @@ -286,10 +286,10 @@ func (ec *executionContext) _FindingControlBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -325,10 +325,10 @@ func (ec *executionContext) _FindingControlCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -364,10 +364,10 @@ func (ec *executionContext) _FindingControlDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -403,10 +403,10 @@ func (ec *executionContext) _FindingControlUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/group.generated.go b/internal/graphapi/generated/group.generated.go index c4151302f8..f520203c60 100644 --- a/internal/graphapi/generated/group.generated.go +++ b/internal/graphapi/generated/group.generated.go @@ -809,10 +809,10 @@ func (ec *executionContext) _GroupBulkCreatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -848,10 +848,10 @@ func (ec *executionContext) _GroupBulkDeletePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -886,10 +886,10 @@ func (ec *executionContext) _GroupBulkUpdatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -925,10 +925,10 @@ func (ec *executionContext) _GroupCreatePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -964,10 +964,10 @@ func (ec *executionContext) _GroupDeletePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1003,10 +1003,10 @@ func (ec *executionContext) _GroupUpdatePayload(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/groupextended.generated.go b/internal/graphapi/generated/groupextended.generated.go index 8b3dab0c9a..0dec882592 100644 --- a/internal/graphapi/generated/groupextended.generated.go +++ b/internal/graphapi/generated/groupextended.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -382,7 +381,6 @@ func (ec *executionContext) unmarshalInputGroupMembersInput(ctx context.Context, it.UserID = data } } - return it, nil } @@ -420,7 +418,6 @@ func (ec *executionContext) unmarshalInputGroupPermissionOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -762,7 +759,6 @@ func (ec *executionContext) unmarshalInputGroupPermissionWhereInput(ctx context. it.PermissionContainsFold = data } } - return it, nil } @@ -813,10 +809,10 @@ func (ec *executionContext) _GroupPermission(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -859,10 +855,10 @@ func (ec *executionContext) _GroupPermissionConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -900,10 +896,10 @@ func (ec *executionContext) _GroupPermissionEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -991,39 +987,11 @@ func (ec *executionContext) marshalOGroupPermissionEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOGroupPermissionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupPermissionEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOGroupPermissionEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐGroupPermissionEdge(ctx, sel, v[i]) + }) return ret } diff --git a/internal/graphapi/generated/groupmembership.generated.go b/internal/graphapi/generated/groupmembership.generated.go index 56ddcc877d..d8160f24d6 100644 --- a/internal/graphapi/generated/groupmembership.generated.go +++ b/internal/graphapi/generated/groupmembership.generated.go @@ -361,10 +361,10 @@ func (ec *executionContext) _GroupMembershipBulkCreatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -400,10 +400,10 @@ func (ec *executionContext) _GroupMembershipBulkDeletePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438,10 +438,10 @@ func (ec *executionContext) _GroupMembershipBulkUpdatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477,10 +477,10 @@ func (ec *executionContext) _GroupMembershipCreatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -516,10 +516,10 @@ func (ec *executionContext) _GroupMembershipDeletePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -555,10 +555,10 @@ func (ec *executionContext) _GroupMembershipUpdatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/groupsetting.generated.go b/internal/graphapi/generated/groupsetting.generated.go index df72ec5c70..0877604c67 100644 --- a/internal/graphapi/generated/groupsetting.generated.go +++ b/internal/graphapi/generated/groupsetting.generated.go @@ -361,10 +361,10 @@ func (ec *executionContext) _GroupSettingBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -400,10 +400,10 @@ func (ec *executionContext) _GroupSettingBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438,10 +438,10 @@ func (ec *executionContext) _GroupSettingBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477,10 +477,10 @@ func (ec *executionContext) _GroupSettingCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -516,10 +516,10 @@ func (ec *executionContext) _GroupSettingDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -555,10 +555,10 @@ func (ec *executionContext) _GroupSettingUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/hush.generated.go b/internal/graphapi/generated/hush.generated.go index c22dd9e799..89c8489107 100644 --- a/internal/graphapi/generated/hush.generated.go +++ b/internal/graphapi/generated/hush.generated.go @@ -441,10 +441,10 @@ func (ec *executionContext) _HushBulkCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480,10 +480,10 @@ func (ec *executionContext) _HushBulkDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -518,10 +518,10 @@ func (ec *executionContext) _HushBulkUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -557,10 +557,10 @@ func (ec *executionContext) _HushCreatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -596,10 +596,10 @@ func (ec *executionContext) _HushDeletePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -635,10 +635,10 @@ func (ec *executionContext) _HushUpdatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/identityholder.generated.go b/internal/graphapi/generated/identityholder.generated.go index 59784b87b1..e73f23c543 100644 --- a/internal/graphapi/generated/identityholder.generated.go +++ b/internal/graphapi/generated/identityholder.generated.go @@ -761,10 +761,10 @@ func (ec *executionContext) _IdentityHolderBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -800,10 +800,10 @@ func (ec *executionContext) _IdentityHolderBulkDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -838,10 +838,10 @@ func (ec *executionContext) _IdentityHolderBulkUpdatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -877,10 +877,10 @@ func (ec *executionContext) _IdentityHolderCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -916,10 +916,10 @@ func (ec *executionContext) _IdentityHolderDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -955,10 +955,10 @@ func (ec *executionContext) _IdentityHolderUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/integration.generated.go b/internal/graphapi/generated/integration.generated.go index a84862a4a0..e7b04aba00 100644 --- a/internal/graphapi/generated/integration.generated.go +++ b/internal/graphapi/generated/integration.generated.go @@ -93,10 +93,10 @@ func (ec *executionContext) _IntegrationDeletePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/internalpolicy.generated.go b/internal/graphapi/generated/internalpolicy.generated.go index 601c6230c0..3c60203db0 100644 --- a/internal/graphapi/generated/internalpolicy.generated.go +++ b/internal/graphapi/generated/internalpolicy.generated.go @@ -769,10 +769,10 @@ func (ec *executionContext) _InternalPolicyBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -808,10 +808,10 @@ func (ec *executionContext) _InternalPolicyBulkDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -846,10 +846,10 @@ func (ec *executionContext) _InternalPolicyBulkUpdatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -885,10 +885,10 @@ func (ec *executionContext) _InternalPolicyCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -924,10 +924,10 @@ func (ec *executionContext) _InternalPolicyDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -963,10 +963,10 @@ func (ec *executionContext) _InternalPolicyUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/invite.generated.go b/internal/graphapi/generated/invite.generated.go index 403b52d42f..4f09887d9f 100644 --- a/internal/graphapi/generated/invite.generated.go +++ b/internal/graphapi/generated/invite.generated.go @@ -401,10 +401,10 @@ func (ec *executionContext) _InviteBulkCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440,10 +440,10 @@ func (ec *executionContext) _InviteBulkDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478,10 +478,10 @@ func (ec *executionContext) _InviteBulkUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -517,10 +517,10 @@ func (ec *executionContext) _InviteCreatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -556,10 +556,10 @@ func (ec *executionContext) _InviteDeletePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -595,10 +595,10 @@ func (ec *executionContext) _InviteUpdatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/jobresult.generated.go b/internal/graphapi/generated/jobresult.generated.go index e04db869b8..c4625a4832 100644 --- a/internal/graphapi/generated/jobresult.generated.go +++ b/internal/graphapi/generated/jobresult.generated.go @@ -220,10 +220,10 @@ func (ec *executionContext) _JobResultCreatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -259,10 +259,10 @@ func (ec *executionContext) _JobResultDeletePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -298,10 +298,10 @@ func (ec *executionContext) _JobResultUpdatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/jobrunner.generated.go b/internal/graphapi/generated/jobrunner.generated.go index 84a47f0b5a..004c606a10 100644 --- a/internal/graphapi/generated/jobrunner.generated.go +++ b/internal/graphapi/generated/jobrunner.generated.go @@ -232,10 +232,10 @@ func (ec *executionContext) _JobRunnerCreatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -271,10 +271,10 @@ func (ec *executionContext) _JobRunnerDeletePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -310,10 +310,10 @@ func (ec *executionContext) _JobRunnerUpdatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/jobrunnerregistrationtoken.generated.go b/internal/graphapi/generated/jobrunnerregistrationtoken.generated.go index facdf670af..dcf1955f0d 100644 --- a/internal/graphapi/generated/jobrunnerregistrationtoken.generated.go +++ b/internal/graphapi/generated/jobrunnerregistrationtoken.generated.go @@ -205,10 +205,10 @@ func (ec *executionContext) _JobRunnerRegistrationTokenBulkCreatePayload(ctx con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244,10 +244,10 @@ func (ec *executionContext) _JobRunnerRegistrationTokenCreatePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -283,10 +283,10 @@ func (ec *executionContext) _JobRunnerRegistrationTokenDeletePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/jobrunnertoken.generated.go b/internal/graphapi/generated/jobrunnertoken.generated.go index 0b2ccc1de5..00d5a28f89 100644 --- a/internal/graphapi/generated/jobrunnertoken.generated.go +++ b/internal/graphapi/generated/jobrunnertoken.generated.go @@ -220,10 +220,10 @@ func (ec *executionContext) _JobRunnerTokenCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -259,10 +259,10 @@ func (ec *executionContext) _JobRunnerTokenDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -298,10 +298,10 @@ func (ec *executionContext) _JobRunnerTokenUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/jobtemplate.generated.go b/internal/graphapi/generated/jobtemplate.generated.go index 07a5cbd718..0cea6a775a 100644 --- a/internal/graphapi/generated/jobtemplate.generated.go +++ b/internal/graphapi/generated/jobtemplate.generated.go @@ -425,10 +425,10 @@ func (ec *executionContext) _JobTemplateBulkCreatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -464,10 +464,10 @@ func (ec *executionContext) _JobTemplateBulkDeletePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -502,10 +502,10 @@ func (ec *executionContext) _JobTemplateBulkUpdatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -541,10 +541,10 @@ func (ec *executionContext) _JobTemplateCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -580,10 +580,10 @@ func (ec *executionContext) _JobTemplateDeletePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -619,10 +619,10 @@ func (ec *executionContext) _JobTemplateUpdatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/mappabledomain.generated.go b/internal/graphapi/generated/mappabledomain.generated.go index a876a23239..c7fbbd7e9d 100644 --- a/internal/graphapi/generated/mappabledomain.generated.go +++ b/internal/graphapi/generated/mappabledomain.generated.go @@ -345,10 +345,10 @@ func (ec *executionContext) _MappableDomainBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -384,10 +384,10 @@ func (ec *executionContext) _MappableDomainBulkDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -422,10 +422,10 @@ func (ec *executionContext) _MappableDomainBulkUpdatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -461,10 +461,10 @@ func (ec *executionContext) _MappableDomainCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -500,10 +500,10 @@ func (ec *executionContext) _MappableDomainDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -539,10 +539,10 @@ func (ec *executionContext) _MappableDomainUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/mappedcontrol.generated.go b/internal/graphapi/generated/mappedcontrol.generated.go index cb4d6e499f..fb7bba9acd 100644 --- a/internal/graphapi/generated/mappedcontrol.generated.go +++ b/internal/graphapi/generated/mappedcontrol.generated.go @@ -441,10 +441,10 @@ func (ec *executionContext) _MappedControlBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -480,10 +480,10 @@ func (ec *executionContext) _MappedControlBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -518,10 +518,10 @@ func (ec *executionContext) _MappedControlBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -557,10 +557,10 @@ func (ec *executionContext) _MappedControlCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -596,10 +596,10 @@ func (ec *executionContext) _MappedControlDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -635,10 +635,10 @@ func (ec *executionContext) _MappedControlUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/narrative.generated.go b/internal/graphapi/generated/narrative.generated.go index 79afb8dc34..3fdde0c336 100644 --- a/internal/graphapi/generated/narrative.generated.go +++ b/internal/graphapi/generated/narrative.generated.go @@ -449,10 +449,10 @@ func (ec *executionContext) _NarrativeBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -488,10 +488,10 @@ func (ec *executionContext) _NarrativeBulkDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -526,10 +526,10 @@ func (ec *executionContext) _NarrativeBulkUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -565,10 +565,10 @@ func (ec *executionContext) _NarrativeCreatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -604,10 +604,10 @@ func (ec *executionContext) _NarrativeDeletePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -643,10 +643,10 @@ func (ec *executionContext) _NarrativeUpdatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/note.generated.go b/internal/graphapi/generated/note.generated.go index b13ce4c075..1121f618dd 100644 --- a/internal/graphapi/generated/note.generated.go +++ b/internal/graphapi/generated/note.generated.go @@ -90,7 +90,6 @@ func (ec *executionContext) unmarshalInputUpdateDiscussionsInput(ctx context.Con it.Input = data } } - return it, nil } @@ -127,10 +126,10 @@ func (ec *executionContext) _NoteDeletePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/notification.generated.go b/internal/graphapi/generated/notification.generated.go index ce955f995e..04a543bf16 100644 --- a/internal/graphapi/generated/notification.generated.go +++ b/internal/graphapi/generated/notification.generated.go @@ -163,10 +163,10 @@ func (ec *executionContext) _ActionNotificationsReadPayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -202,10 +202,10 @@ func (ec *executionContext) _NotificationUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/notificationpreference.generated.go b/internal/graphapi/generated/notificationpreference.generated.go index 280f487663..d5a797621d 100644 --- a/internal/graphapi/generated/notificationpreference.generated.go +++ b/internal/graphapi/generated/notificationpreference.generated.go @@ -513,10 +513,10 @@ func (ec *executionContext) _NotificationPreferenceBulkCreatePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -552,10 +552,10 @@ func (ec *executionContext) _NotificationPreferenceBulkDeletePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -590,10 +590,10 @@ func (ec *executionContext) _NotificationPreferenceBulkUpdatePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -629,10 +629,10 @@ func (ec *executionContext) _NotificationPreferenceCreatePayload(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -668,10 +668,10 @@ func (ec *executionContext) _NotificationPreferenceDeletePayload(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -707,10 +707,10 @@ func (ec *executionContext) _NotificationPreferenceUpdatePayload(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/notificationtemplate.generated.go b/internal/graphapi/generated/notificationtemplate.generated.go index 877d85a72b..1de223e658 100644 --- a/internal/graphapi/generated/notificationtemplate.generated.go +++ b/internal/graphapi/generated/notificationtemplate.generated.go @@ -537,10 +537,10 @@ func (ec *executionContext) _NotificationTemplateBulkCreatePayload(ctx context.C return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -576,10 +576,10 @@ func (ec *executionContext) _NotificationTemplateBulkDeletePayload(ctx context.C return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -614,10 +614,10 @@ func (ec *executionContext) _NotificationTemplateBulkUpdatePayload(ctx context.C return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -653,10 +653,10 @@ func (ec *executionContext) _NotificationTemplateCreatePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -692,10 +692,10 @@ func (ec *executionContext) _NotificationTemplateDeletePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -731,10 +731,10 @@ func (ec *executionContext) _NotificationTemplateUpdatePayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/onboarding.generated.go b/internal/graphapi/generated/onboarding.generated.go index ccfd444f51..5f554073a5 100644 --- a/internal/graphapi/generated/onboarding.generated.go +++ b/internal/graphapi/generated/onboarding.generated.go @@ -111,10 +111,10 @@ func (ec *executionContext) _OnboardingCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/organization.generated.go b/internal/graphapi/generated/organization.generated.go index 19fc664b78..56256351a8 100644 --- a/internal/graphapi/generated/organization.generated.go +++ b/internal/graphapi/generated/organization.generated.go @@ -874,10 +874,10 @@ func (ec *executionContext) _OrganizationBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -913,10 +913,10 @@ func (ec *executionContext) _OrganizationCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -952,10 +952,10 @@ func (ec *executionContext) _OrganizationDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -991,10 +991,10 @@ func (ec *executionContext) _OrganizationUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/organizationsetting.generated.go b/internal/graphapi/generated/organizationsetting.generated.go index bfda734b20..01c4404937 100644 --- a/internal/graphapi/generated/organizationsetting.generated.go +++ b/internal/graphapi/generated/organizationsetting.generated.go @@ -537,10 +537,10 @@ func (ec *executionContext) _OrganizationSettingBulkCreatePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -576,10 +576,10 @@ func (ec *executionContext) _OrganizationSettingBulkDeletePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -614,10 +614,10 @@ func (ec *executionContext) _OrganizationSettingBulkUpdatePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -653,10 +653,10 @@ func (ec *executionContext) _OrganizationSettingCreatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -692,10 +692,10 @@ func (ec *executionContext) _OrganizationSettingDeletePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -731,10 +731,10 @@ func (ec *executionContext) _OrganizationSettingUpdatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/orgextended.generated.go b/internal/graphapi/generated/orgextended.generated.go index 95fbc67044..ba70e376dd 100644 --- a/internal/graphapi/generated/orgextended.generated.go +++ b/internal/graphapi/generated/orgextended.generated.go @@ -352,7 +352,6 @@ func (ec *executionContext) unmarshalInputOrgMembersInput(ctx context.Context, o it.UserID = data } } - return it, nil } @@ -394,10 +393,10 @@ func (ec *executionContext) _OrganizationTransferOwnershipPayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/orgmembership.generated.go b/internal/graphapi/generated/orgmembership.generated.go index 813206bdbd..750259a8d4 100644 --- a/internal/graphapi/generated/orgmembership.generated.go +++ b/internal/graphapi/generated/orgmembership.generated.go @@ -361,10 +361,10 @@ func (ec *executionContext) _OrgMembershipBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -400,10 +400,10 @@ func (ec *executionContext) _OrgMembershipBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -438,10 +438,10 @@ func (ec *executionContext) _OrgMembershipBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -477,10 +477,10 @@ func (ec *executionContext) _OrgMembershipCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -516,10 +516,10 @@ func (ec *executionContext) _OrgMembershipDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -555,10 +555,10 @@ func (ec *executionContext) _OrgMembershipUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/personalaccesstoken.generated.go b/internal/graphapi/generated/personalaccesstoken.generated.go index d0b17a3da6..915c812939 100644 --- a/internal/graphapi/generated/personalaccesstoken.generated.go +++ b/internal/graphapi/generated/personalaccesstoken.generated.go @@ -304,10 +304,10 @@ func (ec *executionContext) _PersonalAccessTokenBulkCreatePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -343,10 +343,10 @@ func (ec *executionContext) _PersonalAccessTokenCreatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -382,10 +382,10 @@ func (ec *executionContext) _PersonalAccessTokenDeletePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -421,10 +421,10 @@ func (ec *executionContext) _PersonalAccessTokenUpdatePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/platform.generated.go b/internal/graphapi/generated/platform.generated.go index 06faccb798..d92c7ceef8 100644 --- a/internal/graphapi/generated/platform.generated.go +++ b/internal/graphapi/generated/platform.generated.go @@ -796,10 +796,10 @@ func (ec *executionContext) _PlatformBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -835,10 +835,10 @@ func (ec *executionContext) _PlatformCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -874,10 +874,10 @@ func (ec *executionContext) _PlatformDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -913,10 +913,10 @@ func (ec *executionContext) _PlatformUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/prelude.generated.go b/internal/graphapi/generated/prelude.generated.go index 831d4378f8..3ee96f4835 100644 --- a/internal/graphapi/generated/prelude.generated.go +++ b/internal/graphapi/generated/prelude.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -1586,10 +1585,10 @@ func (ec *executionContext) ___Directive(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1634,10 +1633,10 @@ func (ec *executionContext) ___EnumValue(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1692,10 +1691,10 @@ func (ec *executionContext) ___Field(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1747,10 +1746,10 @@ func (ec *executionContext) ___InputValue(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1802,10 +1801,10 @@ func (ec *executionContext) ___Schema(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1861,10 +1860,10 @@ func (ec *executionContext) ___Type(ctx context.Context, sel ast.SelectionSet, o return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -2086,39 +2085,11 @@ func (ec *executionContext) marshalN__Directive2githubᚗcomᚋ99designsᚋgqlge } func (ec *executionContext) marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirectiveᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Directive) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2161,39 +2132,11 @@ func (ec *executionContext) unmarshalN__DirectiveLocation2ᚕstringᚄ(ctx conte } func (ec *executionContext) marshalN__DirectiveLocation2ᚕstringᚄ(ctx context.Context, sel ast.SelectionSet, v []string) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__DirectiveLocation2string(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__DirectiveLocation2string(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2217,39 +2160,11 @@ func (ec *executionContext) marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlg } func (ec *executionContext) marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.InputValue) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2265,39 +2180,11 @@ func (ec *executionContext) marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋg } func (ec *executionContext) marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Type) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2712,39 +2599,11 @@ func (ec *executionContext) marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋgq if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2759,39 +2618,11 @@ func (ec *executionContext) marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlgen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2806,39 +2637,11 @@ func (ec *executionContext) marshalO__InputValue2ᚕgithubᚗcomᚋ99designsᚋg if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2860,39 +2663,11 @@ func (ec *executionContext) marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/generated/procedure.generated.go b/internal/graphapi/generated/procedure.generated.go index 295e523a31..c05ea0d7ee 100644 --- a/internal/graphapi/generated/procedure.generated.go +++ b/internal/graphapi/generated/procedure.generated.go @@ -753,10 +753,10 @@ func (ec *executionContext) _ProcedureBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -792,10 +792,10 @@ func (ec *executionContext) _ProcedureBulkDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -830,10 +830,10 @@ func (ec *executionContext) _ProcedureBulkUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -869,10 +869,10 @@ func (ec *executionContext) _ProcedureCreatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -908,10 +908,10 @@ func (ec *executionContext) _ProcedureDeletePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -947,10 +947,10 @@ func (ec *executionContext) _ProcedureUpdatePayload(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/program.generated.go b/internal/graphapi/generated/program.generated.go index 3d6d8c83e3..27cda91531 100644 --- a/internal/graphapi/generated/program.generated.go +++ b/internal/graphapi/generated/program.generated.go @@ -617,10 +617,10 @@ func (ec *executionContext) _ProgramBulkCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -656,10 +656,10 @@ func (ec *executionContext) _ProgramBulkDeletePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -694,10 +694,10 @@ func (ec *executionContext) _ProgramBulkUpdatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -733,10 +733,10 @@ func (ec *executionContext) _ProgramCreatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -772,10 +772,10 @@ func (ec *executionContext) _ProgramDeletePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -811,10 +811,10 @@ func (ec *executionContext) _ProgramUpdatePayload(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/programextended.generated.go b/internal/graphapi/generated/programextended.generated.go index 711ae79f55..07f8d9b8d2 100644 --- a/internal/graphapi/generated/programextended.generated.go +++ b/internal/graphapi/generated/programextended.generated.go @@ -57,7 +57,6 @@ func (ec *executionContext) unmarshalInputAddProgramMembershipInput(ctx context. it.UserID = data } } - return it, nil } @@ -91,7 +90,6 @@ func (ec *executionContext) unmarshalInputCreateControlWithSubcontrolsInput(ctx it.Subcontrols = data } } - return it, nil } @@ -160,7 +158,6 @@ func (ec *executionContext) unmarshalInputCreateFullProgramInput(ctx context.Con it.StandardID = data } } - return it, nil } @@ -194,7 +191,6 @@ func (ec *executionContext) unmarshalInputCreateMemberWithProgramInput(ctx conte it.UserID = data } } - return it, nil } @@ -256,7 +252,6 @@ func (ec *executionContext) unmarshalInputCreateProgramWithMembersInput(ctx cont it.Categories = data } } - return it, nil } diff --git a/internal/graphapi/generated/programmembership.generated.go b/internal/graphapi/generated/programmembership.generated.go index 8af1fd5e22..f0928cc48c 100644 --- a/internal/graphapi/generated/programmembership.generated.go +++ b/internal/graphapi/generated/programmembership.generated.go @@ -353,10 +353,10 @@ func (ec *executionContext) _ProgramMembershipBulkCreatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -392,10 +392,10 @@ func (ec *executionContext) _ProgramMembershipBulkDeletePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -430,10 +430,10 @@ func (ec *executionContext) _ProgramMembershipBulkUpdatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -469,10 +469,10 @@ func (ec *executionContext) _ProgramMembershipCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -508,10 +508,10 @@ func (ec *executionContext) _ProgramMembershipDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -547,10 +547,10 @@ func (ec *executionContext) _ProgramMembershipUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/remediation.generated.go b/internal/graphapi/generated/remediation.generated.go index a9c1f299bf..da114c4c94 100644 --- a/internal/graphapi/generated/remediation.generated.go +++ b/internal/graphapi/generated/remediation.generated.go @@ -514,10 +514,10 @@ func (ec *executionContext) _RemediationBulkCreatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -553,10 +553,10 @@ func (ec *executionContext) _RemediationCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -592,10 +592,10 @@ func (ec *executionContext) _RemediationDeletePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -631,10 +631,10 @@ func (ec *executionContext) _RemediationUpdatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/review.generated.go b/internal/graphapi/generated/review.generated.go index 079adf62cc..6e5f30c413 100644 --- a/internal/graphapi/generated/review.generated.go +++ b/internal/graphapi/generated/review.generated.go @@ -502,10 +502,10 @@ func (ec *executionContext) _ReviewBulkCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -541,10 +541,10 @@ func (ec *executionContext) _ReviewCreatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -580,10 +580,10 @@ func (ec *executionContext) _ReviewDeletePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -619,10 +619,10 @@ func (ec *executionContext) _ReviewUpdatePayload(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/risk.generated.go b/internal/graphapi/generated/risk.generated.go index e825b82d73..e7e7dae130 100644 --- a/internal/graphapi/generated/risk.generated.go +++ b/internal/graphapi/generated/risk.generated.go @@ -689,10 +689,10 @@ func (ec *executionContext) _RiskBulkCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -728,10 +728,10 @@ func (ec *executionContext) _RiskBulkDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -766,10 +766,10 @@ func (ec *executionContext) _RiskBulkUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -805,10 +805,10 @@ func (ec *executionContext) _RiskCreatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -844,10 +844,10 @@ func (ec *executionContext) _RiskDeletePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -883,10 +883,10 @@ func (ec *executionContext) _RiskUpdatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/root_.generated.go b/internal/graphapi/generated/root_.generated.go index 3a273a69ce..b1bdb4c398 100644 --- a/internal/graphapi/generated/root_.generated.go +++ b/internal/graphapi/generated/root_.generated.go @@ -5,12 +5,10 @@ package gqlgenerated import ( "bytes" "context" - "errors" "sync/atomic" "entgo.io/contrib/entgql" "github.com/99designs/gqlgen/graphql" - "github.com/99designs/gqlgen/graphql/introspection" "github.com/theopenlane/core/common/enums" "github.com/theopenlane/core/internal/ent/generated" "github.com/theopenlane/core/internal/graphapi/model" @@ -20,20 +18,10 @@ import ( // NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface. func NewExecutableSchema(cfg Config) graphql.ExecutableSchema { - return &executableSchema{ - schema: cfg.Schema, - resolvers: cfg.Resolvers, - directives: cfg.Directives, - complexity: cfg.Complexity, - } + return &executableSchema{SchemaData: cfg.Schema, Resolvers: cfg.Resolvers, Directives: cfg.Directives, ComplexityRoot: cfg.Complexity} } -type Config struct { - Schema *ast.Schema - Resolvers ResolverRoot - Directives DirectiveRoot - Complexity ComplexityRoot -} +type Config = graphql.Config[ResolverRoot, DirectiveRoot, ComplexityRoot] type ResolverRoot interface { ActionPlan() ActionPlanResolver @@ -7201,307 +7189,302 @@ type ComplexityRoot struct { } } -type executableSchema struct { - schema *ast.Schema - resolvers ResolverRoot - directives DirectiveRoot - complexity ComplexityRoot -} +type executableSchema graphql.ExecutableSchemaState[ResolverRoot, DirectiveRoot, ComplexityRoot] func (e *executableSchema) Schema() *ast.Schema { - if e.schema != nil { - return e.schema + if e.SchemaData != nil { + return e.SchemaData } return parsedSchema } func (e *executableSchema) Complexity(ctx context.Context, typeName, field string, childComplexity int, rawArgs map[string]any) (int, bool) { - ec := executionContext{nil, e, 0, 0, nil} + ec := newExecutionContext(nil, e, nil) _ = ec switch typeName + "." + field { case "APIToken.createdAt": - if e.complexity.APIToken.CreatedAt == nil { + if e.ComplexityRoot.APIToken.CreatedAt == nil { break } - return e.complexity.APIToken.CreatedAt(childComplexity), true + return e.ComplexityRoot.APIToken.CreatedAt(childComplexity), true case "APIToken.createdBy": - if e.complexity.APIToken.CreatedBy == nil { + if e.ComplexityRoot.APIToken.CreatedBy == nil { break } - return e.complexity.APIToken.CreatedBy(childComplexity), true + return e.ComplexityRoot.APIToken.CreatedBy(childComplexity), true case "APIToken.description": - if e.complexity.APIToken.Description == nil { + if e.ComplexityRoot.APIToken.Description == nil { break } - return e.complexity.APIToken.Description(childComplexity), true + return e.ComplexityRoot.APIToken.Description(childComplexity), true case "APIToken.expiresAt": - if e.complexity.APIToken.ExpiresAt == nil { + if e.ComplexityRoot.APIToken.ExpiresAt == nil { break } - return e.complexity.APIToken.ExpiresAt(childComplexity), true + return e.ComplexityRoot.APIToken.ExpiresAt(childComplexity), true case "APIToken.id": - if e.complexity.APIToken.ID == nil { + if e.ComplexityRoot.APIToken.ID == nil { break } - return e.complexity.APIToken.ID(childComplexity), true + return e.ComplexityRoot.APIToken.ID(childComplexity), true case "APIToken.isActive": - if e.complexity.APIToken.IsActive == nil { + if e.ComplexityRoot.APIToken.IsActive == nil { break } - return e.complexity.APIToken.IsActive(childComplexity), true + return e.ComplexityRoot.APIToken.IsActive(childComplexity), true case "APIToken.lastUsedAt": - if e.complexity.APIToken.LastUsedAt == nil { + if e.ComplexityRoot.APIToken.LastUsedAt == nil { break } - return e.complexity.APIToken.LastUsedAt(childComplexity), true + return e.ComplexityRoot.APIToken.LastUsedAt(childComplexity), true case "APIToken.name": - if e.complexity.APIToken.Name == nil { + if e.ComplexityRoot.APIToken.Name == nil { break } - return e.complexity.APIToken.Name(childComplexity), true + return e.ComplexityRoot.APIToken.Name(childComplexity), true case "APIToken.owner": - if e.complexity.APIToken.Owner == nil { + if e.ComplexityRoot.APIToken.Owner == nil { break } - return e.complexity.APIToken.Owner(childComplexity), true + return e.ComplexityRoot.APIToken.Owner(childComplexity), true case "APIToken.ownerID": - if e.complexity.APIToken.OwnerID == nil { + if e.ComplexityRoot.APIToken.OwnerID == nil { break } - return e.complexity.APIToken.OwnerID(childComplexity), true + return e.ComplexityRoot.APIToken.OwnerID(childComplexity), true case "APIToken.revokedAt": - if e.complexity.APIToken.RevokedAt == nil { + if e.ComplexityRoot.APIToken.RevokedAt == nil { break } - return e.complexity.APIToken.RevokedAt(childComplexity), true + return e.ComplexityRoot.APIToken.RevokedAt(childComplexity), true case "APIToken.revokedBy": - if e.complexity.APIToken.RevokedBy == nil { + if e.ComplexityRoot.APIToken.RevokedBy == nil { break } - return e.complexity.APIToken.RevokedBy(childComplexity), true + return e.ComplexityRoot.APIToken.RevokedBy(childComplexity), true case "APIToken.revokedReason": - if e.complexity.APIToken.RevokedReason == nil { + if e.ComplexityRoot.APIToken.RevokedReason == nil { break } - return e.complexity.APIToken.RevokedReason(childComplexity), true + return e.ComplexityRoot.APIToken.RevokedReason(childComplexity), true case "APIToken.ssoAuthorizations": - if e.complexity.APIToken.SSOAuthorizations == nil { + if e.ComplexityRoot.APIToken.SSOAuthorizations == nil { break } - return e.complexity.APIToken.SSOAuthorizations(childComplexity), true + return e.ComplexityRoot.APIToken.SSOAuthorizations(childComplexity), true case "APIToken.scopes": - if e.complexity.APIToken.Scopes == nil { + if e.ComplexityRoot.APIToken.Scopes == nil { break } - return e.complexity.APIToken.Scopes(childComplexity), true + return e.ComplexityRoot.APIToken.Scopes(childComplexity), true case "APIToken.tags": - if e.complexity.APIToken.Tags == nil { + if e.ComplexityRoot.APIToken.Tags == nil { break } - return e.complexity.APIToken.Tags(childComplexity), true + return e.ComplexityRoot.APIToken.Tags(childComplexity), true case "APIToken.token": - if e.complexity.APIToken.Token == nil { + if e.ComplexityRoot.APIToken.Token == nil { break } - return e.complexity.APIToken.Token(childComplexity), true + return e.ComplexityRoot.APIToken.Token(childComplexity), true case "APIToken.updatedAt": - if e.complexity.APIToken.UpdatedAt == nil { + if e.ComplexityRoot.APIToken.UpdatedAt == nil { break } - return e.complexity.APIToken.UpdatedAt(childComplexity), true + return e.ComplexityRoot.APIToken.UpdatedAt(childComplexity), true case "APIToken.updatedBy": - if e.complexity.APIToken.UpdatedBy == nil { + if e.ComplexityRoot.APIToken.UpdatedBy == nil { break } - return e.complexity.APIToken.UpdatedBy(childComplexity), true + return e.ComplexityRoot.APIToken.UpdatedBy(childComplexity), true case "APITokenBulkCreatePayload.apiTokens": - if e.complexity.APITokenBulkCreatePayload.APITokens == nil { + if e.ComplexityRoot.APITokenBulkCreatePayload.APITokens == nil { break } - return e.complexity.APITokenBulkCreatePayload.APITokens(childComplexity), true + return e.ComplexityRoot.APITokenBulkCreatePayload.APITokens(childComplexity), true case "APITokenBulkDeletePayload.deletedIDs": - if e.complexity.APITokenBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.APITokenBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.APITokenBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.APITokenBulkDeletePayload.DeletedIDs(childComplexity), true case "APITokenBulkUpdatePayload.apiTokens": - if e.complexity.APITokenBulkUpdatePayload.APITokens == nil { + if e.ComplexityRoot.APITokenBulkUpdatePayload.APITokens == nil { break } - return e.complexity.APITokenBulkUpdatePayload.APITokens(childComplexity), true + return e.ComplexityRoot.APITokenBulkUpdatePayload.APITokens(childComplexity), true case "APITokenBulkUpdatePayload.updatedIDs": - if e.complexity.APITokenBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.APITokenBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.APITokenBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.APITokenBulkUpdatePayload.UpdatedIDs(childComplexity), true case "APITokenConnection.edges": - if e.complexity.APITokenConnection.Edges == nil { + if e.ComplexityRoot.APITokenConnection.Edges == nil { break } - return e.complexity.APITokenConnection.Edges(childComplexity), true + return e.ComplexityRoot.APITokenConnection.Edges(childComplexity), true case "APITokenConnection.pageInfo": - if e.complexity.APITokenConnection.PageInfo == nil { + if e.ComplexityRoot.APITokenConnection.PageInfo == nil { break } - return e.complexity.APITokenConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.APITokenConnection.PageInfo(childComplexity), true case "APITokenConnection.totalCount": - if e.complexity.APITokenConnection.TotalCount == nil { + if e.ComplexityRoot.APITokenConnection.TotalCount == nil { break } - return e.complexity.APITokenConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.APITokenConnection.TotalCount(childComplexity), true case "APITokenCreatePayload.apiToken": - if e.complexity.APITokenCreatePayload.APIToken == nil { + if e.ComplexityRoot.APITokenCreatePayload.APIToken == nil { break } - return e.complexity.APITokenCreatePayload.APIToken(childComplexity), true + return e.ComplexityRoot.APITokenCreatePayload.APIToken(childComplexity), true case "APITokenDeletePayload.deletedID": - if e.complexity.APITokenDeletePayload.DeletedID == nil { + if e.ComplexityRoot.APITokenDeletePayload.DeletedID == nil { break } - return e.complexity.APITokenDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.APITokenDeletePayload.DeletedID(childComplexity), true case "APITokenEdge.cursor": - if e.complexity.APITokenEdge.Cursor == nil { + if e.ComplexityRoot.APITokenEdge.Cursor == nil { break } - return e.complexity.APITokenEdge.Cursor(childComplexity), true + return e.ComplexityRoot.APITokenEdge.Cursor(childComplexity), true case "APITokenEdge.node": - if e.complexity.APITokenEdge.Node == nil { + if e.ComplexityRoot.APITokenEdge.Node == nil { break } - return e.complexity.APITokenEdge.Node(childComplexity), true + return e.ComplexityRoot.APITokenEdge.Node(childComplexity), true case "APITokenUpdatePayload.apiToken": - if e.complexity.APITokenUpdatePayload.APIToken == nil { + if e.ComplexityRoot.APITokenUpdatePayload.APIToken == nil { break } - return e.complexity.APITokenUpdatePayload.APIToken(childComplexity), true + return e.ComplexityRoot.APITokenUpdatePayload.APIToken(childComplexity), true case "ActionNotificationsReadPayload.readIDs": - if e.complexity.ActionNotificationsReadPayload.ReadIDs == nil { + if e.ComplexityRoot.ActionNotificationsReadPayload.ReadIDs == nil { break } - return e.complexity.ActionNotificationsReadPayload.ReadIDs(childComplexity), true + return e.ComplexityRoot.ActionNotificationsReadPayload.ReadIDs(childComplexity), true case "ActionPlan.actionPlanKind": - if e.complexity.ActionPlan.ActionPlanKind == nil { + if e.ComplexityRoot.ActionPlan.ActionPlanKind == nil { break } - return e.complexity.ActionPlan.ActionPlanKind(childComplexity), true + return e.ComplexityRoot.ActionPlan.ActionPlanKind(childComplexity), true case "ActionPlan.actionPlanKindID": - if e.complexity.ActionPlan.ActionPlanKindID == nil { + if e.ComplexityRoot.ActionPlan.ActionPlanKindID == nil { break } - return e.complexity.ActionPlan.ActionPlanKindID(childComplexity), true + return e.ComplexityRoot.ActionPlan.ActionPlanKindID(childComplexity), true case "ActionPlan.actionPlanKindName": - if e.complexity.ActionPlan.ActionPlanKindName == nil { + if e.ComplexityRoot.ActionPlan.ActionPlanKindName == nil { break } - return e.complexity.ActionPlan.ActionPlanKindName(childComplexity), true + return e.ComplexityRoot.ActionPlan.ActionPlanKindName(childComplexity), true case "ActionPlan.activeWorkflowInstances": - if e.complexity.ActionPlan.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.ActionPlan.ActiveWorkflowInstances == nil { break } - return e.complexity.ActionPlan.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.ActionPlan.ActiveWorkflowInstances(childComplexity), true case "ActionPlan.approvalRequired": - if e.complexity.ActionPlan.ApprovalRequired == nil { + if e.ComplexityRoot.ActionPlan.ApprovalRequired == nil { break } - return e.complexity.ActionPlan.ApprovalRequired(childComplexity), true + return e.ComplexityRoot.ActionPlan.ApprovalRequired(childComplexity), true case "ActionPlan.approver": - if e.complexity.ActionPlan.Approver == nil { + if e.ComplexityRoot.ActionPlan.Approver == nil { break } - return e.complexity.ActionPlan.Approver(childComplexity), true + return e.ComplexityRoot.ActionPlan.Approver(childComplexity), true case "ActionPlan.approverID": - if e.complexity.ActionPlan.ApproverID == nil { + if e.ComplexityRoot.ActionPlan.ApproverID == nil { break } - return e.complexity.ActionPlan.ApproverID(childComplexity), true + return e.ComplexityRoot.ActionPlan.ApproverID(childComplexity), true case "ActionPlan.blocked": - if e.complexity.ActionPlan.Blocked == nil { + if e.ComplexityRoot.ActionPlan.Blocked == nil { break } - return e.complexity.ActionPlan.Blocked(childComplexity), true + return e.ComplexityRoot.ActionPlan.Blocked(childComplexity), true case "ActionPlan.blockedGroups": - if e.complexity.ActionPlan.BlockedGroups == nil { + if e.ComplexityRoot.ActionPlan.BlockedGroups == nil { break } @@ -7510,31 +7493,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ActionPlan.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ActionPlan.blockerReason": - if e.complexity.ActionPlan.BlockerReason == nil { + if e.ComplexityRoot.ActionPlan.BlockerReason == nil { break } - return e.complexity.ActionPlan.BlockerReason(childComplexity), true + return e.ComplexityRoot.ActionPlan.BlockerReason(childComplexity), true case "ActionPlan.completedAt": - if e.complexity.ActionPlan.CompletedAt == nil { + if e.ComplexityRoot.ActionPlan.CompletedAt == nil { break } - return e.complexity.ActionPlan.CompletedAt(childComplexity), true + return e.ComplexityRoot.ActionPlan.CompletedAt(childComplexity), true case "ActionPlan.controlSuggestions": - if e.complexity.ActionPlan.ControlSuggestions == nil { + if e.ComplexityRoot.ActionPlan.ControlSuggestions == nil { break } - return e.complexity.ActionPlan.ControlSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlan.ControlSuggestions(childComplexity), true case "ActionPlan.controls": - if e.complexity.ActionPlan.Controls == nil { + if e.ComplexityRoot.ActionPlan.Controls == nil { break } @@ -7543,87 +7526,87 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.ActionPlan.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "ActionPlan.createdAt": - if e.complexity.ActionPlan.CreatedAt == nil { + if e.ComplexityRoot.ActionPlan.CreatedAt == nil { break } - return e.complexity.ActionPlan.CreatedAt(childComplexity), true + return e.ComplexityRoot.ActionPlan.CreatedAt(childComplexity), true case "ActionPlan.createdBy": - if e.complexity.ActionPlan.CreatedBy == nil { + if e.ComplexityRoot.ActionPlan.CreatedBy == nil { break } - return e.complexity.ActionPlan.CreatedBy(childComplexity), true + return e.ComplexityRoot.ActionPlan.CreatedBy(childComplexity), true case "ActionPlan.delegate": - if e.complexity.ActionPlan.Delegate == nil { + if e.ComplexityRoot.ActionPlan.Delegate == nil { break } - return e.complexity.ActionPlan.Delegate(childComplexity), true + return e.ComplexityRoot.ActionPlan.Delegate(childComplexity), true case "ActionPlan.delegateID": - if e.complexity.ActionPlan.DelegateID == nil { + if e.ComplexityRoot.ActionPlan.DelegateID == nil { break } - return e.complexity.ActionPlan.DelegateID(childComplexity), true + return e.ComplexityRoot.ActionPlan.DelegateID(childComplexity), true case "ActionPlan.description": - if e.complexity.ActionPlan.Description == nil { + if e.ComplexityRoot.ActionPlan.Description == nil { break } - return e.complexity.ActionPlan.Description(childComplexity), true + return e.ComplexityRoot.ActionPlan.Description(childComplexity), true case "ActionPlan.details": - if e.complexity.ActionPlan.Details == nil { + if e.ComplexityRoot.ActionPlan.Details == nil { break } - return e.complexity.ActionPlan.Details(childComplexity), true + return e.ComplexityRoot.ActionPlan.Details(childComplexity), true case "ActionPlan.detailsJSON": - if e.complexity.ActionPlan.DetailsJSON == nil { + if e.ComplexityRoot.ActionPlan.DetailsJSON == nil { break } - return e.complexity.ActionPlan.DetailsJSON(childComplexity), true + return e.ComplexityRoot.ActionPlan.DetailsJSON(childComplexity), true case "ActionPlan.dismissedControlSuggestions": - if e.complexity.ActionPlan.DismissedControlSuggestions == nil { + if e.ComplexityRoot.ActionPlan.DismissedControlSuggestions == nil { break } - return e.complexity.ActionPlan.DismissedControlSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlan.DismissedControlSuggestions(childComplexity), true case "ActionPlan.dismissedImprovementSuggestions": - if e.complexity.ActionPlan.DismissedImprovementSuggestions == nil { + if e.ComplexityRoot.ActionPlan.DismissedImprovementSuggestions == nil { break } - return e.complexity.ActionPlan.DismissedImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlan.DismissedImprovementSuggestions(childComplexity), true case "ActionPlan.dismissedTagSuggestions": - if e.complexity.ActionPlan.DismissedTagSuggestions == nil { + if e.ComplexityRoot.ActionPlan.DismissedTagSuggestions == nil { break } - return e.complexity.ActionPlan.DismissedTagSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlan.DismissedTagSuggestions(childComplexity), true case "ActionPlan.dueDate": - if e.complexity.ActionPlan.DueDate == nil { + if e.ComplexityRoot.ActionPlan.DueDate == nil { break } - return e.complexity.ActionPlan.DueDate(childComplexity), true + return e.ComplexityRoot.ActionPlan.DueDate(childComplexity), true case "ActionPlan.editors": - if e.complexity.ActionPlan.Editors == nil { + if e.ComplexityRoot.ActionPlan.Editors == nil { break } @@ -7632,24 +7615,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ActionPlan.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ActionPlan.file": - if e.complexity.ActionPlan.File == nil { + if e.ComplexityRoot.ActionPlan.File == nil { break } - return e.complexity.ActionPlan.File(childComplexity), true + return e.ComplexityRoot.ActionPlan.File(childComplexity), true case "ActionPlan.fileID": - if e.complexity.ActionPlan.FileID == nil { + if e.ComplexityRoot.ActionPlan.FileID == nil { break } - return e.complexity.ActionPlan.FileID(childComplexity), true + return e.ComplexityRoot.ActionPlan.FileID(childComplexity), true case "ActionPlan.findings": - if e.complexity.ActionPlan.Findings == nil { + if e.ComplexityRoot.ActionPlan.Findings == nil { break } @@ -7658,38 +7641,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.ActionPlan.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "ActionPlan.hasPendingWorkflow": - if e.complexity.ActionPlan.HasPendingWorkflow == nil { + if e.ComplexityRoot.ActionPlan.HasPendingWorkflow == nil { break } - return e.complexity.ActionPlan.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.ActionPlan.HasPendingWorkflow(childComplexity), true case "ActionPlan.hasWorkflowHistory": - if e.complexity.ActionPlan.HasWorkflowHistory == nil { + if e.ComplexityRoot.ActionPlan.HasWorkflowHistory == nil { break } - return e.complexity.ActionPlan.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.ActionPlan.HasWorkflowHistory(childComplexity), true case "ActionPlan.id": - if e.complexity.ActionPlan.ID == nil { + if e.ComplexityRoot.ActionPlan.ID == nil { break } - return e.complexity.ActionPlan.ID(childComplexity), true + return e.ComplexityRoot.ActionPlan.ID(childComplexity), true case "ActionPlan.improvementSuggestions": - if e.complexity.ActionPlan.ImprovementSuggestions == nil { + if e.ComplexityRoot.ActionPlan.ImprovementSuggestions == nil { break } - return e.complexity.ActionPlan.ImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlan.ImprovementSuggestions(childComplexity), true case "ActionPlan.integrations": - if e.complexity.ActionPlan.Integrations == nil { + if e.ComplexityRoot.ActionPlan.Integrations == nil { break } @@ -7698,52 +7681,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.ActionPlan.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "ActionPlan.internalNotes": - if e.complexity.ActionPlan.InternalNotes == nil { + if e.ComplexityRoot.ActionPlan.InternalNotes == nil { break } - return e.complexity.ActionPlan.InternalNotes(childComplexity), true + return e.ComplexityRoot.ActionPlan.InternalNotes(childComplexity), true case "ActionPlan.metadata": - if e.complexity.ActionPlan.Metadata == nil { + if e.ComplexityRoot.ActionPlan.Metadata == nil { break } - return e.complexity.ActionPlan.Metadata(childComplexity), true + return e.ComplexityRoot.ActionPlan.Metadata(childComplexity), true case "ActionPlan.name": - if e.complexity.ActionPlan.Name == nil { + if e.ComplexityRoot.ActionPlan.Name == nil { break } - return e.complexity.ActionPlan.Name(childComplexity), true + return e.ComplexityRoot.ActionPlan.Name(childComplexity), true case "ActionPlan.owner": - if e.complexity.ActionPlan.Owner == nil { + if e.ComplexityRoot.ActionPlan.Owner == nil { break } - return e.complexity.ActionPlan.Owner(childComplexity), true + return e.ComplexityRoot.ActionPlan.Owner(childComplexity), true case "ActionPlan.ownerID": - if e.complexity.ActionPlan.OwnerID == nil { + if e.ComplexityRoot.ActionPlan.OwnerID == nil { break } - return e.complexity.ActionPlan.OwnerID(childComplexity), true + return e.ComplexityRoot.ActionPlan.OwnerID(childComplexity), true case "ActionPlan.priority": - if e.complexity.ActionPlan.Priority == nil { + if e.ComplexityRoot.ActionPlan.Priority == nil { break } - return e.complexity.ActionPlan.Priority(childComplexity), true + return e.ComplexityRoot.ActionPlan.Priority(childComplexity), true case "ActionPlan.programs": - if e.complexity.ActionPlan.Programs == nil { + if e.ComplexityRoot.ActionPlan.Programs == nil { break } @@ -7752,17 +7735,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.ActionPlan.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "ActionPlan.rawPayload": - if e.complexity.ActionPlan.RawPayload == nil { + if e.ComplexityRoot.ActionPlan.RawPayload == nil { break } - return e.complexity.ActionPlan.RawPayload(childComplexity), true + return e.ComplexityRoot.ActionPlan.RawPayload(childComplexity), true case "ActionPlan.remediations": - if e.complexity.ActionPlan.Remediations == nil { + if e.ComplexityRoot.ActionPlan.Remediations == nil { break } @@ -7771,31 +7754,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.ActionPlan.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "ActionPlan.requiresApproval": - if e.complexity.ActionPlan.RequiresApproval == nil { + if e.ComplexityRoot.ActionPlan.RequiresApproval == nil { break } - return e.complexity.ActionPlan.RequiresApproval(childComplexity), true + return e.ComplexityRoot.ActionPlan.RequiresApproval(childComplexity), true case "ActionPlan.reviewDue": - if e.complexity.ActionPlan.ReviewDue == nil { + if e.ComplexityRoot.ActionPlan.ReviewDue == nil { break } - return e.complexity.ActionPlan.ReviewDue(childComplexity), true + return e.ComplexityRoot.ActionPlan.ReviewDue(childComplexity), true case "ActionPlan.reviewFrequency": - if e.complexity.ActionPlan.ReviewFrequency == nil { + if e.ComplexityRoot.ActionPlan.ReviewFrequency == nil { break } - return e.complexity.ActionPlan.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.ActionPlan.ReviewFrequency(childComplexity), true case "ActionPlan.reviews": - if e.complexity.ActionPlan.Reviews == nil { + if e.ComplexityRoot.ActionPlan.Reviews == nil { break } @@ -7804,17 +7787,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true + return e.ComplexityRoot.ActionPlan.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true case "ActionPlan.revision": - if e.complexity.ActionPlan.Revision == nil { + if e.ComplexityRoot.ActionPlan.Revision == nil { break } - return e.complexity.ActionPlan.Revision(childComplexity), true + return e.ComplexityRoot.ActionPlan.Revision(childComplexity), true case "ActionPlan.risks": - if e.complexity.ActionPlan.Risks == nil { + if e.ComplexityRoot.ActionPlan.Risks == nil { break } @@ -7823,10 +7806,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.ActionPlan.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "ActionPlan.scans": - if e.complexity.ActionPlan.Scans == nil { + if e.ComplexityRoot.ActionPlan.Scans == nil { break } @@ -7835,59 +7818,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.ActionPlan.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "ActionPlan.source": - if e.complexity.ActionPlan.Source == nil { + if e.ComplexityRoot.ActionPlan.Source == nil { break } - return e.complexity.ActionPlan.Source(childComplexity), true + return e.ComplexityRoot.ActionPlan.Source(childComplexity), true case "ActionPlan.status": - if e.complexity.ActionPlan.Status == nil { + if e.ComplexityRoot.ActionPlan.Status == nil { break } - return e.complexity.ActionPlan.Status(childComplexity), true + return e.ComplexityRoot.ActionPlan.Status(childComplexity), true case "ActionPlan.summary": - if e.complexity.ActionPlan.Summary == nil { + if e.ComplexityRoot.ActionPlan.Summary == nil { break } - return e.complexity.ActionPlan.Summary(childComplexity), true + return e.ComplexityRoot.ActionPlan.Summary(childComplexity), true case "ActionPlan.systemInternalID": - if e.complexity.ActionPlan.SystemInternalID == nil { + if e.ComplexityRoot.ActionPlan.SystemInternalID == nil { break } - return e.complexity.ActionPlan.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ActionPlan.SystemInternalID(childComplexity), true case "ActionPlan.systemOwned": - if e.complexity.ActionPlan.SystemOwned == nil { + if e.ComplexityRoot.ActionPlan.SystemOwned == nil { break } - return e.complexity.ActionPlan.SystemOwned(childComplexity), true + return e.ComplexityRoot.ActionPlan.SystemOwned(childComplexity), true case "ActionPlan.tagSuggestions": - if e.complexity.ActionPlan.TagSuggestions == nil { + if e.ComplexityRoot.ActionPlan.TagSuggestions == nil { break } - return e.complexity.ActionPlan.TagSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlan.TagSuggestions(childComplexity), true case "ActionPlan.tags": - if e.complexity.ActionPlan.Tags == nil { + if e.ComplexityRoot.ActionPlan.Tags == nil { break } - return e.complexity.ActionPlan.Tags(childComplexity), true + return e.ComplexityRoot.ActionPlan.Tags(childComplexity), true case "ActionPlan.tasks": - if e.complexity.ActionPlan.Tasks == nil { + if e.ComplexityRoot.ActionPlan.Tasks == nil { break } @@ -7896,38 +7879,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.ActionPlan.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "ActionPlan.title": - if e.complexity.ActionPlan.Title == nil { + if e.ComplexityRoot.ActionPlan.Title == nil { break } - return e.complexity.ActionPlan.Title(childComplexity), true + return e.ComplexityRoot.ActionPlan.Title(childComplexity), true case "ActionPlan.url": - if e.complexity.ActionPlan.URL == nil { + if e.ComplexityRoot.ActionPlan.URL == nil { break } - return e.complexity.ActionPlan.URL(childComplexity), true + return e.ComplexityRoot.ActionPlan.URL(childComplexity), true case "ActionPlan.updatedAt": - if e.complexity.ActionPlan.UpdatedAt == nil { + if e.ComplexityRoot.ActionPlan.UpdatedAt == nil { break } - return e.complexity.ActionPlan.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ActionPlan.UpdatedAt(childComplexity), true case "ActionPlan.updatedBy": - if e.complexity.ActionPlan.UpdatedBy == nil { + if e.ComplexityRoot.ActionPlan.UpdatedBy == nil { break } - return e.complexity.ActionPlan.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ActionPlan.UpdatedBy(childComplexity), true case "ActionPlan.viewers": - if e.complexity.ActionPlan.Viewers == nil { + if e.ComplexityRoot.ActionPlan.Viewers == nil { break } @@ -7936,10 +7919,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ActionPlan.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ActionPlan.vulnerabilities": - if e.complexity.ActionPlan.Vulnerabilities == nil { + if e.ComplexityRoot.ActionPlan.Vulnerabilities == nil { break } @@ -7948,17 +7931,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.ActionPlan.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "ActionPlan.workflowEligibleMarker": - if e.complexity.ActionPlan.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.ActionPlan.WorkflowEligibleMarker == nil { break } - return e.complexity.ActionPlan.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.ActionPlan.WorkflowEligibleMarker(childComplexity), true case "ActionPlan.workflowObjectRefs": - if e.complexity.ActionPlan.WorkflowObjectRefs == nil { + if e.ComplexityRoot.ActionPlan.WorkflowObjectRefs == nil { break } @@ -7967,10 +7950,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.ActionPlan.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "ActionPlan.workflowTimeline": - if e.complexity.ActionPlan.WorkflowTimeline == nil { + if e.ComplexityRoot.ActionPlan.WorkflowTimeline == nil { break } @@ -7979,94 +7962,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ActionPlan.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.ActionPlan.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "ActionPlanBulkCreatePayload.actionPlans": - if e.complexity.ActionPlanBulkCreatePayload.ActionPlans == nil { + if e.ComplexityRoot.ActionPlanBulkCreatePayload.ActionPlans == nil { break } - return e.complexity.ActionPlanBulkCreatePayload.ActionPlans(childComplexity), true + return e.ComplexityRoot.ActionPlanBulkCreatePayload.ActionPlans(childComplexity), true case "ActionPlanBulkDeletePayload.deletedIDs": - if e.complexity.ActionPlanBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ActionPlanBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ActionPlanBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ActionPlanBulkDeletePayload.DeletedIDs(childComplexity), true case "ActionPlanBulkUpdatePayload.actionPlans": - if e.complexity.ActionPlanBulkUpdatePayload.ActionPlans == nil { + if e.ComplexityRoot.ActionPlanBulkUpdatePayload.ActionPlans == nil { break } - return e.complexity.ActionPlanBulkUpdatePayload.ActionPlans(childComplexity), true + return e.ComplexityRoot.ActionPlanBulkUpdatePayload.ActionPlans(childComplexity), true case "ActionPlanBulkUpdatePayload.updatedIDs": - if e.complexity.ActionPlanBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ActionPlanBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ActionPlanBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ActionPlanBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ActionPlanConnection.edges": - if e.complexity.ActionPlanConnection.Edges == nil { + if e.ComplexityRoot.ActionPlanConnection.Edges == nil { break } - return e.complexity.ActionPlanConnection.Edges(childComplexity), true + return e.ComplexityRoot.ActionPlanConnection.Edges(childComplexity), true case "ActionPlanConnection.pageInfo": - if e.complexity.ActionPlanConnection.PageInfo == nil { + if e.ComplexityRoot.ActionPlanConnection.PageInfo == nil { break } - return e.complexity.ActionPlanConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ActionPlanConnection.PageInfo(childComplexity), true case "ActionPlanConnection.totalCount": - if e.complexity.ActionPlanConnection.TotalCount == nil { + if e.ComplexityRoot.ActionPlanConnection.TotalCount == nil { break } - return e.complexity.ActionPlanConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ActionPlanConnection.TotalCount(childComplexity), true case "ActionPlanCreatePayload.actionPlan": - if e.complexity.ActionPlanCreatePayload.ActionPlan == nil { + if e.ComplexityRoot.ActionPlanCreatePayload.ActionPlan == nil { break } - return e.complexity.ActionPlanCreatePayload.ActionPlan(childComplexity), true + return e.ComplexityRoot.ActionPlanCreatePayload.ActionPlan(childComplexity), true case "ActionPlanDeletePayload.deletedID": - if e.complexity.ActionPlanDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ActionPlanDeletePayload.DeletedID == nil { break } - return e.complexity.ActionPlanDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ActionPlanDeletePayload.DeletedID(childComplexity), true case "ActionPlanEdge.cursor": - if e.complexity.ActionPlanEdge.Cursor == nil { + if e.ComplexityRoot.ActionPlanEdge.Cursor == nil { break } - return e.complexity.ActionPlanEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ActionPlanEdge.Cursor(childComplexity), true case "ActionPlanEdge.node": - if e.complexity.ActionPlanEdge.Node == nil { + if e.ComplexityRoot.ActionPlanEdge.Node == nil { break } - return e.complexity.ActionPlanEdge.Node(childComplexity), true + return e.ComplexityRoot.ActionPlanEdge.Node(childComplexity), true case "ActionPlanUpdatePayload.actionPlan": - if e.complexity.ActionPlanUpdatePayload.ActionPlan == nil { + if e.ComplexityRoot.ActionPlanUpdatePayload.ActionPlan == nil { break } - return e.complexity.ActionPlanUpdatePayload.ActionPlan(childComplexity), true + return e.ComplexityRoot.ActionPlanUpdatePayload.ActionPlan(childComplexity), true case "Assessment.assessmentResponses": - if e.complexity.Assessment.AssessmentResponses == nil { + if e.ComplexityRoot.Assessment.AssessmentResponses == nil { break } @@ -8075,17 +8058,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Assessment.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true + return e.ComplexityRoot.Assessment.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true case "Assessment.assessmentType": - if e.complexity.Assessment.AssessmentType == nil { + if e.ComplexityRoot.Assessment.AssessmentType == nil { break } - return e.complexity.Assessment.AssessmentType(childComplexity), true + return e.ComplexityRoot.Assessment.AssessmentType(childComplexity), true case "Assessment.blockedGroups": - if e.complexity.Assessment.BlockedGroups == nil { + if e.ComplexityRoot.Assessment.BlockedGroups == nil { break } @@ -8094,10 +8077,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Assessment.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Assessment.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Assessment.campaigns": - if e.complexity.Assessment.Campaigns == nil { + if e.ComplexityRoot.Assessment.Campaigns == nil { break } @@ -8106,24 +8089,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Assessment.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Assessment.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Assessment.createdAt": - if e.complexity.Assessment.CreatedAt == nil { + if e.ComplexityRoot.Assessment.CreatedAt == nil { break } - return e.complexity.Assessment.CreatedAt(childComplexity), true + return e.ComplexityRoot.Assessment.CreatedAt(childComplexity), true case "Assessment.createdBy": - if e.complexity.Assessment.CreatedBy == nil { + if e.ComplexityRoot.Assessment.CreatedBy == nil { break } - return e.complexity.Assessment.CreatedBy(childComplexity), true + return e.ComplexityRoot.Assessment.CreatedBy(childComplexity), true case "Assessment.editors": - if e.complexity.Assessment.Editors == nil { + if e.ComplexityRoot.Assessment.Editors == nil { break } @@ -8132,17 +8115,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Assessment.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Assessment.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Assessment.id": - if e.complexity.Assessment.ID == nil { + if e.ComplexityRoot.Assessment.ID == nil { break } - return e.complexity.Assessment.ID(childComplexity), true + return e.ComplexityRoot.Assessment.ID(childComplexity), true case "Assessment.identityHolders": - if e.complexity.Assessment.IdentityHolders == nil { + if e.ComplexityRoot.Assessment.IdentityHolders == nil { break } @@ -8151,38 +8134,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Assessment.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Assessment.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Assessment.jsonconfig": - if e.complexity.Assessment.Jsonconfig == nil { + if e.ComplexityRoot.Assessment.Jsonconfig == nil { break } - return e.complexity.Assessment.Jsonconfig(childComplexity), true + return e.ComplexityRoot.Assessment.Jsonconfig(childComplexity), true case "Assessment.name": - if e.complexity.Assessment.Name == nil { + if e.ComplexityRoot.Assessment.Name == nil { break } - return e.complexity.Assessment.Name(childComplexity), true + return e.ComplexityRoot.Assessment.Name(childComplexity), true case "Assessment.owner": - if e.complexity.Assessment.Owner == nil { + if e.ComplexityRoot.Assessment.Owner == nil { break } - return e.complexity.Assessment.Owner(childComplexity), true + return e.ComplexityRoot.Assessment.Owner(childComplexity), true case "Assessment.ownerID": - if e.complexity.Assessment.OwnerID == nil { + if e.ComplexityRoot.Assessment.OwnerID == nil { break } - return e.complexity.Assessment.OwnerID(childComplexity), true + return e.ComplexityRoot.Assessment.OwnerID(childComplexity), true case "Assessment.platforms": - if e.complexity.Assessment.Platforms == nil { + if e.ComplexityRoot.Assessment.Platforms == nil { break } @@ -8191,59 +8174,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Assessment.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Assessment.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Assessment.responseDueDuration": - if e.complexity.Assessment.ResponseDueDuration == nil { + if e.ComplexityRoot.Assessment.ResponseDueDuration == nil { break } - return e.complexity.Assessment.ResponseDueDuration(childComplexity), true + return e.ComplexityRoot.Assessment.ResponseDueDuration(childComplexity), true case "Assessment.tags": - if e.complexity.Assessment.Tags == nil { + if e.ComplexityRoot.Assessment.Tags == nil { break } - return e.complexity.Assessment.Tags(childComplexity), true + return e.ComplexityRoot.Assessment.Tags(childComplexity), true case "Assessment.template": - if e.complexity.Assessment.Template == nil { + if e.ComplexityRoot.Assessment.Template == nil { break } - return e.complexity.Assessment.Template(childComplexity), true + return e.ComplexityRoot.Assessment.Template(childComplexity), true case "Assessment.templateID": - if e.complexity.Assessment.TemplateID == nil { + if e.ComplexityRoot.Assessment.TemplateID == nil { break } - return e.complexity.Assessment.TemplateID(childComplexity), true + return e.ComplexityRoot.Assessment.TemplateID(childComplexity), true case "Assessment.uischema": - if e.complexity.Assessment.Uischema == nil { + if e.ComplexityRoot.Assessment.Uischema == nil { break } - return e.complexity.Assessment.Uischema(childComplexity), true + return e.ComplexityRoot.Assessment.Uischema(childComplexity), true case "Assessment.updatedAt": - if e.complexity.Assessment.UpdatedAt == nil { + if e.ComplexityRoot.Assessment.UpdatedAt == nil { break } - return e.complexity.Assessment.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Assessment.UpdatedAt(childComplexity), true case "Assessment.updatedBy": - if e.complexity.Assessment.UpdatedBy == nil { + if e.ComplexityRoot.Assessment.UpdatedBy == nil { break } - return e.complexity.Assessment.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Assessment.UpdatedBy(childComplexity), true case "Assessment.viewers": - if e.complexity.Assessment.Viewers == nil { + if e.ComplexityRoot.Assessment.Viewers == nil { break } @@ -8252,423 +8235,423 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Assessment.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Assessment.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "AssessmentBulkDeletePayload.deletedIDs": - if e.complexity.AssessmentBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.AssessmentBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.AssessmentBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.AssessmentBulkDeletePayload.DeletedIDs(childComplexity), true case "AssessmentConnection.edges": - if e.complexity.AssessmentConnection.Edges == nil { + if e.ComplexityRoot.AssessmentConnection.Edges == nil { break } - return e.complexity.AssessmentConnection.Edges(childComplexity), true + return e.ComplexityRoot.AssessmentConnection.Edges(childComplexity), true case "AssessmentConnection.pageInfo": - if e.complexity.AssessmentConnection.PageInfo == nil { + if e.ComplexityRoot.AssessmentConnection.PageInfo == nil { break } - return e.complexity.AssessmentConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.AssessmentConnection.PageInfo(childComplexity), true case "AssessmentConnection.totalCount": - if e.complexity.AssessmentConnection.TotalCount == nil { + if e.ComplexityRoot.AssessmentConnection.TotalCount == nil { break } - return e.complexity.AssessmentConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.AssessmentConnection.TotalCount(childComplexity), true case "AssessmentCreatePayload.assessment": - if e.complexity.AssessmentCreatePayload.Assessment == nil { + if e.ComplexityRoot.AssessmentCreatePayload.Assessment == nil { break } - return e.complexity.AssessmentCreatePayload.Assessment(childComplexity), true + return e.ComplexityRoot.AssessmentCreatePayload.Assessment(childComplexity), true case "AssessmentDeletePayload.deletedID": - if e.complexity.AssessmentDeletePayload.DeletedID == nil { + if e.ComplexityRoot.AssessmentDeletePayload.DeletedID == nil { break } - return e.complexity.AssessmentDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.AssessmentDeletePayload.DeletedID(childComplexity), true case "AssessmentEdge.cursor": - if e.complexity.AssessmentEdge.Cursor == nil { + if e.ComplexityRoot.AssessmentEdge.Cursor == nil { break } - return e.complexity.AssessmentEdge.Cursor(childComplexity), true + return e.ComplexityRoot.AssessmentEdge.Cursor(childComplexity), true case "AssessmentEdge.node": - if e.complexity.AssessmentEdge.Node == nil { + if e.ComplexityRoot.AssessmentEdge.Node == nil { break } - return e.complexity.AssessmentEdge.Node(childComplexity), true + return e.ComplexityRoot.AssessmentEdge.Node(childComplexity), true case "AssessmentResponse.assessment": - if e.complexity.AssessmentResponse.Assessment == nil { + if e.ComplexityRoot.AssessmentResponse.Assessment == nil { break } - return e.complexity.AssessmentResponse.Assessment(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.Assessment(childComplexity), true case "AssessmentResponse.assessmentID": - if e.complexity.AssessmentResponse.AssessmentID == nil { + if e.ComplexityRoot.AssessmentResponse.AssessmentID == nil { break } - return e.complexity.AssessmentResponse.AssessmentID(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.AssessmentID(childComplexity), true case "AssessmentResponse.assignedAt": - if e.complexity.AssessmentResponse.AssignedAt == nil { + if e.ComplexityRoot.AssessmentResponse.AssignedAt == nil { break } - return e.complexity.AssessmentResponse.AssignedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.AssignedAt(childComplexity), true case "AssessmentResponse.campaign": - if e.complexity.AssessmentResponse.Campaign == nil { + if e.ComplexityRoot.AssessmentResponse.Campaign == nil { break } - return e.complexity.AssessmentResponse.Campaign(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.Campaign(childComplexity), true case "AssessmentResponse.campaignID": - if e.complexity.AssessmentResponse.CampaignID == nil { + if e.ComplexityRoot.AssessmentResponse.CampaignID == nil { break } - return e.complexity.AssessmentResponse.CampaignID(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.CampaignID(childComplexity), true case "AssessmentResponse.completedAt": - if e.complexity.AssessmentResponse.CompletedAt == nil { + if e.ComplexityRoot.AssessmentResponse.CompletedAt == nil { break } - return e.complexity.AssessmentResponse.CompletedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.CompletedAt(childComplexity), true case "AssessmentResponse.createdAt": - if e.complexity.AssessmentResponse.CreatedAt == nil { + if e.ComplexityRoot.AssessmentResponse.CreatedAt == nil { break } - return e.complexity.AssessmentResponse.CreatedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.CreatedAt(childComplexity), true case "AssessmentResponse.createdBy": - if e.complexity.AssessmentResponse.CreatedBy == nil { + if e.ComplexityRoot.AssessmentResponse.CreatedBy == nil { break } - return e.complexity.AssessmentResponse.CreatedBy(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.CreatedBy(childComplexity), true case "AssessmentResponse.document": - if e.complexity.AssessmentResponse.Document == nil { + if e.ComplexityRoot.AssessmentResponse.Document == nil { break } - return e.complexity.AssessmentResponse.Document(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.Document(childComplexity), true case "AssessmentResponse.documentDataID": - if e.complexity.AssessmentResponse.DocumentDataID == nil { + if e.ComplexityRoot.AssessmentResponse.DocumentDataID == nil { break } - return e.complexity.AssessmentResponse.DocumentDataID(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.DocumentDataID(childComplexity), true case "AssessmentResponse.dueDate": - if e.complexity.AssessmentResponse.DueDate == nil { + if e.ComplexityRoot.AssessmentResponse.DueDate == nil { break } - return e.complexity.AssessmentResponse.DueDate(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.DueDate(childComplexity), true case "AssessmentResponse.email": - if e.complexity.AssessmentResponse.Email == nil { + if e.ComplexityRoot.AssessmentResponse.Email == nil { break } - return e.complexity.AssessmentResponse.Email(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.Email(childComplexity), true case "AssessmentResponse.emailClickCount": - if e.complexity.AssessmentResponse.EmailClickCount == nil { + if e.ComplexityRoot.AssessmentResponse.EmailClickCount == nil { break } - return e.complexity.AssessmentResponse.EmailClickCount(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.EmailClickCount(childComplexity), true case "AssessmentResponse.emailClickedAt": - if e.complexity.AssessmentResponse.EmailClickedAt == nil { + if e.ComplexityRoot.AssessmentResponse.EmailClickedAt == nil { break } - return e.complexity.AssessmentResponse.EmailClickedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.EmailClickedAt(childComplexity), true case "AssessmentResponse.emailDeliveredAt": - if e.complexity.AssessmentResponse.EmailDeliveredAt == nil { + if e.ComplexityRoot.AssessmentResponse.EmailDeliveredAt == nil { break } - return e.complexity.AssessmentResponse.EmailDeliveredAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.EmailDeliveredAt(childComplexity), true case "AssessmentResponse.emailMetadata": - if e.complexity.AssessmentResponse.EmailMetadata == nil { + if e.ComplexityRoot.AssessmentResponse.EmailMetadata == nil { break } - return e.complexity.AssessmentResponse.EmailMetadata(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.EmailMetadata(childComplexity), true case "AssessmentResponse.emailOpenCount": - if e.complexity.AssessmentResponse.EmailOpenCount == nil { + if e.ComplexityRoot.AssessmentResponse.EmailOpenCount == nil { break } - return e.complexity.AssessmentResponse.EmailOpenCount(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.EmailOpenCount(childComplexity), true case "AssessmentResponse.emailOpenedAt": - if e.complexity.AssessmentResponse.EmailOpenedAt == nil { + if e.ComplexityRoot.AssessmentResponse.EmailOpenedAt == nil { break } - return e.complexity.AssessmentResponse.EmailOpenedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.EmailOpenedAt(childComplexity), true case "AssessmentResponse.entity": - if e.complexity.AssessmentResponse.Entity == nil { + if e.ComplexityRoot.AssessmentResponse.Entity == nil { break } - return e.complexity.AssessmentResponse.Entity(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.Entity(childComplexity), true case "AssessmentResponse.entityID": - if e.complexity.AssessmentResponse.EntityID == nil { + if e.ComplexityRoot.AssessmentResponse.EntityID == nil { break } - return e.complexity.AssessmentResponse.EntityID(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.EntityID(childComplexity), true case "AssessmentResponse.id": - if e.complexity.AssessmentResponse.ID == nil { + if e.ComplexityRoot.AssessmentResponse.ID == nil { break } - return e.complexity.AssessmentResponse.ID(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.ID(childComplexity), true case "AssessmentResponse.identityHolder": - if e.complexity.AssessmentResponse.IdentityHolder == nil { + if e.ComplexityRoot.AssessmentResponse.IdentityHolder == nil { break } - return e.complexity.AssessmentResponse.IdentityHolder(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.IdentityHolder(childComplexity), true case "AssessmentResponse.identityHolderID": - if e.complexity.AssessmentResponse.IdentityHolderID == nil { + if e.ComplexityRoot.AssessmentResponse.IdentityHolderID == nil { break } - return e.complexity.AssessmentResponse.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.IdentityHolderID(childComplexity), true case "AssessmentResponse.isDraft": - if e.complexity.AssessmentResponse.IsDraft == nil { + if e.ComplexityRoot.AssessmentResponse.IsDraft == nil { break } - return e.complexity.AssessmentResponse.IsDraft(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.IsDraft(childComplexity), true case "AssessmentResponse.isTest": - if e.complexity.AssessmentResponse.IsTest == nil { + if e.ComplexityRoot.AssessmentResponse.IsTest == nil { break } - return e.complexity.AssessmentResponse.IsTest(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.IsTest(childComplexity), true case "AssessmentResponse.lastEmailEventAt": - if e.complexity.AssessmentResponse.LastEmailEventAt == nil { + if e.ComplexityRoot.AssessmentResponse.LastEmailEventAt == nil { break } - return e.complexity.AssessmentResponse.LastEmailEventAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.LastEmailEventAt(childComplexity), true case "AssessmentResponse.owner": - if e.complexity.AssessmentResponse.Owner == nil { + if e.ComplexityRoot.AssessmentResponse.Owner == nil { break } - return e.complexity.AssessmentResponse.Owner(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.Owner(childComplexity), true case "AssessmentResponse.ownerID": - if e.complexity.AssessmentResponse.OwnerID == nil { + if e.ComplexityRoot.AssessmentResponse.OwnerID == nil { break } - return e.complexity.AssessmentResponse.OwnerID(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.OwnerID(childComplexity), true case "AssessmentResponse.sendAttempts": - if e.complexity.AssessmentResponse.SendAttempts == nil { + if e.ComplexityRoot.AssessmentResponse.SendAttempts == nil { break } - return e.complexity.AssessmentResponse.SendAttempts(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.SendAttempts(childComplexity), true case "AssessmentResponse.startedAt": - if e.complexity.AssessmentResponse.StartedAt == nil { + if e.ComplexityRoot.AssessmentResponse.StartedAt == nil { break } - return e.complexity.AssessmentResponse.StartedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.StartedAt(childComplexity), true case "AssessmentResponse.status": - if e.complexity.AssessmentResponse.Status == nil { + if e.ComplexityRoot.AssessmentResponse.Status == nil { break } - return e.complexity.AssessmentResponse.Status(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.Status(childComplexity), true case "AssessmentResponse.updatedAt": - if e.complexity.AssessmentResponse.UpdatedAt == nil { + if e.ComplexityRoot.AssessmentResponse.UpdatedAt == nil { break } - return e.complexity.AssessmentResponse.UpdatedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.UpdatedAt(childComplexity), true case "AssessmentResponse.updatedBy": - if e.complexity.AssessmentResponse.UpdatedBy == nil { + if e.ComplexityRoot.AssessmentResponse.UpdatedBy == nil { break } - return e.complexity.AssessmentResponse.UpdatedBy(childComplexity), true + return e.ComplexityRoot.AssessmentResponse.UpdatedBy(childComplexity), true case "AssessmentResponseConnection.edges": - if e.complexity.AssessmentResponseConnection.Edges == nil { + if e.ComplexityRoot.AssessmentResponseConnection.Edges == nil { break } - return e.complexity.AssessmentResponseConnection.Edges(childComplexity), true + return e.ComplexityRoot.AssessmentResponseConnection.Edges(childComplexity), true case "AssessmentResponseConnection.pageInfo": - if e.complexity.AssessmentResponseConnection.PageInfo == nil { + if e.ComplexityRoot.AssessmentResponseConnection.PageInfo == nil { break } - return e.complexity.AssessmentResponseConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.AssessmentResponseConnection.PageInfo(childComplexity), true case "AssessmentResponseConnection.totalCount": - if e.complexity.AssessmentResponseConnection.TotalCount == nil { + if e.ComplexityRoot.AssessmentResponseConnection.TotalCount == nil { break } - return e.complexity.AssessmentResponseConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.AssessmentResponseConnection.TotalCount(childComplexity), true case "AssessmentResponseCreatePayload.assessmentResponse": - if e.complexity.AssessmentResponseCreatePayload.AssessmentResponse == nil { + if e.ComplexityRoot.AssessmentResponseCreatePayload.AssessmentResponse == nil { break } - return e.complexity.AssessmentResponseCreatePayload.AssessmentResponse(childComplexity), true + return e.ComplexityRoot.AssessmentResponseCreatePayload.AssessmentResponse(childComplexity), true case "AssessmentResponseDeletePayload.deletedID": - if e.complexity.AssessmentResponseDeletePayload.DeletedID == nil { + if e.ComplexityRoot.AssessmentResponseDeletePayload.DeletedID == nil { break } - return e.complexity.AssessmentResponseDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseDeletePayload.DeletedID(childComplexity), true case "AssessmentResponseEdge.cursor": - if e.complexity.AssessmentResponseEdge.Cursor == nil { + if e.ComplexityRoot.AssessmentResponseEdge.Cursor == nil { break } - return e.complexity.AssessmentResponseEdge.Cursor(childComplexity), true + return e.ComplexityRoot.AssessmentResponseEdge.Cursor(childComplexity), true case "AssessmentResponseEdge.node": - if e.complexity.AssessmentResponseEdge.Node == nil { + if e.ComplexityRoot.AssessmentResponseEdge.Node == nil { break } - return e.complexity.AssessmentResponseEdge.Node(childComplexity), true + return e.ComplexityRoot.AssessmentResponseEdge.Node(childComplexity), true case "AssessmentUpdatePayload.assessment": - if e.complexity.AssessmentUpdatePayload.Assessment == nil { + if e.ComplexityRoot.AssessmentUpdatePayload.Assessment == nil { break } - return e.complexity.AssessmentUpdatePayload.Assessment(childComplexity), true + return e.ComplexityRoot.AssessmentUpdatePayload.Assessment(childComplexity), true case "Asset.accessModel": - if e.complexity.Asset.AccessModel == nil { + if e.ComplexityRoot.Asset.AccessModel == nil { break } - return e.complexity.Asset.AccessModel(childComplexity), true + return e.ComplexityRoot.Asset.AccessModel(childComplexity), true case "Asset.accessModelID": - if e.complexity.Asset.AccessModelID == nil { + if e.ComplexityRoot.Asset.AccessModelID == nil { break } - return e.complexity.Asset.AccessModelID(childComplexity), true + return e.ComplexityRoot.Asset.AccessModelID(childComplexity), true case "Asset.accessModelName": - if e.complexity.Asset.AccessModelName == nil { + if e.ComplexityRoot.Asset.AccessModelName == nil { break } - return e.complexity.Asset.AccessModelName(childComplexity), true + return e.ComplexityRoot.Asset.AccessModelName(childComplexity), true case "Asset.assetDataClassification": - if e.complexity.Asset.AssetDataClassification == nil { + if e.ComplexityRoot.Asset.AssetDataClassification == nil { break } - return e.complexity.Asset.AssetDataClassification(childComplexity), true + return e.ComplexityRoot.Asset.AssetDataClassification(childComplexity), true case "Asset.assetDataClassificationID": - if e.complexity.Asset.AssetDataClassificationID == nil { + if e.ComplexityRoot.Asset.AssetDataClassificationID == nil { break } - return e.complexity.Asset.AssetDataClassificationID(childComplexity), true + return e.ComplexityRoot.Asset.AssetDataClassificationID(childComplexity), true case "Asset.assetDataClassificationName": - if e.complexity.Asset.AssetDataClassificationName == nil { + if e.ComplexityRoot.Asset.AssetDataClassificationName == nil { break } - return e.complexity.Asset.AssetDataClassificationName(childComplexity), true + return e.ComplexityRoot.Asset.AssetDataClassificationName(childComplexity), true case "Asset.assetSubtype": - if e.complexity.Asset.AssetSubtype == nil { + if e.ComplexityRoot.Asset.AssetSubtype == nil { break } - return e.complexity.Asset.AssetSubtype(childComplexity), true + return e.ComplexityRoot.Asset.AssetSubtype(childComplexity), true case "Asset.assetSubtypeID": - if e.complexity.Asset.AssetSubtypeID == nil { + if e.ComplexityRoot.Asset.AssetSubtypeID == nil { break } - return e.complexity.Asset.AssetSubtypeID(childComplexity), true + return e.ComplexityRoot.Asset.AssetSubtypeID(childComplexity), true case "Asset.assetSubtypeName": - if e.complexity.Asset.AssetSubtypeName == nil { + if e.ComplexityRoot.Asset.AssetSubtypeName == nil { break } - return e.complexity.Asset.AssetSubtypeName(childComplexity), true + return e.ComplexityRoot.Asset.AssetSubtypeName(childComplexity), true case "Asset.assetType": - if e.complexity.Asset.AssetType == nil { + if e.ComplexityRoot.Asset.AssetType == nil { break } - return e.complexity.Asset.AssetType(childComplexity), true + return e.ComplexityRoot.Asset.AssetType(childComplexity), true case "Asset.blockedGroups": - if e.complexity.Asset.BlockedGroups == nil { + if e.ComplexityRoot.Asset.BlockedGroups == nil { break } @@ -8677,17 +8660,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Asset.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Asset.categories": - if e.complexity.Asset.Categories == nil { + if e.ComplexityRoot.Asset.Categories == nil { break } - return e.complexity.Asset.Categories(childComplexity), true + return e.ComplexityRoot.Asset.Categories(childComplexity), true case "Asset.connectedAssets": - if e.complexity.Asset.ConnectedAssets == nil { + if e.ComplexityRoot.Asset.ConnectedAssets == nil { break } @@ -8696,10 +8679,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.ConnectedAssets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Asset.ConnectedAssets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Asset.connectedFrom": - if e.complexity.Asset.ConnectedFrom == nil { + if e.ComplexityRoot.Asset.ConnectedFrom == nil { break } @@ -8708,17 +8691,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.ConnectedFrom(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Asset.ConnectedFrom(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Asset.containsPii": - if e.complexity.Asset.ContainsPii == nil { + if e.ComplexityRoot.Asset.ContainsPii == nil { break } - return e.complexity.Asset.ContainsPii(childComplexity), true + return e.ComplexityRoot.Asset.ContainsPii(childComplexity), true case "Asset.controls": - if e.complexity.Asset.Controls == nil { + if e.ComplexityRoot.Asset.Controls == nil { break } @@ -8727,73 +8710,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Asset.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Asset.costCenter": - if e.complexity.Asset.CostCenter == nil { + if e.ComplexityRoot.Asset.CostCenter == nil { break } - return e.complexity.Asset.CostCenter(childComplexity), true + return e.ComplexityRoot.Asset.CostCenter(childComplexity), true case "Asset.cpe": - if e.complexity.Asset.Cpe == nil { + if e.ComplexityRoot.Asset.Cpe == nil { break } - return e.complexity.Asset.Cpe(childComplexity), true + return e.ComplexityRoot.Asset.Cpe(childComplexity), true case "Asset.createdAt": - if e.complexity.Asset.CreatedAt == nil { + if e.ComplexityRoot.Asset.CreatedAt == nil { break } - return e.complexity.Asset.CreatedAt(childComplexity), true + return e.ComplexityRoot.Asset.CreatedAt(childComplexity), true case "Asset.createdBy": - if e.complexity.Asset.CreatedBy == nil { + if e.ComplexityRoot.Asset.CreatedBy == nil { break } - return e.complexity.Asset.CreatedBy(childComplexity), true + return e.ComplexityRoot.Asset.CreatedBy(childComplexity), true case "Asset.criticality": - if e.complexity.Asset.Criticality == nil { + if e.ComplexityRoot.Asset.Criticality == nil { break } - return e.complexity.Asset.Criticality(childComplexity), true + return e.ComplexityRoot.Asset.Criticality(childComplexity), true case "Asset.criticalityID": - if e.complexity.Asset.CriticalityID == nil { + if e.ComplexityRoot.Asset.CriticalityID == nil { break } - return e.complexity.Asset.CriticalityID(childComplexity), true + return e.ComplexityRoot.Asset.CriticalityID(childComplexity), true case "Asset.criticalityName": - if e.complexity.Asset.CriticalityName == nil { + if e.ComplexityRoot.Asset.CriticalityName == nil { break } - return e.complexity.Asset.CriticalityName(childComplexity), true + return e.ComplexityRoot.Asset.CriticalityName(childComplexity), true case "Asset.description": - if e.complexity.Asset.Description == nil { + if e.ComplexityRoot.Asset.Description == nil { break } - return e.complexity.Asset.Description(childComplexity), true + return e.ComplexityRoot.Asset.Description(childComplexity), true case "Asset.displayName": - if e.complexity.Asset.DisplayName == nil { + if e.ComplexityRoot.Asset.DisplayName == nil { break } - return e.complexity.Asset.DisplayName(childComplexity), true + return e.ComplexityRoot.Asset.DisplayName(childComplexity), true case "Asset.editors": - if e.complexity.Asset.Editors == nil { + if e.ComplexityRoot.Asset.Editors == nil { break } @@ -8802,31 +8785,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Asset.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Asset.encryptionStatus": - if e.complexity.Asset.EncryptionStatus == nil { + if e.ComplexityRoot.Asset.EncryptionStatus == nil { break } - return e.complexity.Asset.EncryptionStatus(childComplexity), true + return e.ComplexityRoot.Asset.EncryptionStatus(childComplexity), true case "Asset.encryptionStatusID": - if e.complexity.Asset.EncryptionStatusID == nil { + if e.ComplexityRoot.Asset.EncryptionStatusID == nil { break } - return e.complexity.Asset.EncryptionStatusID(childComplexity), true + return e.ComplexityRoot.Asset.EncryptionStatusID(childComplexity), true case "Asset.encryptionStatusName": - if e.complexity.Asset.EncryptionStatusName == nil { + if e.ComplexityRoot.Asset.EncryptionStatusName == nil { break } - return e.complexity.Asset.EncryptionStatusName(childComplexity), true + return e.ComplexityRoot.Asset.EncryptionStatusName(childComplexity), true case "Asset.entities": - if e.complexity.Asset.Entities == nil { + if e.ComplexityRoot.Asset.Entities == nil { break } @@ -8835,52 +8818,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Asset.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Asset.environment": - if e.complexity.Asset.Environment == nil { + if e.ComplexityRoot.Asset.Environment == nil { break } - return e.complexity.Asset.Environment(childComplexity), true + return e.ComplexityRoot.Asset.Environment(childComplexity), true case "Asset.environmentID": - if e.complexity.Asset.EnvironmentID == nil { + if e.ComplexityRoot.Asset.EnvironmentID == nil { break } - return e.complexity.Asset.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Asset.EnvironmentID(childComplexity), true case "Asset.environmentName": - if e.complexity.Asset.EnvironmentName == nil { + if e.ComplexityRoot.Asset.EnvironmentName == nil { break } - return e.complexity.Asset.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Asset.EnvironmentName(childComplexity), true case "Asset.estimatedMonthlyCost": - if e.complexity.Asset.EstimatedMonthlyCost == nil { + if e.ComplexityRoot.Asset.EstimatedMonthlyCost == nil { break } - return e.complexity.Asset.EstimatedMonthlyCost(childComplexity), true + return e.ComplexityRoot.Asset.EstimatedMonthlyCost(childComplexity), true case "Asset.id": - if e.complexity.Asset.ID == nil { + if e.ComplexityRoot.Asset.ID == nil { break } - return e.complexity.Asset.ID(childComplexity), true + return e.ComplexityRoot.Asset.ID(childComplexity), true case "Asset.identifier": - if e.complexity.Asset.Identifier == nil { + if e.ComplexityRoot.Asset.Identifier == nil { break } - return e.complexity.Asset.Identifier(childComplexity), true + return e.ComplexityRoot.Asset.Identifier(childComplexity), true case "Asset.identityHolders": - if e.complexity.Asset.IdentityHolders == nil { + if e.ComplexityRoot.Asset.IdentityHolders == nil { break } @@ -8889,59 +8872,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Asset.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Asset.internalNotes": - if e.complexity.Asset.InternalNotes == nil { + if e.ComplexityRoot.Asset.InternalNotes == nil { break } - return e.complexity.Asset.InternalNotes(childComplexity), true + return e.ComplexityRoot.Asset.InternalNotes(childComplexity), true case "Asset.internalOwner": - if e.complexity.Asset.InternalOwner == nil { + if e.ComplexityRoot.Asset.InternalOwner == nil { break } - return e.complexity.Asset.InternalOwner(childComplexity), true + return e.ComplexityRoot.Asset.InternalOwner(childComplexity), true case "Asset.internalOwnerGroup": - if e.complexity.Asset.InternalOwnerGroup == nil { + if e.ComplexityRoot.Asset.InternalOwnerGroup == nil { break } - return e.complexity.Asset.InternalOwnerGroup(childComplexity), true + return e.ComplexityRoot.Asset.InternalOwnerGroup(childComplexity), true case "Asset.internalOwnerGroupID": - if e.complexity.Asset.InternalOwnerGroupID == nil { + if e.ComplexityRoot.Asset.InternalOwnerGroupID == nil { break } - return e.complexity.Asset.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.Asset.InternalOwnerGroupID(childComplexity), true case "Asset.internalOwnerUser": - if e.complexity.Asset.InternalOwnerUser == nil { + if e.ComplexityRoot.Asset.InternalOwnerUser == nil { break } - return e.complexity.Asset.InternalOwnerUser(childComplexity), true + return e.ComplexityRoot.Asset.InternalOwnerUser(childComplexity), true case "Asset.internalOwnerUserID": - if e.complexity.Asset.InternalOwnerUserID == nil { + if e.ComplexityRoot.Asset.InternalOwnerUserID == nil { break } - return e.complexity.Asset.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.Asset.InternalOwnerUserID(childComplexity), true case "Asset.name": - if e.complexity.Asset.Name == nil { + if e.ComplexityRoot.Asset.Name == nil { break } - return e.complexity.Asset.Name(childComplexity), true + return e.ComplexityRoot.Asset.Name(childComplexity), true case "Asset.outOfScopePlatforms": - if e.complexity.Asset.OutOfScopePlatforms == nil { + if e.ComplexityRoot.Asset.OutOfScopePlatforms == nil { break } @@ -8950,31 +8933,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.OutOfScopePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Asset.OutOfScopePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Asset.owner": - if e.complexity.Asset.Owner == nil { + if e.ComplexityRoot.Asset.Owner == nil { break } - return e.complexity.Asset.Owner(childComplexity), true + return e.ComplexityRoot.Asset.Owner(childComplexity), true case "Asset.ownerID": - if e.complexity.Asset.OwnerID == nil { + if e.ComplexityRoot.Asset.OwnerID == nil { break } - return e.complexity.Asset.OwnerID(childComplexity), true + return e.ComplexityRoot.Asset.OwnerID(childComplexity), true case "Asset.physicalLocation": - if e.complexity.Asset.PhysicalLocation == nil { + if e.ComplexityRoot.Asset.PhysicalLocation == nil { break } - return e.complexity.Asset.PhysicalLocation(childComplexity), true + return e.ComplexityRoot.Asset.PhysicalLocation(childComplexity), true case "Asset.platforms": - if e.complexity.Asset.Platforms == nil { + if e.ComplexityRoot.Asset.Platforms == nil { break } @@ -8983,24 +8966,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Asset.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Asset.purchaseDate": - if e.complexity.Asset.PurchaseDate == nil { + if e.ComplexityRoot.Asset.PurchaseDate == nil { break } - return e.complexity.Asset.PurchaseDate(childComplexity), true + return e.ComplexityRoot.Asset.PurchaseDate(childComplexity), true case "Asset.region": - if e.complexity.Asset.Region == nil { + if e.ComplexityRoot.Asset.Region == nil { break } - return e.complexity.Asset.Region(childComplexity), true + return e.ComplexityRoot.Asset.Region(childComplexity), true case "Asset.scans": - if e.complexity.Asset.Scans == nil { + if e.ComplexityRoot.Asset.Scans == nil { break } @@ -9009,115 +8992,115 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Asset.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Asset.scope": - if e.complexity.Asset.Scope == nil { + if e.ComplexityRoot.Asset.Scope == nil { break } - return e.complexity.Asset.Scope(childComplexity), true + return e.ComplexityRoot.Asset.Scope(childComplexity), true case "Asset.scopeID": - if e.complexity.Asset.ScopeID == nil { + if e.ComplexityRoot.Asset.ScopeID == nil { break } - return e.complexity.Asset.ScopeID(childComplexity), true + return e.ComplexityRoot.Asset.ScopeID(childComplexity), true case "Asset.scopeName": - if e.complexity.Asset.ScopeName == nil { + if e.ComplexityRoot.Asset.ScopeName == nil { break } - return e.complexity.Asset.ScopeName(childComplexity), true + return e.ComplexityRoot.Asset.ScopeName(childComplexity), true case "Asset.securityTier": - if e.complexity.Asset.SecurityTier == nil { + if e.ComplexityRoot.Asset.SecurityTier == nil { break } - return e.complexity.Asset.SecurityTier(childComplexity), true + return e.ComplexityRoot.Asset.SecurityTier(childComplexity), true case "Asset.securityTierID": - if e.complexity.Asset.SecurityTierID == nil { + if e.ComplexityRoot.Asset.SecurityTierID == nil { break } - return e.complexity.Asset.SecurityTierID(childComplexity), true + return e.ComplexityRoot.Asset.SecurityTierID(childComplexity), true case "Asset.securityTierName": - if e.complexity.Asset.SecurityTierName == nil { + if e.ComplexityRoot.Asset.SecurityTierName == nil { break } - return e.complexity.Asset.SecurityTierName(childComplexity), true + return e.ComplexityRoot.Asset.SecurityTierName(childComplexity), true case "Asset.sourceIdentifier": - if e.complexity.Asset.SourceIdentifier == nil { + if e.ComplexityRoot.Asset.SourceIdentifier == nil { break } - return e.complexity.Asset.SourceIdentifier(childComplexity), true + return e.ComplexityRoot.Asset.SourceIdentifier(childComplexity), true case "Asset.sourcePlatform": - if e.complexity.Asset.SourcePlatform == nil { + if e.ComplexityRoot.Asset.SourcePlatform == nil { break } - return e.complexity.Asset.SourcePlatform(childComplexity), true + return e.ComplexityRoot.Asset.SourcePlatform(childComplexity), true case "Asset.sourcePlatformID": - if e.complexity.Asset.SourcePlatformID == nil { + if e.ComplexityRoot.Asset.SourcePlatformID == nil { break } - return e.complexity.Asset.SourcePlatformID(childComplexity), true + return e.ComplexityRoot.Asset.SourcePlatformID(childComplexity), true case "Asset.sourceType": - if e.complexity.Asset.SourceType == nil { + if e.ComplexityRoot.Asset.SourceType == nil { break } - return e.complexity.Asset.SourceType(childComplexity), true + return e.ComplexityRoot.Asset.SourceType(childComplexity), true case "Asset.systemInternalID": - if e.complexity.Asset.SystemInternalID == nil { + if e.ComplexityRoot.Asset.SystemInternalID == nil { break } - return e.complexity.Asset.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Asset.SystemInternalID(childComplexity), true case "Asset.systemOwned": - if e.complexity.Asset.SystemOwned == nil { + if e.ComplexityRoot.Asset.SystemOwned == nil { break } - return e.complexity.Asset.SystemOwned(childComplexity), true + return e.ComplexityRoot.Asset.SystemOwned(childComplexity), true case "Asset.tags": - if e.complexity.Asset.Tags == nil { + if e.ComplexityRoot.Asset.Tags == nil { break } - return e.complexity.Asset.Tags(childComplexity), true + return e.ComplexityRoot.Asset.Tags(childComplexity), true case "Asset.updatedAt": - if e.complexity.Asset.UpdatedAt == nil { + if e.ComplexityRoot.Asset.UpdatedAt == nil { break } - return e.complexity.Asset.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Asset.UpdatedAt(childComplexity), true case "Asset.updatedBy": - if e.complexity.Asset.UpdatedBy == nil { + if e.ComplexityRoot.Asset.UpdatedBy == nil { break } - return e.complexity.Asset.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Asset.UpdatedBy(childComplexity), true case "Asset.viewers": - if e.complexity.Asset.Viewers == nil { + if e.ComplexityRoot.Asset.Viewers == nil { break } @@ -9126,129 +9109,129 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Asset.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Asset.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Asset.website": - if e.complexity.Asset.Website == nil { + if e.ComplexityRoot.Asset.Website == nil { break } - return e.complexity.Asset.Website(childComplexity), true + return e.ComplexityRoot.Asset.Website(childComplexity), true case "AssetBulkCreatePayload.assets": - if e.complexity.AssetBulkCreatePayload.Assets == nil { + if e.ComplexityRoot.AssetBulkCreatePayload.Assets == nil { break } - return e.complexity.AssetBulkCreatePayload.Assets(childComplexity), true + return e.ComplexityRoot.AssetBulkCreatePayload.Assets(childComplexity), true case "AssetBulkDeletePayload.deletedIDs": - if e.complexity.AssetBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.AssetBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.AssetBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.AssetBulkDeletePayload.DeletedIDs(childComplexity), true case "AssetBulkUpdatePayload.assets": - if e.complexity.AssetBulkUpdatePayload.Assets == nil { + if e.ComplexityRoot.AssetBulkUpdatePayload.Assets == nil { break } - return e.complexity.AssetBulkUpdatePayload.Assets(childComplexity), true + return e.ComplexityRoot.AssetBulkUpdatePayload.Assets(childComplexity), true case "AssetBulkUpdatePayload.updatedIDs": - if e.complexity.AssetBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.AssetBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.AssetBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.AssetBulkUpdatePayload.UpdatedIDs(childComplexity), true case "AssetConnection.edges": - if e.complexity.AssetConnection.Edges == nil { + if e.ComplexityRoot.AssetConnection.Edges == nil { break } - return e.complexity.AssetConnection.Edges(childComplexity), true + return e.ComplexityRoot.AssetConnection.Edges(childComplexity), true case "AssetConnection.pageInfo": - if e.complexity.AssetConnection.PageInfo == nil { + if e.ComplexityRoot.AssetConnection.PageInfo == nil { break } - return e.complexity.AssetConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.AssetConnection.PageInfo(childComplexity), true case "AssetConnection.totalCount": - if e.complexity.AssetConnection.TotalCount == nil { + if e.ComplexityRoot.AssetConnection.TotalCount == nil { break } - return e.complexity.AssetConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.AssetConnection.TotalCount(childComplexity), true case "AssetCreatePayload.asset": - if e.complexity.AssetCreatePayload.Asset == nil { + if e.ComplexityRoot.AssetCreatePayload.Asset == nil { break } - return e.complexity.AssetCreatePayload.Asset(childComplexity), true + return e.ComplexityRoot.AssetCreatePayload.Asset(childComplexity), true case "AssetDeletePayload.deletedID": - if e.complexity.AssetDeletePayload.DeletedID == nil { + if e.ComplexityRoot.AssetDeletePayload.DeletedID == nil { break } - return e.complexity.AssetDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.AssetDeletePayload.DeletedID(childComplexity), true case "AssetEdge.cursor": - if e.complexity.AssetEdge.Cursor == nil { + if e.ComplexityRoot.AssetEdge.Cursor == nil { break } - return e.complexity.AssetEdge.Cursor(childComplexity), true + return e.ComplexityRoot.AssetEdge.Cursor(childComplexity), true case "AssetEdge.node": - if e.complexity.AssetEdge.Node == nil { + if e.ComplexityRoot.AssetEdge.Node == nil { break } - return e.complexity.AssetEdge.Node(childComplexity), true + return e.ComplexityRoot.AssetEdge.Node(childComplexity), true case "AssetUpdatePayload.asset": - if e.complexity.AssetUpdatePayload.Asset == nil { + if e.ComplexityRoot.AssetUpdatePayload.Asset == nil { break } - return e.complexity.AssetUpdatePayload.Asset(childComplexity), true + return e.ComplexityRoot.AssetUpdatePayload.Asset(childComplexity), true case "BulkUpdateStatusPayload.totalUpdated": - if e.complexity.BulkUpdateStatusPayload.TotalUpdated == nil { + if e.ComplexityRoot.BulkUpdateStatusPayload.TotalUpdated == nil { break } - return e.complexity.BulkUpdateStatusPayload.TotalUpdated(childComplexity), true + return e.ComplexityRoot.BulkUpdateStatusPayload.TotalUpdated(childComplexity), true case "Campaign.activeWorkflowInstances": - if e.complexity.Campaign.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.Campaign.ActiveWorkflowInstances == nil { break } - return e.complexity.Campaign.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.Campaign.ActiveWorkflowInstances(childComplexity), true case "Campaign.assessment": - if e.complexity.Campaign.Assessment == nil { + if e.ComplexityRoot.Campaign.Assessment == nil { break } - return e.complexity.Campaign.Assessment(childComplexity), true + return e.ComplexityRoot.Campaign.Assessment(childComplexity), true case "Campaign.assessmentID": - if e.complexity.Campaign.AssessmentID == nil { + if e.ComplexityRoot.Campaign.AssessmentID == nil { break } - return e.complexity.Campaign.AssessmentID(childComplexity), true + return e.ComplexityRoot.Campaign.AssessmentID(childComplexity), true case "Campaign.assessmentResponses": - if e.complexity.Campaign.AssessmentResponses == nil { + if e.ComplexityRoot.Campaign.AssessmentResponses == nil { break } @@ -9257,10 +9240,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true + return e.ComplexityRoot.Campaign.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true case "Campaign.blockedGroups": - if e.complexity.Campaign.BlockedGroups == nil { + if e.ComplexityRoot.Campaign.BlockedGroups == nil { break } @@ -9269,10 +9252,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Campaign.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Campaign.campaignTargets": - if e.complexity.Campaign.CampaignTargets == nil { + if e.ComplexityRoot.Campaign.CampaignTargets == nil { break } @@ -9281,24 +9264,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true + return e.ComplexityRoot.Campaign.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true case "Campaign.campaignType": - if e.complexity.Campaign.CampaignType == nil { + if e.ComplexityRoot.Campaign.CampaignType == nil { break } - return e.complexity.Campaign.CampaignType(childComplexity), true + return e.ComplexityRoot.Campaign.CampaignType(childComplexity), true case "Campaign.completedAt": - if e.complexity.Campaign.CompletedAt == nil { + if e.ComplexityRoot.Campaign.CompletedAt == nil { break } - return e.complexity.Campaign.CompletedAt(childComplexity), true + return e.ComplexityRoot.Campaign.CompletedAt(childComplexity), true case "Campaign.contacts": - if e.complexity.Campaign.Contacts == nil { + if e.ComplexityRoot.Campaign.Contacts == nil { break } @@ -9307,45 +9290,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true + return e.ComplexityRoot.Campaign.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true case "Campaign.createdAt": - if e.complexity.Campaign.CreatedAt == nil { + if e.ComplexityRoot.Campaign.CreatedAt == nil { break } - return e.complexity.Campaign.CreatedAt(childComplexity), true + return e.ComplexityRoot.Campaign.CreatedAt(childComplexity), true case "Campaign.createdBy": - if e.complexity.Campaign.CreatedBy == nil { + if e.ComplexityRoot.Campaign.CreatedBy == nil { break } - return e.complexity.Campaign.CreatedBy(childComplexity), true + return e.ComplexityRoot.Campaign.CreatedBy(childComplexity), true case "Campaign.description": - if e.complexity.Campaign.Description == nil { + if e.ComplexityRoot.Campaign.Description == nil { break } - return e.complexity.Campaign.Description(childComplexity), true + return e.ComplexityRoot.Campaign.Description(childComplexity), true case "Campaign.displayID": - if e.complexity.Campaign.DisplayID == nil { + if e.ComplexityRoot.Campaign.DisplayID == nil { break } - return e.complexity.Campaign.DisplayID(childComplexity), true + return e.ComplexityRoot.Campaign.DisplayID(childComplexity), true case "Campaign.dueDate": - if e.complexity.Campaign.DueDate == nil { + if e.ComplexityRoot.Campaign.DueDate == nil { break } - return e.complexity.Campaign.DueDate(childComplexity), true + return e.ComplexityRoot.Campaign.DueDate(childComplexity), true case "Campaign.editors": - if e.complexity.Campaign.Editors == nil { + if e.ComplexityRoot.Campaign.Editors == nil { break } @@ -9354,52 +9337,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Campaign.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Campaign.emailBranding": - if e.complexity.Campaign.EmailBranding == nil { + if e.ComplexityRoot.Campaign.EmailBranding == nil { break } - return e.complexity.Campaign.EmailBranding(childComplexity), true + return e.ComplexityRoot.Campaign.EmailBranding(childComplexity), true case "Campaign.emailBrandingID": - if e.complexity.Campaign.EmailBrandingID == nil { + if e.ComplexityRoot.Campaign.EmailBrandingID == nil { break } - return e.complexity.Campaign.EmailBrandingID(childComplexity), true + return e.ComplexityRoot.Campaign.EmailBrandingID(childComplexity), true case "Campaign.emailTemplate": - if e.complexity.Campaign.EmailTemplate == nil { + if e.ComplexityRoot.Campaign.EmailTemplate == nil { break } - return e.complexity.Campaign.EmailTemplate(childComplexity), true + return e.ComplexityRoot.Campaign.EmailTemplate(childComplexity), true case "Campaign.emailTemplateID": - if e.complexity.Campaign.EmailTemplateID == nil { + if e.ComplexityRoot.Campaign.EmailTemplateID == nil { break } - return e.complexity.Campaign.EmailTemplateID(childComplexity), true + return e.ComplexityRoot.Campaign.EmailTemplateID(childComplexity), true case "Campaign.entity": - if e.complexity.Campaign.Entity == nil { + if e.ComplexityRoot.Campaign.Entity == nil { break } - return e.complexity.Campaign.Entity(childComplexity), true + return e.ComplexityRoot.Campaign.Entity(childComplexity), true case "Campaign.entityID": - if e.complexity.Campaign.EntityID == nil { + if e.ComplexityRoot.Campaign.EntityID == nil { break } - return e.complexity.Campaign.EntityID(childComplexity), true + return e.ComplexityRoot.Campaign.EntityID(childComplexity), true case "Campaign.groups": - if e.complexity.Campaign.Groups == nil { + if e.ComplexityRoot.Campaign.Groups == nil { break } @@ -9408,31 +9391,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Campaign.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Campaign.hasPendingWorkflow": - if e.complexity.Campaign.HasPendingWorkflow == nil { + if e.ComplexityRoot.Campaign.HasPendingWorkflow == nil { break } - return e.complexity.Campaign.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.Campaign.HasPendingWorkflow(childComplexity), true case "Campaign.hasWorkflowHistory": - if e.complexity.Campaign.HasWorkflowHistory == nil { + if e.ComplexityRoot.Campaign.HasWorkflowHistory == nil { break } - return e.complexity.Campaign.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.Campaign.HasWorkflowHistory(childComplexity), true case "Campaign.id": - if e.complexity.Campaign.ID == nil { + if e.ComplexityRoot.Campaign.ID == nil { break } - return e.complexity.Campaign.ID(childComplexity), true + return e.ComplexityRoot.Campaign.ID(childComplexity), true case "Campaign.identityHolders": - if e.complexity.Campaign.IdentityHolders == nil { + if e.ComplexityRoot.Campaign.IdentityHolders == nil { break } @@ -9441,213 +9424,213 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Campaign.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Campaign.internalOwner": - if e.complexity.Campaign.InternalOwner == nil { + if e.ComplexityRoot.Campaign.InternalOwner == nil { break } - return e.complexity.Campaign.InternalOwner(childComplexity), true + return e.ComplexityRoot.Campaign.InternalOwner(childComplexity), true case "Campaign.internalOwnerGroup": - if e.complexity.Campaign.InternalOwnerGroup == nil { + if e.ComplexityRoot.Campaign.InternalOwnerGroup == nil { break } - return e.complexity.Campaign.InternalOwnerGroup(childComplexity), true + return e.ComplexityRoot.Campaign.InternalOwnerGroup(childComplexity), true case "Campaign.internalOwnerGroupID": - if e.complexity.Campaign.InternalOwnerGroupID == nil { + if e.ComplexityRoot.Campaign.InternalOwnerGroupID == nil { break } - return e.complexity.Campaign.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.Campaign.InternalOwnerGroupID(childComplexity), true case "Campaign.internalOwnerUser": - if e.complexity.Campaign.InternalOwnerUser == nil { + if e.ComplexityRoot.Campaign.InternalOwnerUser == nil { break } - return e.complexity.Campaign.InternalOwnerUser(childComplexity), true + return e.ComplexityRoot.Campaign.InternalOwnerUser(childComplexity), true case "Campaign.internalOwnerUserID": - if e.complexity.Campaign.InternalOwnerUserID == nil { + if e.ComplexityRoot.Campaign.InternalOwnerUserID == nil { break } - return e.complexity.Campaign.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.Campaign.InternalOwnerUserID(childComplexity), true case "Campaign.isActive": - if e.complexity.Campaign.IsActive == nil { + if e.ComplexityRoot.Campaign.IsActive == nil { break } - return e.complexity.Campaign.IsActive(childComplexity), true + return e.ComplexityRoot.Campaign.IsActive(childComplexity), true case "Campaign.isRecurring": - if e.complexity.Campaign.IsRecurring == nil { + if e.ComplexityRoot.Campaign.IsRecurring == nil { break } - return e.complexity.Campaign.IsRecurring(childComplexity), true + return e.ComplexityRoot.Campaign.IsRecurring(childComplexity), true case "Campaign.lastResentAt": - if e.complexity.Campaign.LastResentAt == nil { + if e.ComplexityRoot.Campaign.LastResentAt == nil { break } - return e.complexity.Campaign.LastResentAt(childComplexity), true + return e.ComplexityRoot.Campaign.LastResentAt(childComplexity), true case "Campaign.lastRunAt": - if e.complexity.Campaign.LastRunAt == nil { + if e.ComplexityRoot.Campaign.LastRunAt == nil { break } - return e.complexity.Campaign.LastRunAt(childComplexity), true + return e.ComplexityRoot.Campaign.LastRunAt(childComplexity), true case "Campaign.launchedAt": - if e.complexity.Campaign.LaunchedAt == nil { + if e.ComplexityRoot.Campaign.LaunchedAt == nil { break } - return e.complexity.Campaign.LaunchedAt(childComplexity), true + return e.ComplexityRoot.Campaign.LaunchedAt(childComplexity), true case "Campaign.metadata": - if e.complexity.Campaign.Metadata == nil { + if e.ComplexityRoot.Campaign.Metadata == nil { break } - return e.complexity.Campaign.Metadata(childComplexity), true + return e.ComplexityRoot.Campaign.Metadata(childComplexity), true case "Campaign.name": - if e.complexity.Campaign.Name == nil { + if e.ComplexityRoot.Campaign.Name == nil { break } - return e.complexity.Campaign.Name(childComplexity), true + return e.ComplexityRoot.Campaign.Name(childComplexity), true case "Campaign.nextRunAt": - if e.complexity.Campaign.NextRunAt == nil { + if e.ComplexityRoot.Campaign.NextRunAt == nil { break } - return e.complexity.Campaign.NextRunAt(childComplexity), true + return e.ComplexityRoot.Campaign.NextRunAt(childComplexity), true case "Campaign.owner": - if e.complexity.Campaign.Owner == nil { + if e.ComplexityRoot.Campaign.Owner == nil { break } - return e.complexity.Campaign.Owner(childComplexity), true + return e.ComplexityRoot.Campaign.Owner(childComplexity), true case "Campaign.ownerID": - if e.complexity.Campaign.OwnerID == nil { + if e.ComplexityRoot.Campaign.OwnerID == nil { break } - return e.complexity.Campaign.OwnerID(childComplexity), true + return e.ComplexityRoot.Campaign.OwnerID(childComplexity), true case "Campaign.recipientCount": - if e.complexity.Campaign.RecipientCount == nil { + if e.ComplexityRoot.Campaign.RecipientCount == nil { break } - return e.complexity.Campaign.RecipientCount(childComplexity), true + return e.ComplexityRoot.Campaign.RecipientCount(childComplexity), true case "Campaign.recurrenceCron": - if e.complexity.Campaign.RecurrenceCron == nil { + if e.ComplexityRoot.Campaign.RecurrenceCron == nil { break } - return e.complexity.Campaign.RecurrenceCron(childComplexity), true + return e.ComplexityRoot.Campaign.RecurrenceCron(childComplexity), true case "Campaign.recurrenceEndAt": - if e.complexity.Campaign.RecurrenceEndAt == nil { + if e.ComplexityRoot.Campaign.RecurrenceEndAt == nil { break } - return e.complexity.Campaign.RecurrenceEndAt(childComplexity), true + return e.ComplexityRoot.Campaign.RecurrenceEndAt(childComplexity), true case "Campaign.recurrenceFrequency": - if e.complexity.Campaign.RecurrenceFrequency == nil { + if e.ComplexityRoot.Campaign.RecurrenceFrequency == nil { break } - return e.complexity.Campaign.RecurrenceFrequency(childComplexity), true + return e.ComplexityRoot.Campaign.RecurrenceFrequency(childComplexity), true case "Campaign.recurrenceInterval": - if e.complexity.Campaign.RecurrenceInterval == nil { + if e.ComplexityRoot.Campaign.RecurrenceInterval == nil { break } - return e.complexity.Campaign.RecurrenceInterval(childComplexity), true + return e.ComplexityRoot.Campaign.RecurrenceInterval(childComplexity), true case "Campaign.recurrenceTimezone": - if e.complexity.Campaign.RecurrenceTimezone == nil { + if e.ComplexityRoot.Campaign.RecurrenceTimezone == nil { break } - return e.complexity.Campaign.RecurrenceTimezone(childComplexity), true + return e.ComplexityRoot.Campaign.RecurrenceTimezone(childComplexity), true case "Campaign.resendCount": - if e.complexity.Campaign.ResendCount == nil { + if e.ComplexityRoot.Campaign.ResendCount == nil { break } - return e.complexity.Campaign.ResendCount(childComplexity), true + return e.ComplexityRoot.Campaign.ResendCount(childComplexity), true case "Campaign.scheduledAt": - if e.complexity.Campaign.ScheduledAt == nil { + if e.ComplexityRoot.Campaign.ScheduledAt == nil { break } - return e.complexity.Campaign.ScheduledAt(childComplexity), true + return e.ComplexityRoot.Campaign.ScheduledAt(childComplexity), true case "Campaign.status": - if e.complexity.Campaign.Status == nil { + if e.ComplexityRoot.Campaign.Status == nil { break } - return e.complexity.Campaign.Status(childComplexity), true + return e.ComplexityRoot.Campaign.Status(childComplexity), true case "Campaign.tags": - if e.complexity.Campaign.Tags == nil { + if e.ComplexityRoot.Campaign.Tags == nil { break } - return e.complexity.Campaign.Tags(childComplexity), true + return e.ComplexityRoot.Campaign.Tags(childComplexity), true case "Campaign.template": - if e.complexity.Campaign.Template == nil { + if e.ComplexityRoot.Campaign.Template == nil { break } - return e.complexity.Campaign.Template(childComplexity), true + return e.ComplexityRoot.Campaign.Template(childComplexity), true case "Campaign.templateID": - if e.complexity.Campaign.TemplateID == nil { + if e.ComplexityRoot.Campaign.TemplateID == nil { break } - return e.complexity.Campaign.TemplateID(childComplexity), true + return e.ComplexityRoot.Campaign.TemplateID(childComplexity), true case "Campaign.updatedAt": - if e.complexity.Campaign.UpdatedAt == nil { + if e.ComplexityRoot.Campaign.UpdatedAt == nil { break } - return e.complexity.Campaign.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Campaign.UpdatedAt(childComplexity), true case "Campaign.updatedBy": - if e.complexity.Campaign.UpdatedBy == nil { + if e.ComplexityRoot.Campaign.UpdatedBy == nil { break } - return e.complexity.Campaign.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Campaign.UpdatedBy(childComplexity), true case "Campaign.users": - if e.complexity.Campaign.Users == nil { + if e.ComplexityRoot.Campaign.Users == nil { break } @@ -9656,10 +9639,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true + return e.ComplexityRoot.Campaign.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true case "Campaign.viewers": - if e.complexity.Campaign.Viewers == nil { + if e.ComplexityRoot.Campaign.Viewers == nil { break } @@ -9668,17 +9651,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Campaign.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Campaign.workflowEligibleMarker": - if e.complexity.Campaign.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.Campaign.WorkflowEligibleMarker == nil { break } - return e.complexity.Campaign.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.Campaign.WorkflowEligibleMarker(childComplexity), true case "Campaign.workflowObjectRefs": - if e.complexity.Campaign.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Campaign.WorkflowObjectRefs == nil { break } @@ -9687,10 +9670,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Campaign.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "Campaign.workflowTimeline": - if e.complexity.Campaign.WorkflowTimeline == nil { + if e.ComplexityRoot.Campaign.WorkflowTimeline == nil { break } @@ -9699,276 +9682,276 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Campaign.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.Campaign.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "CampaignBulkCreatePayload.campaigns": - if e.complexity.CampaignBulkCreatePayload.Campaigns == nil { + if e.ComplexityRoot.CampaignBulkCreatePayload.Campaigns == nil { break } - return e.complexity.CampaignBulkCreatePayload.Campaigns(childComplexity), true + return e.ComplexityRoot.CampaignBulkCreatePayload.Campaigns(childComplexity), true case "CampaignConnection.edges": - if e.complexity.CampaignConnection.Edges == nil { + if e.ComplexityRoot.CampaignConnection.Edges == nil { break } - return e.complexity.CampaignConnection.Edges(childComplexity), true + return e.ComplexityRoot.CampaignConnection.Edges(childComplexity), true case "CampaignConnection.pageInfo": - if e.complexity.CampaignConnection.PageInfo == nil { + if e.ComplexityRoot.CampaignConnection.PageInfo == nil { break } - return e.complexity.CampaignConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.CampaignConnection.PageInfo(childComplexity), true case "CampaignConnection.totalCount": - if e.complexity.CampaignConnection.TotalCount == nil { + if e.ComplexityRoot.CampaignConnection.TotalCount == nil { break } - return e.complexity.CampaignConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.CampaignConnection.TotalCount(childComplexity), true case "CampaignCreatePayload.campaign": - if e.complexity.CampaignCreatePayload.Campaign == nil { + if e.ComplexityRoot.CampaignCreatePayload.Campaign == nil { break } - return e.complexity.CampaignCreatePayload.Campaign(childComplexity), true + return e.ComplexityRoot.CampaignCreatePayload.Campaign(childComplexity), true case "CampaignCreateWithTargetsPayload.campaign": - if e.complexity.CampaignCreateWithTargetsPayload.Campaign == nil { + if e.ComplexityRoot.CampaignCreateWithTargetsPayload.Campaign == nil { break } - return e.complexity.CampaignCreateWithTargetsPayload.Campaign(childComplexity), true + return e.ComplexityRoot.CampaignCreateWithTargetsPayload.Campaign(childComplexity), true case "CampaignCreateWithTargetsPayload.campaignTargets": - if e.complexity.CampaignCreateWithTargetsPayload.CampaignTargets == nil { + if e.ComplexityRoot.CampaignCreateWithTargetsPayload.CampaignTargets == nil { break } - return e.complexity.CampaignCreateWithTargetsPayload.CampaignTargets(childComplexity), true + return e.ComplexityRoot.CampaignCreateWithTargetsPayload.CampaignTargets(childComplexity), true case "CampaignDeletePayload.deletedID": - if e.complexity.CampaignDeletePayload.DeletedID == nil { + if e.ComplexityRoot.CampaignDeletePayload.DeletedID == nil { break } - return e.complexity.CampaignDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.CampaignDeletePayload.DeletedID(childComplexity), true case "CampaignEdge.cursor": - if e.complexity.CampaignEdge.Cursor == nil { + if e.ComplexityRoot.CampaignEdge.Cursor == nil { break } - return e.complexity.CampaignEdge.Cursor(childComplexity), true + return e.ComplexityRoot.CampaignEdge.Cursor(childComplexity), true case "CampaignEdge.node": - if e.complexity.CampaignEdge.Node == nil { + if e.ComplexityRoot.CampaignEdge.Node == nil { break } - return e.complexity.CampaignEdge.Node(childComplexity), true + return e.ComplexityRoot.CampaignEdge.Node(childComplexity), true case "CampaignLaunchPayload.campaign": - if e.complexity.CampaignLaunchPayload.Campaign == nil { + if e.ComplexityRoot.CampaignLaunchPayload.Campaign == nil { break } - return e.complexity.CampaignLaunchPayload.Campaign(childComplexity), true + return e.ComplexityRoot.CampaignLaunchPayload.Campaign(childComplexity), true case "CampaignLaunchPayload.queuedCount": - if e.complexity.CampaignLaunchPayload.QueuedCount == nil { + if e.ComplexityRoot.CampaignLaunchPayload.QueuedCount == nil { break } - return e.complexity.CampaignLaunchPayload.QueuedCount(childComplexity), true + return e.ComplexityRoot.CampaignLaunchPayload.QueuedCount(childComplexity), true case "CampaignLaunchPayload.skippedCount": - if e.complexity.CampaignLaunchPayload.SkippedCount == nil { + if e.ComplexityRoot.CampaignLaunchPayload.SkippedCount == nil { break } - return e.complexity.CampaignLaunchPayload.SkippedCount(childComplexity), true + return e.ComplexityRoot.CampaignLaunchPayload.SkippedCount(childComplexity), true case "CampaignTarget.activeWorkflowInstances": - if e.complexity.CampaignTarget.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.CampaignTarget.ActiveWorkflowInstances == nil { break } - return e.complexity.CampaignTarget.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.CampaignTarget.ActiveWorkflowInstances(childComplexity), true case "CampaignTarget.campaign": - if e.complexity.CampaignTarget.Campaign == nil { + if e.ComplexityRoot.CampaignTarget.Campaign == nil { break } - return e.complexity.CampaignTarget.Campaign(childComplexity), true + return e.ComplexityRoot.CampaignTarget.Campaign(childComplexity), true case "CampaignTarget.campaignID": - if e.complexity.CampaignTarget.CampaignID == nil { + if e.ComplexityRoot.CampaignTarget.CampaignID == nil { break } - return e.complexity.CampaignTarget.CampaignID(childComplexity), true + return e.ComplexityRoot.CampaignTarget.CampaignID(childComplexity), true case "CampaignTarget.completedAt": - if e.complexity.CampaignTarget.CompletedAt == nil { + if e.ComplexityRoot.CampaignTarget.CompletedAt == nil { break } - return e.complexity.CampaignTarget.CompletedAt(childComplexity), true + return e.ComplexityRoot.CampaignTarget.CompletedAt(childComplexity), true case "CampaignTarget.contact": - if e.complexity.CampaignTarget.Contact == nil { + if e.ComplexityRoot.CampaignTarget.Contact == nil { break } - return e.complexity.CampaignTarget.Contact(childComplexity), true + return e.ComplexityRoot.CampaignTarget.Contact(childComplexity), true case "CampaignTarget.contactID": - if e.complexity.CampaignTarget.ContactID == nil { + if e.ComplexityRoot.CampaignTarget.ContactID == nil { break } - return e.complexity.CampaignTarget.ContactID(childComplexity), true + return e.ComplexityRoot.CampaignTarget.ContactID(childComplexity), true case "CampaignTarget.createdAt": - if e.complexity.CampaignTarget.CreatedAt == nil { + if e.ComplexityRoot.CampaignTarget.CreatedAt == nil { break } - return e.complexity.CampaignTarget.CreatedAt(childComplexity), true + return e.ComplexityRoot.CampaignTarget.CreatedAt(childComplexity), true case "CampaignTarget.createdBy": - if e.complexity.CampaignTarget.CreatedBy == nil { + if e.ComplexityRoot.CampaignTarget.CreatedBy == nil { break } - return e.complexity.CampaignTarget.CreatedBy(childComplexity), true + return e.ComplexityRoot.CampaignTarget.CreatedBy(childComplexity), true case "CampaignTarget.email": - if e.complexity.CampaignTarget.Email == nil { + if e.ComplexityRoot.CampaignTarget.Email == nil { break } - return e.complexity.CampaignTarget.Email(childComplexity), true + return e.ComplexityRoot.CampaignTarget.Email(childComplexity), true case "CampaignTarget.fullName": - if e.complexity.CampaignTarget.FullName == nil { + if e.ComplexityRoot.CampaignTarget.FullName == nil { break } - return e.complexity.CampaignTarget.FullName(childComplexity), true + return e.ComplexityRoot.CampaignTarget.FullName(childComplexity), true case "CampaignTarget.group": - if e.complexity.CampaignTarget.Group == nil { + if e.ComplexityRoot.CampaignTarget.Group == nil { break } - return e.complexity.CampaignTarget.Group(childComplexity), true + return e.ComplexityRoot.CampaignTarget.Group(childComplexity), true case "CampaignTarget.groupID": - if e.complexity.CampaignTarget.GroupID == nil { + if e.ComplexityRoot.CampaignTarget.GroupID == nil { break } - return e.complexity.CampaignTarget.GroupID(childComplexity), true + return e.ComplexityRoot.CampaignTarget.GroupID(childComplexity), true case "CampaignTarget.hasPendingWorkflow": - if e.complexity.CampaignTarget.HasPendingWorkflow == nil { + if e.ComplexityRoot.CampaignTarget.HasPendingWorkflow == nil { break } - return e.complexity.CampaignTarget.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.CampaignTarget.HasPendingWorkflow(childComplexity), true case "CampaignTarget.hasWorkflowHistory": - if e.complexity.CampaignTarget.HasWorkflowHistory == nil { + if e.ComplexityRoot.CampaignTarget.HasWorkflowHistory == nil { break } - return e.complexity.CampaignTarget.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.CampaignTarget.HasWorkflowHistory(childComplexity), true case "CampaignTarget.id": - if e.complexity.CampaignTarget.ID == nil { + if e.ComplexityRoot.CampaignTarget.ID == nil { break } - return e.complexity.CampaignTarget.ID(childComplexity), true + return e.ComplexityRoot.CampaignTarget.ID(childComplexity), true case "CampaignTarget.metadata": - if e.complexity.CampaignTarget.Metadata == nil { + if e.ComplexityRoot.CampaignTarget.Metadata == nil { break } - return e.complexity.CampaignTarget.Metadata(childComplexity), true + return e.ComplexityRoot.CampaignTarget.Metadata(childComplexity), true case "CampaignTarget.owner": - if e.complexity.CampaignTarget.Owner == nil { + if e.ComplexityRoot.CampaignTarget.Owner == nil { break } - return e.complexity.CampaignTarget.Owner(childComplexity), true + return e.ComplexityRoot.CampaignTarget.Owner(childComplexity), true case "CampaignTarget.ownerID": - if e.complexity.CampaignTarget.OwnerID == nil { + if e.ComplexityRoot.CampaignTarget.OwnerID == nil { break } - return e.complexity.CampaignTarget.OwnerID(childComplexity), true + return e.ComplexityRoot.CampaignTarget.OwnerID(childComplexity), true case "CampaignTarget.sentAt": - if e.complexity.CampaignTarget.SentAt == nil { + if e.ComplexityRoot.CampaignTarget.SentAt == nil { break } - return e.complexity.CampaignTarget.SentAt(childComplexity), true + return e.ComplexityRoot.CampaignTarget.SentAt(childComplexity), true case "CampaignTarget.status": - if e.complexity.CampaignTarget.Status == nil { + if e.ComplexityRoot.CampaignTarget.Status == nil { break } - return e.complexity.CampaignTarget.Status(childComplexity), true + return e.ComplexityRoot.CampaignTarget.Status(childComplexity), true case "CampaignTarget.updatedAt": - if e.complexity.CampaignTarget.UpdatedAt == nil { + if e.ComplexityRoot.CampaignTarget.UpdatedAt == nil { break } - return e.complexity.CampaignTarget.UpdatedAt(childComplexity), true + return e.ComplexityRoot.CampaignTarget.UpdatedAt(childComplexity), true case "CampaignTarget.updatedBy": - if e.complexity.CampaignTarget.UpdatedBy == nil { + if e.ComplexityRoot.CampaignTarget.UpdatedBy == nil { break } - return e.complexity.CampaignTarget.UpdatedBy(childComplexity), true + return e.ComplexityRoot.CampaignTarget.UpdatedBy(childComplexity), true case "CampaignTarget.user": - if e.complexity.CampaignTarget.User == nil { + if e.ComplexityRoot.CampaignTarget.User == nil { break } - return e.complexity.CampaignTarget.User(childComplexity), true + return e.ComplexityRoot.CampaignTarget.User(childComplexity), true case "CampaignTarget.userID": - if e.complexity.CampaignTarget.UserID == nil { + if e.ComplexityRoot.CampaignTarget.UserID == nil { break } - return e.complexity.CampaignTarget.UserID(childComplexity), true + return e.ComplexityRoot.CampaignTarget.UserID(childComplexity), true case "CampaignTarget.workflowEligibleMarker": - if e.complexity.CampaignTarget.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.CampaignTarget.WorkflowEligibleMarker == nil { break } - return e.complexity.CampaignTarget.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.CampaignTarget.WorkflowEligibleMarker(childComplexity), true case "CampaignTarget.workflowObjectRefs": - if e.complexity.CampaignTarget.WorkflowObjectRefs == nil { + if e.ComplexityRoot.CampaignTarget.WorkflowObjectRefs == nil { break } @@ -9977,10 +9960,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CampaignTarget.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.CampaignTarget.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "CampaignTarget.workflowTimeline": - if e.complexity.CampaignTarget.WorkflowTimeline == nil { + if e.ComplexityRoot.CampaignTarget.WorkflowTimeline == nil { break } @@ -9989,108 +9972,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CampaignTarget.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.CampaignTarget.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "CampaignTargetBulkCreatePayload.campaignTargets": - if e.complexity.CampaignTargetBulkCreatePayload.CampaignTargets == nil { + if e.ComplexityRoot.CampaignTargetBulkCreatePayload.CampaignTargets == nil { break } - return e.complexity.CampaignTargetBulkCreatePayload.CampaignTargets(childComplexity), true + return e.ComplexityRoot.CampaignTargetBulkCreatePayload.CampaignTargets(childComplexity), true case "CampaignTargetConnection.edges": - if e.complexity.CampaignTargetConnection.Edges == nil { + if e.ComplexityRoot.CampaignTargetConnection.Edges == nil { break } - return e.complexity.CampaignTargetConnection.Edges(childComplexity), true + return e.ComplexityRoot.CampaignTargetConnection.Edges(childComplexity), true case "CampaignTargetConnection.pageInfo": - if e.complexity.CampaignTargetConnection.PageInfo == nil { + if e.ComplexityRoot.CampaignTargetConnection.PageInfo == nil { break } - return e.complexity.CampaignTargetConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.CampaignTargetConnection.PageInfo(childComplexity), true case "CampaignTargetConnection.totalCount": - if e.complexity.CampaignTargetConnection.TotalCount == nil { + if e.ComplexityRoot.CampaignTargetConnection.TotalCount == nil { break } - return e.complexity.CampaignTargetConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.CampaignTargetConnection.TotalCount(childComplexity), true case "CampaignTargetCreatePayload.campaignTarget": - if e.complexity.CampaignTargetCreatePayload.CampaignTarget == nil { + if e.ComplexityRoot.CampaignTargetCreatePayload.CampaignTarget == nil { break } - return e.complexity.CampaignTargetCreatePayload.CampaignTarget(childComplexity), true + return e.ComplexityRoot.CampaignTargetCreatePayload.CampaignTarget(childComplexity), true case "CampaignTargetDeletePayload.deletedID": - if e.complexity.CampaignTargetDeletePayload.DeletedID == nil { + if e.ComplexityRoot.CampaignTargetDeletePayload.DeletedID == nil { break } - return e.complexity.CampaignTargetDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.CampaignTargetDeletePayload.DeletedID(childComplexity), true case "CampaignTargetEdge.cursor": - if e.complexity.CampaignTargetEdge.Cursor == nil { + if e.ComplexityRoot.CampaignTargetEdge.Cursor == nil { break } - return e.complexity.CampaignTargetEdge.Cursor(childComplexity), true + return e.ComplexityRoot.CampaignTargetEdge.Cursor(childComplexity), true case "CampaignTargetEdge.node": - if e.complexity.CampaignTargetEdge.Node == nil { + if e.ComplexityRoot.CampaignTargetEdge.Node == nil { break } - return e.complexity.CampaignTargetEdge.Node(childComplexity), true + return e.ComplexityRoot.CampaignTargetEdge.Node(childComplexity), true case "CampaignTargetUpdatePayload.campaignTarget": - if e.complexity.CampaignTargetUpdatePayload.CampaignTarget == nil { + if e.ComplexityRoot.CampaignTargetUpdatePayload.CampaignTarget == nil { break } - return e.complexity.CampaignTargetUpdatePayload.CampaignTarget(childComplexity), true + return e.ComplexityRoot.CampaignTargetUpdatePayload.CampaignTarget(childComplexity), true case "CampaignTestEmailPayload.campaign": - if e.complexity.CampaignTestEmailPayload.Campaign == nil { + if e.ComplexityRoot.CampaignTestEmailPayload.Campaign == nil { break } - return e.complexity.CampaignTestEmailPayload.Campaign(childComplexity), true + return e.ComplexityRoot.CampaignTestEmailPayload.Campaign(childComplexity), true case "CampaignTestEmailPayload.queuedCount": - if e.complexity.CampaignTestEmailPayload.QueuedCount == nil { + if e.ComplexityRoot.CampaignTestEmailPayload.QueuedCount == nil { break } - return e.complexity.CampaignTestEmailPayload.QueuedCount(childComplexity), true + return e.ComplexityRoot.CampaignTestEmailPayload.QueuedCount(childComplexity), true case "CampaignTestEmailPayload.skippedCount": - if e.complexity.CampaignTestEmailPayload.SkippedCount == nil { + if e.ComplexityRoot.CampaignTestEmailPayload.SkippedCount == nil { break } - return e.complexity.CampaignTestEmailPayload.SkippedCount(childComplexity), true + return e.ComplexityRoot.CampaignTestEmailPayload.SkippedCount(childComplexity), true case "CampaignUpdatePayload.campaign": - if e.complexity.CampaignUpdatePayload.Campaign == nil { + if e.ComplexityRoot.CampaignUpdatePayload.Campaign == nil { break } - return e.complexity.CampaignUpdatePayload.Campaign(childComplexity), true + return e.ComplexityRoot.CampaignUpdatePayload.Campaign(childComplexity), true case "Contact.address": - if e.complexity.Contact.Address == nil { + if e.ComplexityRoot.Contact.Address == nil { break } - return e.complexity.Contact.Address(childComplexity), true + return e.ComplexityRoot.Contact.Address(childComplexity), true case "Contact.campaignTargets": - if e.complexity.Contact.CampaignTargets == nil { + if e.ComplexityRoot.Contact.CampaignTargets == nil { break } @@ -10099,10 +10082,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Contact.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true + return e.ComplexityRoot.Contact.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true case "Contact.campaigns": - if e.complexity.Contact.Campaigns == nil { + if e.ComplexityRoot.Contact.Campaigns == nil { break } @@ -10111,38 +10094,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Contact.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Contact.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Contact.company": - if e.complexity.Contact.Company == nil { + if e.ComplexityRoot.Contact.Company == nil { break } - return e.complexity.Contact.Company(childComplexity), true + return e.ComplexityRoot.Contact.Company(childComplexity), true case "Contact.createdAt": - if e.complexity.Contact.CreatedAt == nil { + if e.ComplexityRoot.Contact.CreatedAt == nil { break } - return e.complexity.Contact.CreatedAt(childComplexity), true + return e.ComplexityRoot.Contact.CreatedAt(childComplexity), true case "Contact.createdBy": - if e.complexity.Contact.CreatedBy == nil { + if e.ComplexityRoot.Contact.CreatedBy == nil { break } - return e.complexity.Contact.CreatedBy(childComplexity), true + return e.ComplexityRoot.Contact.CreatedBy(childComplexity), true case "Contact.email": - if e.complexity.Contact.Email == nil { + if e.ComplexityRoot.Contact.Email == nil { break } - return e.complexity.Contact.Email(childComplexity), true + return e.ComplexityRoot.Contact.Email(childComplexity), true case "Contact.entities": - if e.complexity.Contact.Entities == nil { + if e.ComplexityRoot.Contact.Entities == nil { break } @@ -10151,10 +10134,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Contact.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Contact.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Contact.files": - if e.complexity.Contact.Files == nil { + if e.ComplexityRoot.Contact.Files == nil { break } @@ -10163,164 +10146,164 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Contact.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Contact.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Contact.fullName": - if e.complexity.Contact.FullName == nil { + if e.ComplexityRoot.Contact.FullName == nil { break } - return e.complexity.Contact.FullName(childComplexity), true + return e.ComplexityRoot.Contact.FullName(childComplexity), true case "Contact.id": - if e.complexity.Contact.ID == nil { + if e.ComplexityRoot.Contact.ID == nil { break } - return e.complexity.Contact.ID(childComplexity), true + return e.ComplexityRoot.Contact.ID(childComplexity), true case "Contact.owner": - if e.complexity.Contact.Owner == nil { + if e.ComplexityRoot.Contact.Owner == nil { break } - return e.complexity.Contact.Owner(childComplexity), true + return e.ComplexityRoot.Contact.Owner(childComplexity), true case "Contact.ownerID": - if e.complexity.Contact.OwnerID == nil { + if e.ComplexityRoot.Contact.OwnerID == nil { break } - return e.complexity.Contact.OwnerID(childComplexity), true + return e.ComplexityRoot.Contact.OwnerID(childComplexity), true case "Contact.phoneNumber": - if e.complexity.Contact.PhoneNumber == nil { + if e.ComplexityRoot.Contact.PhoneNumber == nil { break } - return e.complexity.Contact.PhoneNumber(childComplexity), true + return e.ComplexityRoot.Contact.PhoneNumber(childComplexity), true case "Contact.status": - if e.complexity.Contact.Status == nil { + if e.ComplexityRoot.Contact.Status == nil { break } - return e.complexity.Contact.Status(childComplexity), true + return e.ComplexityRoot.Contact.Status(childComplexity), true case "Contact.tags": - if e.complexity.Contact.Tags == nil { + if e.ComplexityRoot.Contact.Tags == nil { break } - return e.complexity.Contact.Tags(childComplexity), true + return e.ComplexityRoot.Contact.Tags(childComplexity), true case "Contact.title": - if e.complexity.Contact.Title == nil { + if e.ComplexityRoot.Contact.Title == nil { break } - return e.complexity.Contact.Title(childComplexity), true + return e.ComplexityRoot.Contact.Title(childComplexity), true case "Contact.updatedAt": - if e.complexity.Contact.UpdatedAt == nil { + if e.ComplexityRoot.Contact.UpdatedAt == nil { break } - return e.complexity.Contact.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Contact.UpdatedAt(childComplexity), true case "Contact.updatedBy": - if e.complexity.Contact.UpdatedBy == nil { + if e.ComplexityRoot.Contact.UpdatedBy == nil { break } - return e.complexity.Contact.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Contact.UpdatedBy(childComplexity), true case "ContactBulkCreatePayload.contacts": - if e.complexity.ContactBulkCreatePayload.Contacts == nil { + if e.ComplexityRoot.ContactBulkCreatePayload.Contacts == nil { break } - return e.complexity.ContactBulkCreatePayload.Contacts(childComplexity), true + return e.ComplexityRoot.ContactBulkCreatePayload.Contacts(childComplexity), true case "ContactBulkDeletePayload.deletedIDs": - if e.complexity.ContactBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ContactBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ContactBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ContactBulkDeletePayload.DeletedIDs(childComplexity), true case "ContactBulkUpdatePayload.contacts": - if e.complexity.ContactBulkUpdatePayload.Contacts == nil { + if e.ComplexityRoot.ContactBulkUpdatePayload.Contacts == nil { break } - return e.complexity.ContactBulkUpdatePayload.Contacts(childComplexity), true + return e.ComplexityRoot.ContactBulkUpdatePayload.Contacts(childComplexity), true case "ContactBulkUpdatePayload.updatedIDs": - if e.complexity.ContactBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ContactBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ContactBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ContactBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ContactConnection.edges": - if e.complexity.ContactConnection.Edges == nil { + if e.ComplexityRoot.ContactConnection.Edges == nil { break } - return e.complexity.ContactConnection.Edges(childComplexity), true + return e.ComplexityRoot.ContactConnection.Edges(childComplexity), true case "ContactConnection.pageInfo": - if e.complexity.ContactConnection.PageInfo == nil { + if e.ComplexityRoot.ContactConnection.PageInfo == nil { break } - return e.complexity.ContactConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ContactConnection.PageInfo(childComplexity), true case "ContactConnection.totalCount": - if e.complexity.ContactConnection.TotalCount == nil { + if e.ComplexityRoot.ContactConnection.TotalCount == nil { break } - return e.complexity.ContactConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ContactConnection.TotalCount(childComplexity), true case "ContactCreatePayload.contact": - if e.complexity.ContactCreatePayload.Contact == nil { + if e.ComplexityRoot.ContactCreatePayload.Contact == nil { break } - return e.complexity.ContactCreatePayload.Contact(childComplexity), true + return e.ComplexityRoot.ContactCreatePayload.Contact(childComplexity), true case "ContactDeletePayload.deletedID": - if e.complexity.ContactDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ContactDeletePayload.DeletedID == nil { break } - return e.complexity.ContactDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ContactDeletePayload.DeletedID(childComplexity), true case "ContactEdge.cursor": - if e.complexity.ContactEdge.Cursor == nil { + if e.ComplexityRoot.ContactEdge.Cursor == nil { break } - return e.complexity.ContactEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ContactEdge.Cursor(childComplexity), true case "ContactEdge.node": - if e.complexity.ContactEdge.Node == nil { + if e.ComplexityRoot.ContactEdge.Node == nil { break } - return e.complexity.ContactEdge.Node(childComplexity), true + return e.ComplexityRoot.ContactEdge.Node(childComplexity), true case "ContactUpdatePayload.contact": - if e.complexity.ContactUpdatePayload.Contact == nil { + if e.ComplexityRoot.ContactUpdatePayload.Contact == nil { break } - return e.complexity.ContactUpdatePayload.Contact(childComplexity), true + return e.ComplexityRoot.ContactUpdatePayload.Contact(childComplexity), true case "Control.actionPlans": - if e.complexity.Control.ActionPlans == nil { + if e.ComplexityRoot.Control.ActionPlans == nil { break } @@ -10329,38 +10312,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Control.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Control.activeWorkflowInstances": - if e.complexity.Control.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.Control.ActiveWorkflowInstances == nil { break } - return e.complexity.Control.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.Control.ActiveWorkflowInstances(childComplexity), true case "Control.aliases": - if e.complexity.Control.Aliases == nil { + if e.ComplexityRoot.Control.Aliases == nil { break } - return e.complexity.Control.Aliases(childComplexity), true + return e.ComplexityRoot.Control.Aliases(childComplexity), true case "Control.assessmentMethods": - if e.complexity.Control.AssessmentMethods == nil { + if e.ComplexityRoot.Control.AssessmentMethods == nil { break } - return e.complexity.Control.AssessmentMethods(childComplexity), true + return e.ComplexityRoot.Control.AssessmentMethods(childComplexity), true case "Control.assessmentObjectives": - if e.complexity.Control.AssessmentObjectives == nil { + if e.ComplexityRoot.Control.AssessmentObjectives == nil { break } - return e.complexity.Control.AssessmentObjectives(childComplexity), true + return e.ComplexityRoot.Control.AssessmentObjectives(childComplexity), true case "Control.assets": - if e.complexity.Control.Assets == nil { + if e.ComplexityRoot.Control.Assets == nil { break } @@ -10369,17 +10352,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Control.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Control.auditorReferenceID": - if e.complexity.Control.AuditorReferenceID == nil { + if e.ComplexityRoot.Control.AuditorReferenceID == nil { break } - return e.complexity.Control.AuditorReferenceID(childComplexity), true + return e.ComplexityRoot.Control.AuditorReferenceID(childComplexity), true case "Control.blockedGroups": - if e.complexity.Control.BlockedGroups == nil { + if e.ComplexityRoot.Control.BlockedGroups == nil { break } @@ -10388,24 +10371,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Control.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Control.category": - if e.complexity.Control.Category == nil { + if e.ComplexityRoot.Control.Category == nil { break } - return e.complexity.Control.Category(childComplexity), true + return e.ComplexityRoot.Control.Category(childComplexity), true case "Control.categoryID": - if e.complexity.Control.CategoryID == nil { + if e.ComplexityRoot.Control.CategoryID == nil { break } - return e.complexity.Control.CategoryID(childComplexity), true + return e.ComplexityRoot.Control.CategoryID(childComplexity), true case "Control.comments": - if e.complexity.Control.Comments == nil { + if e.ComplexityRoot.Control.Comments == nil { break } @@ -10414,10 +10397,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Control.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Control.controlImplementations": - if e.complexity.Control.ControlImplementations == nil { + if e.ComplexityRoot.Control.ControlImplementations == nil { break } @@ -10426,31 +10409,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Control.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Control.controlKind": - if e.complexity.Control.ControlKind == nil { + if e.ComplexityRoot.Control.ControlKind == nil { break } - return e.complexity.Control.ControlKind(childComplexity), true + return e.ComplexityRoot.Control.ControlKind(childComplexity), true case "Control.controlKindID": - if e.complexity.Control.ControlKindID == nil { + if e.ComplexityRoot.Control.ControlKindID == nil { break } - return e.complexity.Control.ControlKindID(childComplexity), true + return e.ComplexityRoot.Control.ControlKindID(childComplexity), true case "Control.controlKindName": - if e.complexity.Control.ControlKindName == nil { + if e.ComplexityRoot.Control.ControlKindName == nil { break } - return e.complexity.Control.ControlKindName(childComplexity), true + return e.ComplexityRoot.Control.ControlKindName(childComplexity), true case "Control.controlMappings": - if e.complexity.Control.ControlMappings == nil { + if e.ComplexityRoot.Control.ControlMappings == nil { break } @@ -10459,10 +10442,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.ControlMappings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingControlOrder), args["where"].(*generated.FindingControlWhereInput)), true + return e.ComplexityRoot.Control.ControlMappings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingControlOrder), args["where"].(*generated.FindingControlWhereInput)), true case "Control.controlObjectives": - if e.complexity.Control.ControlObjectives == nil { + if e.ComplexityRoot.Control.ControlObjectives == nil { break } @@ -10471,73 +10454,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Control.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Control.controlOwner": - if e.complexity.Control.ControlOwner == nil { + if e.ComplexityRoot.Control.ControlOwner == nil { break } - return e.complexity.Control.ControlOwner(childComplexity), true + return e.ComplexityRoot.Control.ControlOwner(childComplexity), true case "Control.controlOwnerID": - if e.complexity.Control.ControlOwnerID == nil { + if e.ComplexityRoot.Control.ControlOwnerID == nil { break } - return e.complexity.Control.ControlOwnerID(childComplexity), true + return e.ComplexityRoot.Control.ControlOwnerID(childComplexity), true case "Control.controlQuestions": - if e.complexity.Control.ControlQuestions == nil { + if e.ComplexityRoot.Control.ControlQuestions == nil { break } - return e.complexity.Control.ControlQuestions(childComplexity), true + return e.ComplexityRoot.Control.ControlQuestions(childComplexity), true case "Control.createdAt": - if e.complexity.Control.CreatedAt == nil { + if e.ComplexityRoot.Control.CreatedAt == nil { break } - return e.complexity.Control.CreatedAt(childComplexity), true + return e.ComplexityRoot.Control.CreatedAt(childComplexity), true case "Control.createdBy": - if e.complexity.Control.CreatedBy == nil { + if e.ComplexityRoot.Control.CreatedBy == nil { break } - return e.complexity.Control.CreatedBy(childComplexity), true + return e.ComplexityRoot.Control.CreatedBy(childComplexity), true case "Control.delegate": - if e.complexity.Control.Delegate == nil { + if e.ComplexityRoot.Control.Delegate == nil { break } - return e.complexity.Control.Delegate(childComplexity), true + return e.ComplexityRoot.Control.Delegate(childComplexity), true case "Control.delegateID": - if e.complexity.Control.DelegateID == nil { + if e.ComplexityRoot.Control.DelegateID == nil { break } - return e.complexity.Control.DelegateID(childComplexity), true + return e.ComplexityRoot.Control.DelegateID(childComplexity), true case "Control.description": - if e.complexity.Control.Description == nil { + if e.ComplexityRoot.Control.Description == nil { break } - return e.complexity.Control.Description(childComplexity), true + return e.ComplexityRoot.Control.Description(childComplexity), true case "Control.descriptionJSON": - if e.complexity.Control.DescriptionJSON == nil { + if e.ComplexityRoot.Control.DescriptionJSON == nil { break } - return e.complexity.Control.DescriptionJSON(childComplexity), true + return e.ComplexityRoot.Control.DescriptionJSON(childComplexity), true case "Control.discussions": - if e.complexity.Control.Discussions == nil { + if e.ComplexityRoot.Control.Discussions == nil { break } @@ -10546,17 +10529,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true + return e.ComplexityRoot.Control.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true case "Control.displayID": - if e.complexity.Control.DisplayID == nil { + if e.ComplexityRoot.Control.DisplayID == nil { break } - return e.complexity.Control.DisplayID(childComplexity), true + return e.ComplexityRoot.Control.DisplayID(childComplexity), true case "Control.editors": - if e.complexity.Control.Editors == nil { + if e.ComplexityRoot.Control.Editors == nil { break } @@ -10565,31 +10548,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Control.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Control.environment": - if e.complexity.Control.Environment == nil { + if e.ComplexityRoot.Control.Environment == nil { break } - return e.complexity.Control.Environment(childComplexity), true + return e.ComplexityRoot.Control.Environment(childComplexity), true case "Control.environmentID": - if e.complexity.Control.EnvironmentID == nil { + if e.ComplexityRoot.Control.EnvironmentID == nil { break } - return e.complexity.Control.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Control.EnvironmentID(childComplexity), true case "Control.environmentName": - if e.complexity.Control.EnvironmentName == nil { + if e.ComplexityRoot.Control.EnvironmentName == nil { break } - return e.complexity.Control.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Control.EnvironmentName(childComplexity), true case "Control.evidence": - if e.complexity.Control.Evidence == nil { + if e.ComplexityRoot.Control.Evidence == nil { break } @@ -10598,24 +10581,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Control.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Control.evidenceRequests": - if e.complexity.Control.EvidenceRequests == nil { + if e.ComplexityRoot.Control.EvidenceRequests == nil { break } - return e.complexity.Control.EvidenceRequests(childComplexity), true + return e.ComplexityRoot.Control.EvidenceRequests(childComplexity), true case "Control.exampleEvidence": - if e.complexity.Control.ExampleEvidence == nil { + if e.ComplexityRoot.Control.ExampleEvidence == nil { break } - return e.complexity.Control.ExampleEvidence(childComplexity), true + return e.ComplexityRoot.Control.ExampleEvidence(childComplexity), true case "Control.findings": - if e.complexity.Control.Findings == nil { + if e.ComplexityRoot.Control.Findings == nil { break } @@ -10624,45 +10607,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.Control.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "Control.hasPendingWorkflow": - if e.complexity.Control.HasPendingWorkflow == nil { + if e.ComplexityRoot.Control.HasPendingWorkflow == nil { break } - return e.complexity.Control.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.Control.HasPendingWorkflow(childComplexity), true case "Control.hasWorkflowHistory": - if e.complexity.Control.HasWorkflowHistory == nil { + if e.ComplexityRoot.Control.HasWorkflowHistory == nil { break } - return e.complexity.Control.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.Control.HasWorkflowHistory(childComplexity), true case "Control.id": - if e.complexity.Control.ID == nil { + if e.ComplexityRoot.Control.ID == nil { break } - return e.complexity.Control.ID(childComplexity), true + return e.ComplexityRoot.Control.ID(childComplexity), true case "Control.implementationGuidance": - if e.complexity.Control.ImplementationGuidance == nil { + if e.ComplexityRoot.Control.ImplementationGuidance == nil { break } - return e.complexity.Control.ImplementationGuidance(childComplexity), true + return e.ComplexityRoot.Control.ImplementationGuidance(childComplexity), true case "Control.internalNotes": - if e.complexity.Control.InternalNotes == nil { + if e.ComplexityRoot.Control.InternalNotes == nil { break } - return e.complexity.Control.InternalNotes(childComplexity), true + return e.ComplexityRoot.Control.InternalNotes(childComplexity), true case "Control.internalPolicies": - if e.complexity.Control.InternalPolicies == nil { + if e.ComplexityRoot.Control.InternalPolicies == nil { break } @@ -10671,24 +10654,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Control.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Control.isTrustCenterControl": - if e.complexity.Control.IsTrustCenterControl == nil { + if e.ComplexityRoot.Control.IsTrustCenterControl == nil { break } - return e.complexity.Control.IsTrustCenterControl(childComplexity), true + return e.ComplexityRoot.Control.IsTrustCenterControl(childComplexity), true case "Control.mappedCategories": - if e.complexity.Control.MappedCategories == nil { + if e.ComplexityRoot.Control.MappedCategories == nil { break } - return e.complexity.Control.MappedCategories(childComplexity), true + return e.ComplexityRoot.Control.MappedCategories(childComplexity), true case "Control.narratives": - if e.complexity.Control.Narratives == nil { + if e.ComplexityRoot.Control.Narratives == nil { break } @@ -10697,24 +10680,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Control.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Control.owner": - if e.complexity.Control.Owner == nil { + if e.ComplexityRoot.Control.Owner == nil { break } - return e.complexity.Control.Owner(childComplexity), true + return e.ComplexityRoot.Control.Owner(childComplexity), true case "Control.ownerID": - if e.complexity.Control.OwnerID == nil { + if e.ComplexityRoot.Control.OwnerID == nil { break } - return e.complexity.Control.OwnerID(childComplexity), true + return e.ComplexityRoot.Control.OwnerID(childComplexity), true case "Control.platforms": - if e.complexity.Control.Platforms == nil { + if e.ComplexityRoot.Control.Platforms == nil { break } @@ -10723,10 +10706,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Control.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Control.procedures": - if e.complexity.Control.Procedures == nil { + if e.ComplexityRoot.Control.Procedures == nil { break } @@ -10735,10 +10718,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Control.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Control.programs": - if e.complexity.Control.Programs == nil { + if e.ComplexityRoot.Control.Programs == nil { break } @@ -10747,59 +10730,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Control.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Control.refCode": - if e.complexity.Control.RefCode == nil { + if e.ComplexityRoot.Control.RefCode == nil { break } - return e.complexity.Control.RefCode(childComplexity), true + return e.ComplexityRoot.Control.RefCode(childComplexity), true case "Control.referenceFramework": - if e.complexity.Control.ReferenceFramework == nil { + if e.ComplexityRoot.Control.ReferenceFramework == nil { break } - return e.complexity.Control.ReferenceFramework(childComplexity), true + return e.ComplexityRoot.Control.ReferenceFramework(childComplexity), true case "Control.referenceFrameworkRevision": - if e.complexity.Control.ReferenceFrameworkRevision == nil { + if e.ComplexityRoot.Control.ReferenceFrameworkRevision == nil { break } - return e.complexity.Control.ReferenceFrameworkRevision(childComplexity), true + return e.ComplexityRoot.Control.ReferenceFrameworkRevision(childComplexity), true case "Control.referenceID": - if e.complexity.Control.ReferenceID == nil { + if e.ComplexityRoot.Control.ReferenceID == nil { break } - return e.complexity.Control.ReferenceID(childComplexity), true + return e.ComplexityRoot.Control.ReferenceID(childComplexity), true case "Control.references": - if e.complexity.Control.References == nil { + if e.ComplexityRoot.Control.References == nil { break } - return e.complexity.Control.References(childComplexity), true + return e.ComplexityRoot.Control.References(childComplexity), true case "Control.responsibleParty": - if e.complexity.Control.ResponsibleParty == nil { + if e.ComplexityRoot.Control.ResponsibleParty == nil { break } - return e.complexity.Control.ResponsibleParty(childComplexity), true + return e.ComplexityRoot.Control.ResponsibleParty(childComplexity), true case "Control.responsiblePartyID": - if e.complexity.Control.ResponsiblePartyID == nil { + if e.ComplexityRoot.Control.ResponsiblePartyID == nil { break } - return e.complexity.Control.ResponsiblePartyID(childComplexity), true + return e.ComplexityRoot.Control.ResponsiblePartyID(childComplexity), true case "Control.risks": - if e.complexity.Control.Risks == nil { + if e.ComplexityRoot.Control.Risks == nil { break } @@ -10808,10 +10791,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Control.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Control.scans": - if e.complexity.Control.Scans == nil { + if e.ComplexityRoot.Control.Scans == nil { break } @@ -10820,10 +10803,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Control.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Control.scheduledJobs": - if e.complexity.Control.ScheduledJobs == nil { + if e.ComplexityRoot.Control.ScheduledJobs == nil { break } @@ -10832,66 +10815,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true + return e.ComplexityRoot.Control.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true case "Control.scope": - if e.complexity.Control.Scope == nil { + if e.ComplexityRoot.Control.Scope == nil { break } - return e.complexity.Control.Scope(childComplexity), true + return e.ComplexityRoot.Control.Scope(childComplexity), true case "Control.scopeID": - if e.complexity.Control.ScopeID == nil { + if e.ComplexityRoot.Control.ScopeID == nil { break } - return e.complexity.Control.ScopeID(childComplexity), true + return e.ComplexityRoot.Control.ScopeID(childComplexity), true case "Control.scopeName": - if e.complexity.Control.ScopeName == nil { + if e.ComplexityRoot.Control.ScopeName == nil { break } - return e.complexity.Control.ScopeName(childComplexity), true + return e.ComplexityRoot.Control.ScopeName(childComplexity), true case "Control.source": - if e.complexity.Control.Source == nil { + if e.ComplexityRoot.Control.Source == nil { break } - return e.complexity.Control.Source(childComplexity), true + return e.ComplexityRoot.Control.Source(childComplexity), true case "Control.standard": - if e.complexity.Control.Standard == nil { + if e.ComplexityRoot.Control.Standard == nil { break } - return e.complexity.Control.Standard(childComplexity), true + return e.ComplexityRoot.Control.Standard(childComplexity), true case "Control.standardID": - if e.complexity.Control.StandardID == nil { + if e.ComplexityRoot.Control.StandardID == nil { break } - return e.complexity.Control.StandardID(childComplexity), true + return e.ComplexityRoot.Control.StandardID(childComplexity), true case "Control.status": - if e.complexity.Control.Status == nil { + if e.ComplexityRoot.Control.Status == nil { break } - return e.complexity.Control.Status(childComplexity), true + return e.ComplexityRoot.Control.Status(childComplexity), true case "Control.subcategory": - if e.complexity.Control.Subcategory == nil { + if e.ComplexityRoot.Control.Subcategory == nil { break } - return e.complexity.Control.Subcategory(childComplexity), true + return e.ComplexityRoot.Control.Subcategory(childComplexity), true case "Control.subcontrols": - if e.complexity.Control.Subcontrols == nil { + if e.ComplexityRoot.Control.Subcontrols == nil { break } @@ -10900,31 +10883,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Control.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Control.systemInternalID": - if e.complexity.Control.SystemInternalID == nil { + if e.ComplexityRoot.Control.SystemInternalID == nil { break } - return e.complexity.Control.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Control.SystemInternalID(childComplexity), true case "Control.systemOwned": - if e.complexity.Control.SystemOwned == nil { + if e.ComplexityRoot.Control.SystemOwned == nil { break } - return e.complexity.Control.SystemOwned(childComplexity), true + return e.ComplexityRoot.Control.SystemOwned(childComplexity), true case "Control.tags": - if e.complexity.Control.Tags == nil { + if e.ComplexityRoot.Control.Tags == nil { break } - return e.complexity.Control.Tags(childComplexity), true + return e.ComplexityRoot.Control.Tags(childComplexity), true case "Control.tasks": - if e.complexity.Control.Tasks == nil { + if e.ComplexityRoot.Control.Tasks == nil { break } @@ -10933,52 +10916,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Control.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Control.testingProcedures": - if e.complexity.Control.TestingProcedures == nil { + if e.ComplexityRoot.Control.TestingProcedures == nil { break } - return e.complexity.Control.TestingProcedures(childComplexity), true + return e.ComplexityRoot.Control.TestingProcedures(childComplexity), true case "Control.title": - if e.complexity.Control.Title == nil { + if e.ComplexityRoot.Control.Title == nil { break } - return e.complexity.Control.Title(childComplexity), true + return e.ComplexityRoot.Control.Title(childComplexity), true case "Control.trustCenterVisibility": - if e.complexity.Control.TrustCenterVisibility == nil { + if e.ComplexityRoot.Control.TrustCenterVisibility == nil { break } - return e.complexity.Control.TrustCenterVisibility(childComplexity), true + return e.ComplexityRoot.Control.TrustCenterVisibility(childComplexity), true case "Control.updatedAt": - if e.complexity.Control.UpdatedAt == nil { + if e.ComplexityRoot.Control.UpdatedAt == nil { break } - return e.complexity.Control.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Control.UpdatedAt(childComplexity), true case "Control.updatedBy": - if e.complexity.Control.UpdatedBy == nil { + if e.ComplexityRoot.Control.UpdatedBy == nil { break } - return e.complexity.Control.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Control.UpdatedBy(childComplexity), true case "Control.workflowEligibleMarker": - if e.complexity.Control.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.Control.WorkflowEligibleMarker == nil { break } - return e.complexity.Control.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.Control.WorkflowEligibleMarker(childComplexity), true case "Control.workflowObjectRefs": - if e.complexity.Control.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Control.WorkflowObjectRefs == nil { break } @@ -10987,10 +10970,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Control.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "Control.workflowTimeline": - if e.complexity.Control.WorkflowTimeline == nil { + if e.ComplexityRoot.Control.WorkflowTimeline == nil { break } @@ -10999,241 +10982,241 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Control.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.Control.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "ControlBulkCreatePayload.controls": - if e.complexity.ControlBulkCreatePayload.Controls == nil { + if e.ComplexityRoot.ControlBulkCreatePayload.Controls == nil { break } - return e.complexity.ControlBulkCreatePayload.Controls(childComplexity), true + return e.ComplexityRoot.ControlBulkCreatePayload.Controls(childComplexity), true case "ControlBulkDeletePayload.deletedIDs": - if e.complexity.ControlBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ControlBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ControlBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ControlBulkDeletePayload.DeletedIDs(childComplexity), true case "ControlBulkUpdatePayload.controls": - if e.complexity.ControlBulkUpdatePayload.Controls == nil { + if e.ComplexityRoot.ControlBulkUpdatePayload.Controls == nil { break } - return e.complexity.ControlBulkUpdatePayload.Controls(childComplexity), true + return e.ComplexityRoot.ControlBulkUpdatePayload.Controls(childComplexity), true case "ControlBulkUpdatePayload.updatedIDs": - if e.complexity.ControlBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ControlBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ControlBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ControlBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ControlCategory.name": - if e.complexity.ControlCategory.Name == nil { + if e.ComplexityRoot.ControlCategory.Name == nil { break } - return e.complexity.ControlCategory.Name(childComplexity), true + return e.ComplexityRoot.ControlCategory.Name(childComplexity), true case "ControlCategory.referenceFramework": - if e.complexity.ControlCategory.ReferenceFramework == nil { + if e.ComplexityRoot.ControlCategory.ReferenceFramework == nil { break } - return e.complexity.ControlCategory.ReferenceFramework(childComplexity), true + return e.ComplexityRoot.ControlCategory.ReferenceFramework(childComplexity), true case "ControlCategoryConnection.edges": - if e.complexity.ControlCategoryConnection.Edges == nil { + if e.ComplexityRoot.ControlCategoryConnection.Edges == nil { break } - return e.complexity.ControlCategoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlCategoryConnection.Edges(childComplexity), true case "ControlCategoryConnection.pageInfo": - if e.complexity.ControlCategoryConnection.PageInfo == nil { + if e.ComplexityRoot.ControlCategoryConnection.PageInfo == nil { break } - return e.complexity.ControlCategoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlCategoryConnection.PageInfo(childComplexity), true case "ControlCategoryConnection.totalCount": - if e.complexity.ControlCategoryConnection.TotalCount == nil { + if e.ComplexityRoot.ControlCategoryConnection.TotalCount == nil { break } - return e.complexity.ControlCategoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ControlCategoryConnection.TotalCount(childComplexity), true case "ControlCategoryEdge.node": - if e.complexity.ControlCategoryEdge.Node == nil { + if e.ComplexityRoot.ControlCategoryEdge.Node == nil { break } - return e.complexity.ControlCategoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlCategoryEdge.Node(childComplexity), true case "ControlChange.diffs": - if e.complexity.ControlChange.Diffs == nil { + if e.ComplexityRoot.ControlChange.Diffs == nil { break } - return e.complexity.ControlChange.Diffs(childComplexity), true + return e.ComplexityRoot.ControlChange.Diffs(childComplexity), true case "ControlChange.refCode": - if e.complexity.ControlChange.RefCode == nil { + if e.ComplexityRoot.ControlChange.RefCode == nil { break } - return e.complexity.ControlChange.RefCode(childComplexity), true + return e.ComplexityRoot.ControlChange.RefCode(childComplexity), true case "ControlChange.title": - if e.complexity.ControlChange.Title == nil { + if e.ComplexityRoot.ControlChange.Title == nil { break } - return e.complexity.ControlChange.Title(childComplexity), true + return e.ComplexityRoot.ControlChange.Title(childComplexity), true case "ControlConnection.edges": - if e.complexity.ControlConnection.Edges == nil { + if e.ComplexityRoot.ControlConnection.Edges == nil { break } - return e.complexity.ControlConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlConnection.Edges(childComplexity), true case "ControlConnection.pageInfo": - if e.complexity.ControlConnection.PageInfo == nil { + if e.ComplexityRoot.ControlConnection.PageInfo == nil { break } - return e.complexity.ControlConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlConnection.PageInfo(childComplexity), true case "ControlConnection.totalCount": - if e.complexity.ControlConnection.TotalCount == nil { + if e.ComplexityRoot.ControlConnection.TotalCount == nil { break } - return e.complexity.ControlConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ControlConnection.TotalCount(childComplexity), true case "ControlCreatePayload.control": - if e.complexity.ControlCreatePayload.Control == nil { + if e.ComplexityRoot.ControlCreatePayload.Control == nil { break } - return e.complexity.ControlCreatePayload.Control(childComplexity), true + return e.ComplexityRoot.ControlCreatePayload.Control(childComplexity), true case "ControlDeletePayload.deletedID": - if e.complexity.ControlDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ControlDeletePayload.DeletedID == nil { break } - return e.complexity.ControlDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ControlDeletePayload.DeletedID(childComplexity), true case "ControlDiffPayload.changes": - if e.complexity.ControlDiffPayload.Changes == nil { + if e.ComplexityRoot.ControlDiffPayload.Changes == nil { break } - return e.complexity.ControlDiffPayload.Changes(childComplexity), true + return e.ComplexityRoot.ControlDiffPayload.Changes(childComplexity), true case "ControlDiffPayload.newRevision": - if e.complexity.ControlDiffPayload.NewRevision == nil { + if e.ComplexityRoot.ControlDiffPayload.NewRevision == nil { break } - return e.complexity.ControlDiffPayload.NewRevision(childComplexity), true + return e.ComplexityRoot.ControlDiffPayload.NewRevision(childComplexity), true case "ControlDiffPayload.oldRevision": - if e.complexity.ControlDiffPayload.OldRevision == nil { + if e.ComplexityRoot.ControlDiffPayload.OldRevision == nil { break } - return e.complexity.ControlDiffPayload.OldRevision(childComplexity), true + return e.ComplexityRoot.ControlDiffPayload.OldRevision(childComplexity), true case "ControlDiffPayload.standardID": - if e.complexity.ControlDiffPayload.StandardID == nil { + if e.ComplexityRoot.ControlDiffPayload.StandardID == nil { break } - return e.complexity.ControlDiffPayload.StandardID(childComplexity), true + return e.ComplexityRoot.ControlDiffPayload.StandardID(childComplexity), true case "ControlEdge.cursor": - if e.complexity.ControlEdge.Cursor == nil { + if e.ComplexityRoot.ControlEdge.Cursor == nil { break } - return e.complexity.ControlEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ControlEdge.Cursor(childComplexity), true case "ControlEdge.node": - if e.complexity.ControlEdge.Node == nil { + if e.ComplexityRoot.ControlEdge.Node == nil { break } - return e.complexity.ControlEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlEdge.Node(childComplexity), true case "ControlFieldDiff.diff": - if e.complexity.ControlFieldDiff.Diff == nil { + if e.ComplexityRoot.ControlFieldDiff.Diff == nil { break } - return e.complexity.ControlFieldDiff.Diff(childComplexity), true + return e.ComplexityRoot.ControlFieldDiff.Diff(childComplexity), true case "ControlFieldDiff.field": - if e.complexity.ControlFieldDiff.Field == nil { + if e.ComplexityRoot.ControlFieldDiff.Field == nil { break } - return e.complexity.ControlFieldDiff.Field(childComplexity), true + return e.ComplexityRoot.ControlFieldDiff.Field(childComplexity), true case "ControlFieldDiff.newValue": - if e.complexity.ControlFieldDiff.NewValue == nil { + if e.ComplexityRoot.ControlFieldDiff.NewValue == nil { break } - return e.complexity.ControlFieldDiff.NewValue(childComplexity), true + return e.ComplexityRoot.ControlFieldDiff.NewValue(childComplexity), true case "ControlFieldDiff.oldValue": - if e.complexity.ControlFieldDiff.OldValue == nil { + if e.ComplexityRoot.ControlFieldDiff.OldValue == nil { break } - return e.complexity.ControlFieldDiff.OldValue(childComplexity), true + return e.ComplexityRoot.ControlFieldDiff.OldValue(childComplexity), true case "ControlGroup.category": - if e.complexity.ControlGroup.Category == nil { + if e.ComplexityRoot.ControlGroup.Category == nil { break } - return e.complexity.ControlGroup.Category(childComplexity), true + return e.ComplexityRoot.ControlGroup.Category(childComplexity), true case "ControlGroup.controls": - if e.complexity.ControlGroup.Controls == nil { + if e.ComplexityRoot.ControlGroup.Controls == nil { break } - return e.complexity.ControlGroup.Controls(childComplexity), true + return e.ComplexityRoot.ControlGroup.Controls(childComplexity), true case "ControlGroupConnection.edges": - if e.complexity.ControlGroupConnection.Edges == nil { + if e.ComplexityRoot.ControlGroupConnection.Edges == nil { break } - return e.complexity.ControlGroupConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlGroupConnection.Edges(childComplexity), true case "ControlGroupEdge.node": - if e.complexity.ControlGroupEdge.Node == nil { + if e.ComplexityRoot.ControlGroupEdge.Node == nil { break } - return e.complexity.ControlGroupEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlGroupEdge.Node(childComplexity), true case "ControlGroupEdge.pageInfo": - if e.complexity.ControlGroupEdge.PageInfo == nil { + if e.ComplexityRoot.ControlGroupEdge.PageInfo == nil { break } - return e.complexity.ControlGroupEdge.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlGroupEdge.PageInfo(childComplexity), true case "ControlImplementation.blockedGroups": - if e.complexity.ControlImplementation.BlockedGroups == nil { + if e.ComplexityRoot.ControlImplementation.BlockedGroups == nil { break } @@ -11242,10 +11225,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlImplementation.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ControlImplementation.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ControlImplementation.controls": - if e.complexity.ControlImplementation.Controls == nil { + if e.ComplexityRoot.ControlImplementation.Controls == nil { break } @@ -11254,38 +11237,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlImplementation.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.ControlImplementation.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "ControlImplementation.createdAt": - if e.complexity.ControlImplementation.CreatedAt == nil { + if e.ComplexityRoot.ControlImplementation.CreatedAt == nil { break } - return e.complexity.ControlImplementation.CreatedAt(childComplexity), true + return e.ComplexityRoot.ControlImplementation.CreatedAt(childComplexity), true case "ControlImplementation.createdBy": - if e.complexity.ControlImplementation.CreatedBy == nil { + if e.ComplexityRoot.ControlImplementation.CreatedBy == nil { break } - return e.complexity.ControlImplementation.CreatedBy(childComplexity), true + return e.ComplexityRoot.ControlImplementation.CreatedBy(childComplexity), true case "ControlImplementation.details": - if e.complexity.ControlImplementation.Details == nil { + if e.ComplexityRoot.ControlImplementation.Details == nil { break } - return e.complexity.ControlImplementation.Details(childComplexity), true + return e.ComplexityRoot.ControlImplementation.Details(childComplexity), true case "ControlImplementation.detailsJSON": - if e.complexity.ControlImplementation.DetailsJSON == nil { + if e.ComplexityRoot.ControlImplementation.DetailsJSON == nil { break } - return e.complexity.ControlImplementation.DetailsJSON(childComplexity), true + return e.ComplexityRoot.ControlImplementation.DetailsJSON(childComplexity), true case "ControlImplementation.editors": - if e.complexity.ControlImplementation.Editors == nil { + if e.ComplexityRoot.ControlImplementation.Editors == nil { break } @@ -11294,52 +11277,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlImplementation.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ControlImplementation.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ControlImplementation.id": - if e.complexity.ControlImplementation.ID == nil { + if e.ComplexityRoot.ControlImplementation.ID == nil { break } - return e.complexity.ControlImplementation.ID(childComplexity), true + return e.ComplexityRoot.ControlImplementation.ID(childComplexity), true case "ControlImplementation.implementationDate": - if e.complexity.ControlImplementation.ImplementationDate == nil { + if e.ComplexityRoot.ControlImplementation.ImplementationDate == nil { break } - return e.complexity.ControlImplementation.ImplementationDate(childComplexity), true + return e.ComplexityRoot.ControlImplementation.ImplementationDate(childComplexity), true case "ControlImplementation.internalNotes": - if e.complexity.ControlImplementation.InternalNotes == nil { + if e.ComplexityRoot.ControlImplementation.InternalNotes == nil { break } - return e.complexity.ControlImplementation.InternalNotes(childComplexity), true + return e.ComplexityRoot.ControlImplementation.InternalNotes(childComplexity), true case "ControlImplementation.owner": - if e.complexity.ControlImplementation.Owner == nil { + if e.ComplexityRoot.ControlImplementation.Owner == nil { break } - return e.complexity.ControlImplementation.Owner(childComplexity), true + return e.ComplexityRoot.ControlImplementation.Owner(childComplexity), true case "ControlImplementation.ownerID": - if e.complexity.ControlImplementation.OwnerID == nil { + if e.ComplexityRoot.ControlImplementation.OwnerID == nil { break } - return e.complexity.ControlImplementation.OwnerID(childComplexity), true + return e.ComplexityRoot.ControlImplementation.OwnerID(childComplexity), true case "ControlImplementation.status": - if e.complexity.ControlImplementation.Status == nil { + if e.ComplexityRoot.ControlImplementation.Status == nil { break } - return e.complexity.ControlImplementation.Status(childComplexity), true + return e.ComplexityRoot.ControlImplementation.Status(childComplexity), true case "ControlImplementation.subcontrols": - if e.complexity.ControlImplementation.Subcontrols == nil { + if e.ComplexityRoot.ControlImplementation.Subcontrols == nil { break } @@ -11348,31 +11331,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlImplementation.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.ControlImplementation.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "ControlImplementation.systemInternalID": - if e.complexity.ControlImplementation.SystemInternalID == nil { + if e.ComplexityRoot.ControlImplementation.SystemInternalID == nil { break } - return e.complexity.ControlImplementation.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ControlImplementation.SystemInternalID(childComplexity), true case "ControlImplementation.systemOwned": - if e.complexity.ControlImplementation.SystemOwned == nil { + if e.ComplexityRoot.ControlImplementation.SystemOwned == nil { break } - return e.complexity.ControlImplementation.SystemOwned(childComplexity), true + return e.ComplexityRoot.ControlImplementation.SystemOwned(childComplexity), true case "ControlImplementation.tags": - if e.complexity.ControlImplementation.Tags == nil { + if e.ComplexityRoot.ControlImplementation.Tags == nil { break } - return e.complexity.ControlImplementation.Tags(childComplexity), true + return e.ComplexityRoot.ControlImplementation.Tags(childComplexity), true case "ControlImplementation.tasks": - if e.complexity.ControlImplementation.Tasks == nil { + if e.ComplexityRoot.ControlImplementation.Tasks == nil { break } @@ -11381,38 +11364,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlImplementation.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.ControlImplementation.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "ControlImplementation.updatedAt": - if e.complexity.ControlImplementation.UpdatedAt == nil { + if e.ComplexityRoot.ControlImplementation.UpdatedAt == nil { break } - return e.complexity.ControlImplementation.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ControlImplementation.UpdatedAt(childComplexity), true case "ControlImplementation.updatedBy": - if e.complexity.ControlImplementation.UpdatedBy == nil { + if e.ComplexityRoot.ControlImplementation.UpdatedBy == nil { break } - return e.complexity.ControlImplementation.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ControlImplementation.UpdatedBy(childComplexity), true case "ControlImplementation.verificationDate": - if e.complexity.ControlImplementation.VerificationDate == nil { + if e.ComplexityRoot.ControlImplementation.VerificationDate == nil { break } - return e.complexity.ControlImplementation.VerificationDate(childComplexity), true + return e.ComplexityRoot.ControlImplementation.VerificationDate(childComplexity), true case "ControlImplementation.verified": - if e.complexity.ControlImplementation.Verified == nil { + if e.ComplexityRoot.ControlImplementation.Verified == nil { break } - return e.complexity.ControlImplementation.Verified(childComplexity), true + return e.ComplexityRoot.ControlImplementation.Verified(childComplexity), true case "ControlImplementation.viewers": - if e.complexity.ControlImplementation.Viewers == nil { + if e.ComplexityRoot.ControlImplementation.Viewers == nil { break } @@ -11421,94 +11404,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlImplementation.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ControlImplementation.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ControlImplementationBulkCreatePayload.controlImplementations": - if e.complexity.ControlImplementationBulkCreatePayload.ControlImplementations == nil { + if e.ComplexityRoot.ControlImplementationBulkCreatePayload.ControlImplementations == nil { break } - return e.complexity.ControlImplementationBulkCreatePayload.ControlImplementations(childComplexity), true + return e.ComplexityRoot.ControlImplementationBulkCreatePayload.ControlImplementations(childComplexity), true case "ControlImplementationBulkDeletePayload.deletedIDs": - if e.complexity.ControlImplementationBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ControlImplementationBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ControlImplementationBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ControlImplementationBulkDeletePayload.DeletedIDs(childComplexity), true case "ControlImplementationBulkUpdatePayload.controlImplementations": - if e.complexity.ControlImplementationBulkUpdatePayload.ControlImplementations == nil { + if e.ComplexityRoot.ControlImplementationBulkUpdatePayload.ControlImplementations == nil { break } - return e.complexity.ControlImplementationBulkUpdatePayload.ControlImplementations(childComplexity), true + return e.ComplexityRoot.ControlImplementationBulkUpdatePayload.ControlImplementations(childComplexity), true case "ControlImplementationBulkUpdatePayload.updatedIDs": - if e.complexity.ControlImplementationBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ControlImplementationBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ControlImplementationBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ControlImplementationBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ControlImplementationConnection.edges": - if e.complexity.ControlImplementationConnection.Edges == nil { + if e.ComplexityRoot.ControlImplementationConnection.Edges == nil { break } - return e.complexity.ControlImplementationConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlImplementationConnection.Edges(childComplexity), true case "ControlImplementationConnection.pageInfo": - if e.complexity.ControlImplementationConnection.PageInfo == nil { + if e.ComplexityRoot.ControlImplementationConnection.PageInfo == nil { break } - return e.complexity.ControlImplementationConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlImplementationConnection.PageInfo(childComplexity), true case "ControlImplementationConnection.totalCount": - if e.complexity.ControlImplementationConnection.TotalCount == nil { + if e.ComplexityRoot.ControlImplementationConnection.TotalCount == nil { break } - return e.complexity.ControlImplementationConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ControlImplementationConnection.TotalCount(childComplexity), true case "ControlImplementationCreatePayload.controlImplementation": - if e.complexity.ControlImplementationCreatePayload.ControlImplementation == nil { + if e.ComplexityRoot.ControlImplementationCreatePayload.ControlImplementation == nil { break } - return e.complexity.ControlImplementationCreatePayload.ControlImplementation(childComplexity), true + return e.ComplexityRoot.ControlImplementationCreatePayload.ControlImplementation(childComplexity), true case "ControlImplementationDeletePayload.deletedID": - if e.complexity.ControlImplementationDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ControlImplementationDeletePayload.DeletedID == nil { break } - return e.complexity.ControlImplementationDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ControlImplementationDeletePayload.DeletedID(childComplexity), true case "ControlImplementationEdge.cursor": - if e.complexity.ControlImplementationEdge.Cursor == nil { + if e.ComplexityRoot.ControlImplementationEdge.Cursor == nil { break } - return e.complexity.ControlImplementationEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ControlImplementationEdge.Cursor(childComplexity), true case "ControlImplementationEdge.node": - if e.complexity.ControlImplementationEdge.Node == nil { + if e.ComplexityRoot.ControlImplementationEdge.Node == nil { break } - return e.complexity.ControlImplementationEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlImplementationEdge.Node(childComplexity), true case "ControlImplementationUpdatePayload.controlImplementation": - if e.complexity.ControlImplementationUpdatePayload.ControlImplementation == nil { + if e.ComplexityRoot.ControlImplementationUpdatePayload.ControlImplementation == nil { break } - return e.complexity.ControlImplementationUpdatePayload.ControlImplementation(childComplexity), true + return e.ComplexityRoot.ControlImplementationUpdatePayload.ControlImplementation(childComplexity), true case "ControlObjective.blockedGroups": - if e.complexity.ControlObjective.BlockedGroups == nil { + if e.ComplexityRoot.ControlObjective.BlockedGroups == nil { break } @@ -11517,24 +11500,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ControlObjective.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ControlObjective.category": - if e.complexity.ControlObjective.Category == nil { + if e.ComplexityRoot.ControlObjective.Category == nil { break } - return e.complexity.ControlObjective.Category(childComplexity), true + return e.ComplexityRoot.ControlObjective.Category(childComplexity), true case "ControlObjective.controlObjectiveType": - if e.complexity.ControlObjective.ControlObjectiveType == nil { + if e.ComplexityRoot.ControlObjective.ControlObjectiveType == nil { break } - return e.complexity.ControlObjective.ControlObjectiveType(childComplexity), true + return e.ComplexityRoot.ControlObjective.ControlObjectiveType(childComplexity), true case "ControlObjective.controls": - if e.complexity.ControlObjective.Controls == nil { + if e.ComplexityRoot.ControlObjective.Controls == nil { break } @@ -11543,45 +11526,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.ControlObjective.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "ControlObjective.createdAt": - if e.complexity.ControlObjective.CreatedAt == nil { + if e.ComplexityRoot.ControlObjective.CreatedAt == nil { break } - return e.complexity.ControlObjective.CreatedAt(childComplexity), true + return e.ComplexityRoot.ControlObjective.CreatedAt(childComplexity), true case "ControlObjective.createdBy": - if e.complexity.ControlObjective.CreatedBy == nil { + if e.ComplexityRoot.ControlObjective.CreatedBy == nil { break } - return e.complexity.ControlObjective.CreatedBy(childComplexity), true + return e.ComplexityRoot.ControlObjective.CreatedBy(childComplexity), true case "ControlObjective.desiredOutcome": - if e.complexity.ControlObjective.DesiredOutcome == nil { + if e.ComplexityRoot.ControlObjective.DesiredOutcome == nil { break } - return e.complexity.ControlObjective.DesiredOutcome(childComplexity), true + return e.ComplexityRoot.ControlObjective.DesiredOutcome(childComplexity), true case "ControlObjective.desiredOutcomeJSON": - if e.complexity.ControlObjective.DesiredOutcomeJSON == nil { + if e.ComplexityRoot.ControlObjective.DesiredOutcomeJSON == nil { break } - return e.complexity.ControlObjective.DesiredOutcomeJSON(childComplexity), true + return e.ComplexityRoot.ControlObjective.DesiredOutcomeJSON(childComplexity), true case "ControlObjective.displayID": - if e.complexity.ControlObjective.DisplayID == nil { + if e.ComplexityRoot.ControlObjective.DisplayID == nil { break } - return e.complexity.ControlObjective.DisplayID(childComplexity), true + return e.ComplexityRoot.ControlObjective.DisplayID(childComplexity), true case "ControlObjective.editors": - if e.complexity.ControlObjective.Editors == nil { + if e.ComplexityRoot.ControlObjective.Editors == nil { break } @@ -11590,10 +11573,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ControlObjective.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ControlObjective.evidence": - if e.complexity.ControlObjective.Evidence == nil { + if e.ComplexityRoot.ControlObjective.Evidence == nil { break } @@ -11602,24 +11585,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.ControlObjective.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "ControlObjective.id": - if e.complexity.ControlObjective.ID == nil { + if e.ComplexityRoot.ControlObjective.ID == nil { break } - return e.complexity.ControlObjective.ID(childComplexity), true + return e.ComplexityRoot.ControlObjective.ID(childComplexity), true case "ControlObjective.internalNotes": - if e.complexity.ControlObjective.InternalNotes == nil { + if e.ComplexityRoot.ControlObjective.InternalNotes == nil { break } - return e.complexity.ControlObjective.InternalNotes(childComplexity), true + return e.ComplexityRoot.ControlObjective.InternalNotes(childComplexity), true case "ControlObjective.internalPolicies": - if e.complexity.ControlObjective.InternalPolicies == nil { + if e.ComplexityRoot.ControlObjective.InternalPolicies == nil { break } @@ -11628,17 +11611,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.ControlObjective.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "ControlObjective.name": - if e.complexity.ControlObjective.Name == nil { + if e.ComplexityRoot.ControlObjective.Name == nil { break } - return e.complexity.ControlObjective.Name(childComplexity), true + return e.ComplexityRoot.ControlObjective.Name(childComplexity), true case "ControlObjective.narratives": - if e.complexity.ControlObjective.Narratives == nil { + if e.ComplexityRoot.ControlObjective.Narratives == nil { break } @@ -11647,24 +11630,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.ControlObjective.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "ControlObjective.owner": - if e.complexity.ControlObjective.Owner == nil { + if e.ComplexityRoot.ControlObjective.Owner == nil { break } - return e.complexity.ControlObjective.Owner(childComplexity), true + return e.ComplexityRoot.ControlObjective.Owner(childComplexity), true case "ControlObjective.ownerID": - if e.complexity.ControlObjective.OwnerID == nil { + if e.ComplexityRoot.ControlObjective.OwnerID == nil { break } - return e.complexity.ControlObjective.OwnerID(childComplexity), true + return e.ComplexityRoot.ControlObjective.OwnerID(childComplexity), true case "ControlObjective.procedures": - if e.complexity.ControlObjective.Procedures == nil { + if e.ComplexityRoot.ControlObjective.Procedures == nil { break } @@ -11673,10 +11656,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.ControlObjective.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "ControlObjective.programs": - if e.complexity.ControlObjective.Programs == nil { + if e.ComplexityRoot.ControlObjective.Programs == nil { break } @@ -11685,17 +11668,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.ControlObjective.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "ControlObjective.revision": - if e.complexity.ControlObjective.Revision == nil { + if e.ComplexityRoot.ControlObjective.Revision == nil { break } - return e.complexity.ControlObjective.Revision(childComplexity), true + return e.ComplexityRoot.ControlObjective.Revision(childComplexity), true case "ControlObjective.risks": - if e.complexity.ControlObjective.Risks == nil { + if e.ComplexityRoot.ControlObjective.Risks == nil { break } @@ -11704,31 +11687,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.ControlObjective.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "ControlObjective.source": - if e.complexity.ControlObjective.Source == nil { + if e.ComplexityRoot.ControlObjective.Source == nil { break } - return e.complexity.ControlObjective.Source(childComplexity), true + return e.ComplexityRoot.ControlObjective.Source(childComplexity), true case "ControlObjective.status": - if e.complexity.ControlObjective.Status == nil { + if e.ComplexityRoot.ControlObjective.Status == nil { break } - return e.complexity.ControlObjective.Status(childComplexity), true + return e.ComplexityRoot.ControlObjective.Status(childComplexity), true case "ControlObjective.subcategory": - if e.complexity.ControlObjective.Subcategory == nil { + if e.ComplexityRoot.ControlObjective.Subcategory == nil { break } - return e.complexity.ControlObjective.Subcategory(childComplexity), true + return e.ComplexityRoot.ControlObjective.Subcategory(childComplexity), true case "ControlObjective.subcontrols": - if e.complexity.ControlObjective.Subcontrols == nil { + if e.ComplexityRoot.ControlObjective.Subcontrols == nil { break } @@ -11737,31 +11720,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.ControlObjective.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "ControlObjective.systemInternalID": - if e.complexity.ControlObjective.SystemInternalID == nil { + if e.ComplexityRoot.ControlObjective.SystemInternalID == nil { break } - return e.complexity.ControlObjective.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ControlObjective.SystemInternalID(childComplexity), true case "ControlObjective.systemOwned": - if e.complexity.ControlObjective.SystemOwned == nil { + if e.ComplexityRoot.ControlObjective.SystemOwned == nil { break } - return e.complexity.ControlObjective.SystemOwned(childComplexity), true + return e.ComplexityRoot.ControlObjective.SystemOwned(childComplexity), true case "ControlObjective.tags": - if e.complexity.ControlObjective.Tags == nil { + if e.ComplexityRoot.ControlObjective.Tags == nil { break } - return e.complexity.ControlObjective.Tags(childComplexity), true + return e.ComplexityRoot.ControlObjective.Tags(childComplexity), true case "ControlObjective.tasks": - if e.complexity.ControlObjective.Tasks == nil { + if e.ComplexityRoot.ControlObjective.Tasks == nil { break } @@ -11770,24 +11753,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.ControlObjective.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "ControlObjective.updatedAt": - if e.complexity.ControlObjective.UpdatedAt == nil { + if e.ComplexityRoot.ControlObjective.UpdatedAt == nil { break } - return e.complexity.ControlObjective.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ControlObjective.UpdatedAt(childComplexity), true case "ControlObjective.updatedBy": - if e.complexity.ControlObjective.UpdatedBy == nil { + if e.ComplexityRoot.ControlObjective.UpdatedBy == nil { break } - return e.complexity.ControlObjective.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ControlObjective.UpdatedBy(childComplexity), true case "ControlObjective.viewers": - if e.complexity.ControlObjective.Viewers == nil { + if e.ComplexityRoot.ControlObjective.Viewers == nil { break } @@ -11796,311 +11779,311 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ControlObjective.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.ControlObjective.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ControlObjectiveBulkCreatePayload.controlObjectives": - if e.complexity.ControlObjectiveBulkCreatePayload.ControlObjectives == nil { + if e.ComplexityRoot.ControlObjectiveBulkCreatePayload.ControlObjectives == nil { break } - return e.complexity.ControlObjectiveBulkCreatePayload.ControlObjectives(childComplexity), true + return e.ComplexityRoot.ControlObjectiveBulkCreatePayload.ControlObjectives(childComplexity), true case "ControlObjectiveBulkDeletePayload.deletedIDs": - if e.complexity.ControlObjectiveBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ControlObjectiveBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ControlObjectiveBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ControlObjectiveBulkDeletePayload.DeletedIDs(childComplexity), true case "ControlObjectiveBulkUpdatePayload.controlObjectives": - if e.complexity.ControlObjectiveBulkUpdatePayload.ControlObjectives == nil { + if e.ComplexityRoot.ControlObjectiveBulkUpdatePayload.ControlObjectives == nil { break } - return e.complexity.ControlObjectiveBulkUpdatePayload.ControlObjectives(childComplexity), true + return e.ComplexityRoot.ControlObjectiveBulkUpdatePayload.ControlObjectives(childComplexity), true case "ControlObjectiveBulkUpdatePayload.updatedIDs": - if e.complexity.ControlObjectiveBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ControlObjectiveBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ControlObjectiveBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ControlObjectiveBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ControlObjectiveConnection.edges": - if e.complexity.ControlObjectiveConnection.Edges == nil { + if e.ComplexityRoot.ControlObjectiveConnection.Edges == nil { break } - return e.complexity.ControlObjectiveConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlObjectiveConnection.Edges(childComplexity), true case "ControlObjectiveConnection.pageInfo": - if e.complexity.ControlObjectiveConnection.PageInfo == nil { + if e.ComplexityRoot.ControlObjectiveConnection.PageInfo == nil { break } - return e.complexity.ControlObjectiveConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlObjectiveConnection.PageInfo(childComplexity), true case "ControlObjectiveConnection.totalCount": - if e.complexity.ControlObjectiveConnection.TotalCount == nil { + if e.ComplexityRoot.ControlObjectiveConnection.TotalCount == nil { break } - return e.complexity.ControlObjectiveConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ControlObjectiveConnection.TotalCount(childComplexity), true case "ControlObjectiveCreatePayload.controlObjective": - if e.complexity.ControlObjectiveCreatePayload.ControlObjective == nil { + if e.ComplexityRoot.ControlObjectiveCreatePayload.ControlObjective == nil { break } - return e.complexity.ControlObjectiveCreatePayload.ControlObjective(childComplexity), true + return e.ComplexityRoot.ControlObjectiveCreatePayload.ControlObjective(childComplexity), true case "ControlObjectiveDeletePayload.deletedID": - if e.complexity.ControlObjectiveDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ControlObjectiveDeletePayload.DeletedID == nil { break } - return e.complexity.ControlObjectiveDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ControlObjectiveDeletePayload.DeletedID(childComplexity), true case "ControlObjectiveEdge.cursor": - if e.complexity.ControlObjectiveEdge.Cursor == nil { + if e.ComplexityRoot.ControlObjectiveEdge.Cursor == nil { break } - return e.complexity.ControlObjectiveEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ControlObjectiveEdge.Cursor(childComplexity), true case "ControlObjectiveEdge.node": - if e.complexity.ControlObjectiveEdge.Node == nil { + if e.ComplexityRoot.ControlObjectiveEdge.Node == nil { break } - return e.complexity.ControlObjectiveEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlObjectiveEdge.Node(childComplexity), true case "ControlObjectiveUpdatePayload.controlObjective": - if e.complexity.ControlObjectiveUpdatePayload.ControlObjective == nil { + if e.ComplexityRoot.ControlObjectiveUpdatePayload.ControlObjective == nil { break } - return e.complexity.ControlObjectiveUpdatePayload.ControlObjective(childComplexity), true + return e.ComplexityRoot.ControlObjectiveUpdatePayload.ControlObjective(childComplexity), true case "ControlUpdatePayload.control": - if e.complexity.ControlUpdatePayload.Control == nil { + if e.ComplexityRoot.ControlUpdatePayload.Control == nil { break } - return e.complexity.ControlUpdatePayload.Control(childComplexity), true + return e.ComplexityRoot.ControlUpdatePayload.Control(childComplexity), true case "CustomDomain.cnameRecord": - if e.complexity.CustomDomain.CnameRecord == nil { + if e.ComplexityRoot.CustomDomain.CnameRecord == nil { break } - return e.complexity.CustomDomain.CnameRecord(childComplexity), true + return e.ComplexityRoot.CustomDomain.CnameRecord(childComplexity), true case "CustomDomain.createdAt": - if e.complexity.CustomDomain.CreatedAt == nil { + if e.ComplexityRoot.CustomDomain.CreatedAt == nil { break } - return e.complexity.CustomDomain.CreatedAt(childComplexity), true + return e.ComplexityRoot.CustomDomain.CreatedAt(childComplexity), true case "CustomDomain.createdBy": - if e.complexity.CustomDomain.CreatedBy == nil { + if e.ComplexityRoot.CustomDomain.CreatedBy == nil { break } - return e.complexity.CustomDomain.CreatedBy(childComplexity), true + return e.ComplexityRoot.CustomDomain.CreatedBy(childComplexity), true case "CustomDomain.dnsVerification": - if e.complexity.CustomDomain.DNSVerification == nil { + if e.ComplexityRoot.CustomDomain.DNSVerification == nil { break } - return e.complexity.CustomDomain.DNSVerification(childComplexity), true + return e.ComplexityRoot.CustomDomain.DNSVerification(childComplexity), true case "CustomDomain.dnsVerificationID": - if e.complexity.CustomDomain.DNSVerificationID == nil { + if e.ComplexityRoot.CustomDomain.DNSVerificationID == nil { break } - return e.complexity.CustomDomain.DNSVerificationID(childComplexity), true + return e.ComplexityRoot.CustomDomain.DNSVerificationID(childComplexity), true case "CustomDomain.id": - if e.complexity.CustomDomain.ID == nil { + if e.ComplexityRoot.CustomDomain.ID == nil { break } - return e.complexity.CustomDomain.ID(childComplexity), true + return e.ComplexityRoot.CustomDomain.ID(childComplexity), true case "CustomDomain.internalNotes": - if e.complexity.CustomDomain.InternalNotes == nil { + if e.ComplexityRoot.CustomDomain.InternalNotes == nil { break } - return e.complexity.CustomDomain.InternalNotes(childComplexity), true + return e.ComplexityRoot.CustomDomain.InternalNotes(childComplexity), true case "CustomDomain.mappableDomain": - if e.complexity.CustomDomain.MappableDomain == nil { + if e.ComplexityRoot.CustomDomain.MappableDomain == nil { break } - return e.complexity.CustomDomain.MappableDomain(childComplexity), true + return e.ComplexityRoot.CustomDomain.MappableDomain(childComplexity), true case "CustomDomain.mappableDomainID": - if e.complexity.CustomDomain.MappableDomainID == nil { + if e.ComplexityRoot.CustomDomain.MappableDomainID == nil { break } - return e.complexity.CustomDomain.MappableDomainID(childComplexity), true + return e.ComplexityRoot.CustomDomain.MappableDomainID(childComplexity), true case "CustomDomain.owner": - if e.complexity.CustomDomain.Owner == nil { + if e.ComplexityRoot.CustomDomain.Owner == nil { break } - return e.complexity.CustomDomain.Owner(childComplexity), true + return e.ComplexityRoot.CustomDomain.Owner(childComplexity), true case "CustomDomain.ownerID": - if e.complexity.CustomDomain.OwnerID == nil { + if e.ComplexityRoot.CustomDomain.OwnerID == nil { break } - return e.complexity.CustomDomain.OwnerID(childComplexity), true + return e.ComplexityRoot.CustomDomain.OwnerID(childComplexity), true case "CustomDomain.systemInternalID": - if e.complexity.CustomDomain.SystemInternalID == nil { + if e.ComplexityRoot.CustomDomain.SystemInternalID == nil { break } - return e.complexity.CustomDomain.SystemInternalID(childComplexity), true + return e.ComplexityRoot.CustomDomain.SystemInternalID(childComplexity), true case "CustomDomain.systemOwned": - if e.complexity.CustomDomain.SystemOwned == nil { + if e.ComplexityRoot.CustomDomain.SystemOwned == nil { break } - return e.complexity.CustomDomain.SystemOwned(childComplexity), true + return e.ComplexityRoot.CustomDomain.SystemOwned(childComplexity), true case "CustomDomain.tags": - if e.complexity.CustomDomain.Tags == nil { + if e.ComplexityRoot.CustomDomain.Tags == nil { break } - return e.complexity.CustomDomain.Tags(childComplexity), true + return e.ComplexityRoot.CustomDomain.Tags(childComplexity), true case "CustomDomain.trustCenterID": - if e.complexity.CustomDomain.TrustCenterID == nil { + if e.ComplexityRoot.CustomDomain.TrustCenterID == nil { break } - return e.complexity.CustomDomain.TrustCenterID(childComplexity), true + return e.ComplexityRoot.CustomDomain.TrustCenterID(childComplexity), true case "CustomDomain.updatedAt": - if e.complexity.CustomDomain.UpdatedAt == nil { + if e.ComplexityRoot.CustomDomain.UpdatedAt == nil { break } - return e.complexity.CustomDomain.UpdatedAt(childComplexity), true + return e.ComplexityRoot.CustomDomain.UpdatedAt(childComplexity), true case "CustomDomain.updatedBy": - if e.complexity.CustomDomain.UpdatedBy == nil { + if e.ComplexityRoot.CustomDomain.UpdatedBy == nil { break } - return e.complexity.CustomDomain.UpdatedBy(childComplexity), true + return e.ComplexityRoot.CustomDomain.UpdatedBy(childComplexity), true case "CustomDomainBulkCreatePayload.customDomains": - if e.complexity.CustomDomainBulkCreatePayload.CustomDomains == nil { + if e.ComplexityRoot.CustomDomainBulkCreatePayload.CustomDomains == nil { break } - return e.complexity.CustomDomainBulkCreatePayload.CustomDomains(childComplexity), true + return e.ComplexityRoot.CustomDomainBulkCreatePayload.CustomDomains(childComplexity), true case "CustomDomainBulkDeletePayload.deletedIDs": - if e.complexity.CustomDomainBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.CustomDomainBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.CustomDomainBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.CustomDomainBulkDeletePayload.DeletedIDs(childComplexity), true case "CustomDomainBulkUpdatePayload.customDomains": - if e.complexity.CustomDomainBulkUpdatePayload.CustomDomains == nil { + if e.ComplexityRoot.CustomDomainBulkUpdatePayload.CustomDomains == nil { break } - return e.complexity.CustomDomainBulkUpdatePayload.CustomDomains(childComplexity), true + return e.ComplexityRoot.CustomDomainBulkUpdatePayload.CustomDomains(childComplexity), true case "CustomDomainBulkUpdatePayload.updatedIDs": - if e.complexity.CustomDomainBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.CustomDomainBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.CustomDomainBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.CustomDomainBulkUpdatePayload.UpdatedIDs(childComplexity), true case "CustomDomainConnection.edges": - if e.complexity.CustomDomainConnection.Edges == nil { + if e.ComplexityRoot.CustomDomainConnection.Edges == nil { break } - return e.complexity.CustomDomainConnection.Edges(childComplexity), true + return e.ComplexityRoot.CustomDomainConnection.Edges(childComplexity), true case "CustomDomainConnection.pageInfo": - if e.complexity.CustomDomainConnection.PageInfo == nil { + if e.ComplexityRoot.CustomDomainConnection.PageInfo == nil { break } - return e.complexity.CustomDomainConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.CustomDomainConnection.PageInfo(childComplexity), true case "CustomDomainConnection.totalCount": - if e.complexity.CustomDomainConnection.TotalCount == nil { + if e.ComplexityRoot.CustomDomainConnection.TotalCount == nil { break } - return e.complexity.CustomDomainConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.CustomDomainConnection.TotalCount(childComplexity), true case "CustomDomainCreatePayload.customDomain": - if e.complexity.CustomDomainCreatePayload.CustomDomain == nil { + if e.ComplexityRoot.CustomDomainCreatePayload.CustomDomain == nil { break } - return e.complexity.CustomDomainCreatePayload.CustomDomain(childComplexity), true + return e.ComplexityRoot.CustomDomainCreatePayload.CustomDomain(childComplexity), true case "CustomDomainDeletePayload.deletedID": - if e.complexity.CustomDomainDeletePayload.DeletedID == nil { + if e.ComplexityRoot.CustomDomainDeletePayload.DeletedID == nil { break } - return e.complexity.CustomDomainDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.CustomDomainDeletePayload.DeletedID(childComplexity), true case "CustomDomainEdge.cursor": - if e.complexity.CustomDomainEdge.Cursor == nil { + if e.ComplexityRoot.CustomDomainEdge.Cursor == nil { break } - return e.complexity.CustomDomainEdge.Cursor(childComplexity), true + return e.ComplexityRoot.CustomDomainEdge.Cursor(childComplexity), true case "CustomDomainEdge.node": - if e.complexity.CustomDomainEdge.Node == nil { + if e.ComplexityRoot.CustomDomainEdge.Node == nil { break } - return e.complexity.CustomDomainEdge.Node(childComplexity), true + return e.ComplexityRoot.CustomDomainEdge.Node(childComplexity), true case "CustomDomainUpdatePayload.customDomain": - if e.complexity.CustomDomainUpdatePayload.CustomDomain == nil { + if e.ComplexityRoot.CustomDomainUpdatePayload.CustomDomain == nil { break } - return e.complexity.CustomDomainUpdatePayload.CustomDomain(childComplexity), true + return e.ComplexityRoot.CustomDomainUpdatePayload.CustomDomain(childComplexity), true case "CustomDomainValidatePayload.customDomain": - if e.complexity.CustomDomainValidatePayload.CustomDomain == nil { + if e.ComplexityRoot.CustomDomainValidatePayload.CustomDomain == nil { break } - return e.complexity.CustomDomainValidatePayload.CustomDomain(childComplexity), true + return e.ComplexityRoot.CustomDomainValidatePayload.CustomDomain(childComplexity), true case "CustomTypeEnum.actionPlans": - if e.complexity.CustomTypeEnum.ActionPlans == nil { + if e.ComplexityRoot.CustomTypeEnum.ActionPlans == nil { break } @@ -12109,17 +12092,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "CustomTypeEnum.color": - if e.complexity.CustomTypeEnum.Color == nil { + if e.ComplexityRoot.CustomTypeEnum.Color == nil { break } - return e.complexity.CustomTypeEnum.Color(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.Color(childComplexity), true case "CustomTypeEnum.controls": - if e.complexity.CustomTypeEnum.Controls == nil { + if e.ComplexityRoot.CustomTypeEnum.Controls == nil { break } @@ -12128,59 +12111,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "CustomTypeEnum.createdAt": - if e.complexity.CustomTypeEnum.CreatedAt == nil { + if e.ComplexityRoot.CustomTypeEnum.CreatedAt == nil { break } - return e.complexity.CustomTypeEnum.CreatedAt(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.CreatedAt(childComplexity), true case "CustomTypeEnum.createdBy": - if e.complexity.CustomTypeEnum.CreatedBy == nil { + if e.ComplexityRoot.CustomTypeEnum.CreatedBy == nil { break } - return e.complexity.CustomTypeEnum.CreatedBy(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.CreatedBy(childComplexity), true case "CustomTypeEnum.description": - if e.complexity.CustomTypeEnum.Description == nil { + if e.ComplexityRoot.CustomTypeEnum.Description == nil { break } - return e.complexity.CustomTypeEnum.Description(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.Description(childComplexity), true case "CustomTypeEnum.field": - if e.complexity.CustomTypeEnum.Field == nil { + if e.ComplexityRoot.CustomTypeEnum.Field == nil { break } - return e.complexity.CustomTypeEnum.Field(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.Field(childComplexity), true case "CustomTypeEnum.id": - if e.complexity.CustomTypeEnum.ID == nil { + if e.ComplexityRoot.CustomTypeEnum.ID == nil { break } - return e.complexity.CustomTypeEnum.ID(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.ID(childComplexity), true case "CustomTypeEnum.icon": - if e.complexity.CustomTypeEnum.Icon == nil { + if e.ComplexityRoot.CustomTypeEnum.Icon == nil { break } - return e.complexity.CustomTypeEnum.Icon(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.Icon(childComplexity), true case "CustomTypeEnum.internalNotes": - if e.complexity.CustomTypeEnum.InternalNotes == nil { + if e.ComplexityRoot.CustomTypeEnum.InternalNotes == nil { break } - return e.complexity.CustomTypeEnum.InternalNotes(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.InternalNotes(childComplexity), true case "CustomTypeEnum.internalPolicies": - if e.complexity.CustomTypeEnum.InternalPolicies == nil { + if e.ComplexityRoot.CustomTypeEnum.InternalPolicies == nil { break } @@ -12189,38 +12172,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "CustomTypeEnum.name": - if e.complexity.CustomTypeEnum.Name == nil { + if e.ComplexityRoot.CustomTypeEnum.Name == nil { break } - return e.complexity.CustomTypeEnum.Name(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.Name(childComplexity), true case "CustomTypeEnum.objectType": - if e.complexity.CustomTypeEnum.ObjectType == nil { + if e.ComplexityRoot.CustomTypeEnum.ObjectType == nil { break } - return e.complexity.CustomTypeEnum.ObjectType(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.ObjectType(childComplexity), true case "CustomTypeEnum.owner": - if e.complexity.CustomTypeEnum.Owner == nil { + if e.ComplexityRoot.CustomTypeEnum.Owner == nil { break } - return e.complexity.CustomTypeEnum.Owner(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.Owner(childComplexity), true case "CustomTypeEnum.ownerID": - if e.complexity.CustomTypeEnum.OwnerID == nil { + if e.ComplexityRoot.CustomTypeEnum.OwnerID == nil { break } - return e.complexity.CustomTypeEnum.OwnerID(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.OwnerID(childComplexity), true case "CustomTypeEnum.platforms": - if e.complexity.CustomTypeEnum.Platforms == nil { + if e.ComplexityRoot.CustomTypeEnum.Platforms == nil { break } @@ -12229,10 +12212,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "CustomTypeEnum.procedures": - if e.complexity.CustomTypeEnum.Procedures == nil { + if e.ComplexityRoot.CustomTypeEnum.Procedures == nil { break } @@ -12241,10 +12224,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "CustomTypeEnum.programs": - if e.complexity.CustomTypeEnum.Programs == nil { + if e.ComplexityRoot.CustomTypeEnum.Programs == nil { break } @@ -12253,10 +12236,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "CustomTypeEnum.riskCategories": - if e.complexity.CustomTypeEnum.RiskCategories == nil { + if e.ComplexityRoot.CustomTypeEnum.RiskCategories == nil { break } @@ -12265,10 +12248,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.RiskCategories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.RiskCategories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "CustomTypeEnum.risks": - if e.complexity.CustomTypeEnum.Risks == nil { + if e.ComplexityRoot.CustomTypeEnum.Risks == nil { break } @@ -12277,10 +12260,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "CustomTypeEnum.subcontrols": - if e.complexity.CustomTypeEnum.Subcontrols == nil { + if e.ComplexityRoot.CustomTypeEnum.Subcontrols == nil { break } @@ -12289,24 +12272,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "CustomTypeEnum.systemInternalID": - if e.complexity.CustomTypeEnum.SystemInternalID == nil { + if e.ComplexityRoot.CustomTypeEnum.SystemInternalID == nil { break } - return e.complexity.CustomTypeEnum.SystemInternalID(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.SystemInternalID(childComplexity), true case "CustomTypeEnum.systemOwned": - if e.complexity.CustomTypeEnum.SystemOwned == nil { + if e.ComplexityRoot.CustomTypeEnum.SystemOwned == nil { break } - return e.complexity.CustomTypeEnum.SystemOwned(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.SystemOwned(childComplexity), true case "CustomTypeEnum.tasks": - if e.complexity.CustomTypeEnum.Tasks == nil { + if e.ComplexityRoot.CustomTypeEnum.Tasks == nil { break } @@ -12315,129 +12298,129 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.CustomTypeEnum.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.CustomTypeEnum.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "CustomTypeEnum.updatedAt": - if e.complexity.CustomTypeEnum.UpdatedAt == nil { + if e.ComplexityRoot.CustomTypeEnum.UpdatedAt == nil { break } - return e.complexity.CustomTypeEnum.UpdatedAt(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.UpdatedAt(childComplexity), true case "CustomTypeEnum.updatedBy": - if e.complexity.CustomTypeEnum.UpdatedBy == nil { + if e.ComplexityRoot.CustomTypeEnum.UpdatedBy == nil { break } - return e.complexity.CustomTypeEnum.UpdatedBy(childComplexity), true + return e.ComplexityRoot.CustomTypeEnum.UpdatedBy(childComplexity), true case "CustomTypeEnumBulkCreatePayload.customTypeEnums": - if e.complexity.CustomTypeEnumBulkCreatePayload.CustomTypeEnums == nil { + if e.ComplexityRoot.CustomTypeEnumBulkCreatePayload.CustomTypeEnums == nil { break } - return e.complexity.CustomTypeEnumBulkCreatePayload.CustomTypeEnums(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumBulkCreatePayload.CustomTypeEnums(childComplexity), true case "CustomTypeEnumConnection.edges": - if e.complexity.CustomTypeEnumConnection.Edges == nil { + if e.ComplexityRoot.CustomTypeEnumConnection.Edges == nil { break } - return e.complexity.CustomTypeEnumConnection.Edges(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumConnection.Edges(childComplexity), true case "CustomTypeEnumConnection.pageInfo": - if e.complexity.CustomTypeEnumConnection.PageInfo == nil { + if e.ComplexityRoot.CustomTypeEnumConnection.PageInfo == nil { break } - return e.complexity.CustomTypeEnumConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumConnection.PageInfo(childComplexity), true case "CustomTypeEnumConnection.totalCount": - if e.complexity.CustomTypeEnumConnection.TotalCount == nil { + if e.ComplexityRoot.CustomTypeEnumConnection.TotalCount == nil { break } - return e.complexity.CustomTypeEnumConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumConnection.TotalCount(childComplexity), true case "CustomTypeEnumCreatePayload.customTypeEnum": - if e.complexity.CustomTypeEnumCreatePayload.CustomTypeEnum == nil { + if e.ComplexityRoot.CustomTypeEnumCreatePayload.CustomTypeEnum == nil { break } - return e.complexity.CustomTypeEnumCreatePayload.CustomTypeEnum(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumCreatePayload.CustomTypeEnum(childComplexity), true case "CustomTypeEnumDeletePayload.deletedID": - if e.complexity.CustomTypeEnumDeletePayload.DeletedID == nil { + if e.ComplexityRoot.CustomTypeEnumDeletePayload.DeletedID == nil { break } - return e.complexity.CustomTypeEnumDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumDeletePayload.DeletedID(childComplexity), true case "CustomTypeEnumEdge.cursor": - if e.complexity.CustomTypeEnumEdge.Cursor == nil { + if e.ComplexityRoot.CustomTypeEnumEdge.Cursor == nil { break } - return e.complexity.CustomTypeEnumEdge.Cursor(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumEdge.Cursor(childComplexity), true case "CustomTypeEnumEdge.node": - if e.complexity.CustomTypeEnumEdge.Node == nil { + if e.ComplexityRoot.CustomTypeEnumEdge.Node == nil { break } - return e.complexity.CustomTypeEnumEdge.Node(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumEdge.Node(childComplexity), true case "CustomTypeEnumUpdatePayload.customTypeEnum": - if e.complexity.CustomTypeEnumUpdatePayload.CustomTypeEnum == nil { + if e.ComplexityRoot.CustomTypeEnumUpdatePayload.CustomTypeEnum == nil { break } - return e.complexity.CustomTypeEnumUpdatePayload.CustomTypeEnum(childComplexity), true + return e.ComplexityRoot.CustomTypeEnumUpdatePayload.CustomTypeEnum(childComplexity), true case "DNSVerification.acmeChallengePath": - if e.complexity.DNSVerification.AcmeChallengePath == nil { + if e.ComplexityRoot.DNSVerification.AcmeChallengePath == nil { break } - return e.complexity.DNSVerification.AcmeChallengePath(childComplexity), true + return e.ComplexityRoot.DNSVerification.AcmeChallengePath(childComplexity), true case "DNSVerification.acmeChallengeStatus": - if e.complexity.DNSVerification.AcmeChallengeStatus == nil { + if e.ComplexityRoot.DNSVerification.AcmeChallengeStatus == nil { break } - return e.complexity.DNSVerification.AcmeChallengeStatus(childComplexity), true + return e.ComplexityRoot.DNSVerification.AcmeChallengeStatus(childComplexity), true case "DNSVerification.acmeChallengeStatusReason": - if e.complexity.DNSVerification.AcmeChallengeStatusReason == nil { + if e.ComplexityRoot.DNSVerification.AcmeChallengeStatusReason == nil { break } - return e.complexity.DNSVerification.AcmeChallengeStatusReason(childComplexity), true + return e.ComplexityRoot.DNSVerification.AcmeChallengeStatusReason(childComplexity), true case "DNSVerification.cloudflareHostnameID": - if e.complexity.DNSVerification.CloudflareHostnameID == nil { + if e.ComplexityRoot.DNSVerification.CloudflareHostnameID == nil { break } - return e.complexity.DNSVerification.CloudflareHostnameID(childComplexity), true + return e.ComplexityRoot.DNSVerification.CloudflareHostnameID(childComplexity), true case "DNSVerification.createdAt": - if e.complexity.DNSVerification.CreatedAt == nil { + if e.ComplexityRoot.DNSVerification.CreatedAt == nil { break } - return e.complexity.DNSVerification.CreatedAt(childComplexity), true + return e.ComplexityRoot.DNSVerification.CreatedAt(childComplexity), true case "DNSVerification.createdBy": - if e.complexity.DNSVerification.CreatedBy == nil { + if e.ComplexityRoot.DNSVerification.CreatedBy == nil { break } - return e.complexity.DNSVerification.CreatedBy(childComplexity), true + return e.ComplexityRoot.DNSVerification.CreatedBy(childComplexity), true case "DNSVerification.customDomains": - if e.complexity.DNSVerification.CustomDomains == nil { + if e.ComplexityRoot.DNSVerification.CustomDomains == nil { break } @@ -12446,304 +12429,304 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DNSVerification.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true + return e.ComplexityRoot.DNSVerification.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true case "DNSVerification.dnsTxtRecord": - if e.complexity.DNSVerification.DNSTxtRecord == nil { + if e.ComplexityRoot.DNSVerification.DNSTxtRecord == nil { break } - return e.complexity.DNSVerification.DNSTxtRecord(childComplexity), true + return e.ComplexityRoot.DNSVerification.DNSTxtRecord(childComplexity), true case "DNSVerification.dnsTxtValue": - if e.complexity.DNSVerification.DNSTxtValue == nil { + if e.ComplexityRoot.DNSVerification.DNSTxtValue == nil { break } - return e.complexity.DNSVerification.DNSTxtValue(childComplexity), true + return e.ComplexityRoot.DNSVerification.DNSTxtValue(childComplexity), true case "DNSVerification.dnsVerificationStatus": - if e.complexity.DNSVerification.DNSVerificationStatus == nil { + if e.ComplexityRoot.DNSVerification.DNSVerificationStatus == nil { break } - return e.complexity.DNSVerification.DNSVerificationStatus(childComplexity), true + return e.ComplexityRoot.DNSVerification.DNSVerificationStatus(childComplexity), true case "DNSVerification.dnsVerificationStatusReason": - if e.complexity.DNSVerification.DNSVerificationStatusReason == nil { + if e.ComplexityRoot.DNSVerification.DNSVerificationStatusReason == nil { break } - return e.complexity.DNSVerification.DNSVerificationStatusReason(childComplexity), true + return e.ComplexityRoot.DNSVerification.DNSVerificationStatusReason(childComplexity), true case "DNSVerification.expectedAcmeChallengeValue": - if e.complexity.DNSVerification.ExpectedAcmeChallengeValue == nil { + if e.ComplexityRoot.DNSVerification.ExpectedAcmeChallengeValue == nil { break } - return e.complexity.DNSVerification.ExpectedAcmeChallengeValue(childComplexity), true + return e.ComplexityRoot.DNSVerification.ExpectedAcmeChallengeValue(childComplexity), true case "DNSVerification.id": - if e.complexity.DNSVerification.ID == nil { + if e.ComplexityRoot.DNSVerification.ID == nil { break } - return e.complexity.DNSVerification.ID(childComplexity), true + return e.ComplexityRoot.DNSVerification.ID(childComplexity), true case "DNSVerification.owner": - if e.complexity.DNSVerification.Owner == nil { + if e.ComplexityRoot.DNSVerification.Owner == nil { break } - return e.complexity.DNSVerification.Owner(childComplexity), true + return e.ComplexityRoot.DNSVerification.Owner(childComplexity), true case "DNSVerification.ownerID": - if e.complexity.DNSVerification.OwnerID == nil { + if e.ComplexityRoot.DNSVerification.OwnerID == nil { break } - return e.complexity.DNSVerification.OwnerID(childComplexity), true + return e.ComplexityRoot.DNSVerification.OwnerID(childComplexity), true case "DNSVerification.tags": - if e.complexity.DNSVerification.Tags == nil { + if e.ComplexityRoot.DNSVerification.Tags == nil { break } - return e.complexity.DNSVerification.Tags(childComplexity), true + return e.ComplexityRoot.DNSVerification.Tags(childComplexity), true case "DNSVerification.updatedAt": - if e.complexity.DNSVerification.UpdatedAt == nil { + if e.ComplexityRoot.DNSVerification.UpdatedAt == nil { break } - return e.complexity.DNSVerification.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DNSVerification.UpdatedAt(childComplexity), true case "DNSVerification.updatedBy": - if e.complexity.DNSVerification.UpdatedBy == nil { + if e.ComplexityRoot.DNSVerification.UpdatedBy == nil { break } - return e.complexity.DNSVerification.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DNSVerification.UpdatedBy(childComplexity), true case "DNSVerificationBulkCreatePayload.dnsVerifications": - if e.complexity.DNSVerificationBulkCreatePayload.DNSVerifications == nil { + if e.ComplexityRoot.DNSVerificationBulkCreatePayload.DNSVerifications == nil { break } - return e.complexity.DNSVerificationBulkCreatePayload.DNSVerifications(childComplexity), true + return e.ComplexityRoot.DNSVerificationBulkCreatePayload.DNSVerifications(childComplexity), true case "DNSVerificationBulkDeletePayload.deletedIDs": - if e.complexity.DNSVerificationBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.DNSVerificationBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.DNSVerificationBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.DNSVerificationBulkDeletePayload.DeletedIDs(childComplexity), true case "DNSVerificationBulkUpdatePayload.dnsVerifications": - if e.complexity.DNSVerificationBulkUpdatePayload.DNSVerifications == nil { + if e.ComplexityRoot.DNSVerificationBulkUpdatePayload.DNSVerifications == nil { break } - return e.complexity.DNSVerificationBulkUpdatePayload.DNSVerifications(childComplexity), true + return e.ComplexityRoot.DNSVerificationBulkUpdatePayload.DNSVerifications(childComplexity), true case "DNSVerificationBulkUpdatePayload.updatedIDs": - if e.complexity.DNSVerificationBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.DNSVerificationBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.DNSVerificationBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.DNSVerificationBulkUpdatePayload.UpdatedIDs(childComplexity), true case "DNSVerificationConnection.edges": - if e.complexity.DNSVerificationConnection.Edges == nil { + if e.ComplexityRoot.DNSVerificationConnection.Edges == nil { break } - return e.complexity.DNSVerificationConnection.Edges(childComplexity), true + return e.ComplexityRoot.DNSVerificationConnection.Edges(childComplexity), true case "DNSVerificationConnection.pageInfo": - if e.complexity.DNSVerificationConnection.PageInfo == nil { + if e.ComplexityRoot.DNSVerificationConnection.PageInfo == nil { break } - return e.complexity.DNSVerificationConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DNSVerificationConnection.PageInfo(childComplexity), true case "DNSVerificationConnection.totalCount": - if e.complexity.DNSVerificationConnection.TotalCount == nil { + if e.ComplexityRoot.DNSVerificationConnection.TotalCount == nil { break } - return e.complexity.DNSVerificationConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DNSVerificationConnection.TotalCount(childComplexity), true case "DNSVerificationCreatePayload.dnsVerification": - if e.complexity.DNSVerificationCreatePayload.DNSVerification == nil { + if e.ComplexityRoot.DNSVerificationCreatePayload.DNSVerification == nil { break } - return e.complexity.DNSVerificationCreatePayload.DNSVerification(childComplexity), true + return e.ComplexityRoot.DNSVerificationCreatePayload.DNSVerification(childComplexity), true case "DNSVerificationDeletePayload.deletedID": - if e.complexity.DNSVerificationDeletePayload.DeletedID == nil { + if e.ComplexityRoot.DNSVerificationDeletePayload.DeletedID == nil { break } - return e.complexity.DNSVerificationDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.DNSVerificationDeletePayload.DeletedID(childComplexity), true case "DNSVerificationEdge.cursor": - if e.complexity.DNSVerificationEdge.Cursor == nil { + if e.ComplexityRoot.DNSVerificationEdge.Cursor == nil { break } - return e.complexity.DNSVerificationEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DNSVerificationEdge.Cursor(childComplexity), true case "DNSVerificationEdge.node": - if e.complexity.DNSVerificationEdge.Node == nil { + if e.ComplexityRoot.DNSVerificationEdge.Node == nil { break } - return e.complexity.DNSVerificationEdge.Node(childComplexity), true + return e.ComplexityRoot.DNSVerificationEdge.Node(childComplexity), true case "DNSVerificationUpdatePayload.dnsVerification": - if e.complexity.DNSVerificationUpdatePayload.DNSVerification == nil { + if e.ComplexityRoot.DNSVerificationUpdatePayload.DNSVerification == nil { break } - return e.complexity.DNSVerificationUpdatePayload.DNSVerification(childComplexity), true + return e.ComplexityRoot.DNSVerificationUpdatePayload.DNSVerification(childComplexity), true case "DirectoryAccount.accountType": - if e.complexity.DirectoryAccount.AccountType == nil { + if e.ComplexityRoot.DirectoryAccount.AccountType == nil { break } - return e.complexity.DirectoryAccount.AccountType(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.AccountType(childComplexity), true case "DirectoryAccount.avatarFile": - if e.complexity.DirectoryAccount.AvatarFile == nil { + if e.ComplexityRoot.DirectoryAccount.AvatarFile == nil { break } - return e.complexity.DirectoryAccount.AvatarFile(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.AvatarFile(childComplexity), true case "DirectoryAccount.avatarLocalFileID": - if e.complexity.DirectoryAccount.AvatarLocalFileID == nil { + if e.ComplexityRoot.DirectoryAccount.AvatarLocalFileID == nil { break } - return e.complexity.DirectoryAccount.AvatarLocalFileID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.AvatarLocalFileID(childComplexity), true case "DirectoryAccount.avatarRemoteURL": - if e.complexity.DirectoryAccount.AvatarRemoteURL == nil { + if e.ComplexityRoot.DirectoryAccount.AvatarRemoteURL == nil { break } - return e.complexity.DirectoryAccount.AvatarRemoteURL(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.AvatarRemoteURL(childComplexity), true case "DirectoryAccount.avatarUpdatedAt": - if e.complexity.DirectoryAccount.AvatarUpdatedAt == nil { + if e.ComplexityRoot.DirectoryAccount.AvatarUpdatedAt == nil { break } - return e.complexity.DirectoryAccount.AvatarUpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.AvatarUpdatedAt(childComplexity), true case "DirectoryAccount.canonicalEmail": - if e.complexity.DirectoryAccount.CanonicalEmail == nil { + if e.ComplexityRoot.DirectoryAccount.CanonicalEmail == nil { break } - return e.complexity.DirectoryAccount.CanonicalEmail(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.CanonicalEmail(childComplexity), true case "DirectoryAccount.createdAt": - if e.complexity.DirectoryAccount.CreatedAt == nil { + if e.ComplexityRoot.DirectoryAccount.CreatedAt == nil { break } - return e.complexity.DirectoryAccount.CreatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.CreatedAt(childComplexity), true case "DirectoryAccount.createdBy": - if e.complexity.DirectoryAccount.CreatedBy == nil { + if e.ComplexityRoot.DirectoryAccount.CreatedBy == nil { break } - return e.complexity.DirectoryAccount.CreatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.CreatedBy(childComplexity), true case "DirectoryAccount.department": - if e.complexity.DirectoryAccount.Department == nil { + if e.ComplexityRoot.DirectoryAccount.Department == nil { break } - return e.complexity.DirectoryAccount.Department(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Department(childComplexity), true case "DirectoryAccount.directoryName": - if e.complexity.DirectoryAccount.DirectoryName == nil { + if e.ComplexityRoot.DirectoryAccount.DirectoryName == nil { break } - return e.complexity.DirectoryAccount.DirectoryName(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.DirectoryName(childComplexity), true case "DirectoryAccount.directorySyncRun": - if e.complexity.DirectoryAccount.DirectorySyncRun == nil { + if e.ComplexityRoot.DirectoryAccount.DirectorySyncRun == nil { break } - return e.complexity.DirectoryAccount.DirectorySyncRun(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.DirectorySyncRun(childComplexity), true case "DirectoryAccount.directorySyncRunID": - if e.complexity.DirectoryAccount.DirectorySyncRunID == nil { + if e.ComplexityRoot.DirectoryAccount.DirectorySyncRunID == nil { break } - return e.complexity.DirectoryAccount.DirectorySyncRunID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.DirectorySyncRunID(childComplexity), true case "DirectoryAccount.displayID": - if e.complexity.DirectoryAccount.DisplayID == nil { + if e.ComplexityRoot.DirectoryAccount.DisplayID == nil { break } - return e.complexity.DirectoryAccount.DisplayID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.DisplayID(childComplexity), true case "DirectoryAccount.displayName": - if e.complexity.DirectoryAccount.DisplayName == nil { + if e.ComplexityRoot.DirectoryAccount.DisplayName == nil { break } - return e.complexity.DirectoryAccount.DisplayName(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.DisplayName(childComplexity), true case "DirectoryAccount.environment": - if e.complexity.DirectoryAccount.Environment == nil { + if e.ComplexityRoot.DirectoryAccount.Environment == nil { break } - return e.complexity.DirectoryAccount.Environment(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Environment(childComplexity), true case "DirectoryAccount.environmentID": - if e.complexity.DirectoryAccount.EnvironmentID == nil { + if e.ComplexityRoot.DirectoryAccount.EnvironmentID == nil { break } - return e.complexity.DirectoryAccount.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.EnvironmentID(childComplexity), true case "DirectoryAccount.environmentName": - if e.complexity.DirectoryAccount.EnvironmentName == nil { + if e.ComplexityRoot.DirectoryAccount.EnvironmentName == nil { break } - return e.complexity.DirectoryAccount.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.EnvironmentName(childComplexity), true case "DirectoryAccount.externalID": - if e.complexity.DirectoryAccount.ExternalID == nil { + if e.ComplexityRoot.DirectoryAccount.ExternalID == nil { break } - return e.complexity.DirectoryAccount.ExternalID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.ExternalID(childComplexity), true case "DirectoryAccount.familyName": - if e.complexity.DirectoryAccount.FamilyName == nil { + if e.ComplexityRoot.DirectoryAccount.FamilyName == nil { break } - return e.complexity.DirectoryAccount.FamilyName(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.FamilyName(childComplexity), true case "DirectoryAccount.findings": - if e.complexity.DirectoryAccount.Findings == nil { + if e.ComplexityRoot.DirectoryAccount.Findings == nil { break } @@ -12752,17 +12735,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryAccount.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.DirectoryAccount.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "DirectoryAccount.givenName": - if e.complexity.DirectoryAccount.GivenName == nil { + if e.ComplexityRoot.DirectoryAccount.GivenName == nil { break } - return e.complexity.DirectoryAccount.GivenName(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.GivenName(childComplexity), true case "DirectoryAccount.groups": - if e.complexity.DirectoryAccount.Groups == nil { + if e.ComplexityRoot.DirectoryAccount.Groups == nil { break } @@ -12771,66 +12754,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryAccount.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true + return e.ComplexityRoot.DirectoryAccount.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true case "DirectoryAccount.id": - if e.complexity.DirectoryAccount.ID == nil { + if e.ComplexityRoot.DirectoryAccount.ID == nil { break } - return e.complexity.DirectoryAccount.ID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.ID(childComplexity), true case "DirectoryAccount.identityHolder": - if e.complexity.DirectoryAccount.IdentityHolder == nil { + if e.ComplexityRoot.DirectoryAccount.IdentityHolder == nil { break } - return e.complexity.DirectoryAccount.IdentityHolder(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.IdentityHolder(childComplexity), true case "DirectoryAccount.identityHolderID": - if e.complexity.DirectoryAccount.IdentityHolderID == nil { + if e.ComplexityRoot.DirectoryAccount.IdentityHolderID == nil { break } - return e.complexity.DirectoryAccount.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.IdentityHolderID(childComplexity), true case "DirectoryAccount.integration": - if e.complexity.DirectoryAccount.Integration == nil { + if e.ComplexityRoot.DirectoryAccount.Integration == nil { break } - return e.complexity.DirectoryAccount.Integration(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Integration(childComplexity), true case "DirectoryAccount.integrationID": - if e.complexity.DirectoryAccount.IntegrationID == nil { + if e.ComplexityRoot.DirectoryAccount.IntegrationID == nil { break } - return e.complexity.DirectoryAccount.IntegrationID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.IntegrationID(childComplexity), true case "DirectoryAccount.jobTitle": - if e.complexity.DirectoryAccount.JobTitle == nil { + if e.ComplexityRoot.DirectoryAccount.JobTitle == nil { break } - return e.complexity.DirectoryAccount.JobTitle(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.JobTitle(childComplexity), true case "DirectoryAccount.lastLoginAt": - if e.complexity.DirectoryAccount.LastLoginAt == nil { + if e.ComplexityRoot.DirectoryAccount.LastLoginAt == nil { break } - return e.complexity.DirectoryAccount.LastLoginAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.LastLoginAt(childComplexity), true case "DirectoryAccount.lastSeenIP": - if e.complexity.DirectoryAccount.LastSeenIP == nil { + if e.ComplexityRoot.DirectoryAccount.LastSeenIP == nil { break } - return e.complexity.DirectoryAccount.LastSeenIP(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.LastSeenIP(childComplexity), true case "DirectoryAccount.memberships": - if e.complexity.DirectoryAccount.Memberships == nil { + if e.ComplexityRoot.DirectoryAccount.Memberships == nil { break } @@ -12839,143 +12822,143 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryAccount.Memberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true + return e.ComplexityRoot.DirectoryAccount.Memberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true case "DirectoryAccount.mfaState": - if e.complexity.DirectoryAccount.MfaState == nil { + if e.ComplexityRoot.DirectoryAccount.MfaState == nil { break } - return e.complexity.DirectoryAccount.MfaState(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.MfaState(childComplexity), true case "DirectoryAccount.observedAt": - if e.complexity.DirectoryAccount.ObservedAt == nil { + if e.ComplexityRoot.DirectoryAccount.ObservedAt == nil { break } - return e.complexity.DirectoryAccount.ObservedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.ObservedAt(childComplexity), true case "DirectoryAccount.organizationUnit": - if e.complexity.DirectoryAccount.OrganizationUnit == nil { + if e.ComplexityRoot.DirectoryAccount.OrganizationUnit == nil { break } - return e.complexity.DirectoryAccount.OrganizationUnit(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.OrganizationUnit(childComplexity), true case "DirectoryAccount.owner": - if e.complexity.DirectoryAccount.Owner == nil { + if e.ComplexityRoot.DirectoryAccount.Owner == nil { break } - return e.complexity.DirectoryAccount.Owner(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Owner(childComplexity), true case "DirectoryAccount.ownerID": - if e.complexity.DirectoryAccount.OwnerID == nil { + if e.ComplexityRoot.DirectoryAccount.OwnerID == nil { break } - return e.complexity.DirectoryAccount.OwnerID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.OwnerID(childComplexity), true case "DirectoryAccount.platform": - if e.complexity.DirectoryAccount.Platform == nil { + if e.ComplexityRoot.DirectoryAccount.Platform == nil { break } - return e.complexity.DirectoryAccount.Platform(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Platform(childComplexity), true case "DirectoryAccount.platformID": - if e.complexity.DirectoryAccount.PlatformID == nil { + if e.ComplexityRoot.DirectoryAccount.PlatformID == nil { break } - return e.complexity.DirectoryAccount.PlatformID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.PlatformID(childComplexity), true case "DirectoryAccount.profile": - if e.complexity.DirectoryAccount.Profile == nil { + if e.ComplexityRoot.DirectoryAccount.Profile == nil { break } - return e.complexity.DirectoryAccount.Profile(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Profile(childComplexity), true case "DirectoryAccount.profileHash": - if e.complexity.DirectoryAccount.ProfileHash == nil { + if e.ComplexityRoot.DirectoryAccount.ProfileHash == nil { break } - return e.complexity.DirectoryAccount.ProfileHash(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.ProfileHash(childComplexity), true case "DirectoryAccount.rawProfileFileID": - if e.complexity.DirectoryAccount.RawProfileFileID == nil { + if e.ComplexityRoot.DirectoryAccount.RawProfileFileID == nil { break } - return e.complexity.DirectoryAccount.RawProfileFileID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.RawProfileFileID(childComplexity), true case "DirectoryAccount.scope": - if e.complexity.DirectoryAccount.Scope == nil { + if e.ComplexityRoot.DirectoryAccount.Scope == nil { break } - return e.complexity.DirectoryAccount.Scope(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Scope(childComplexity), true case "DirectoryAccount.scopeID": - if e.complexity.DirectoryAccount.ScopeID == nil { + if e.ComplexityRoot.DirectoryAccount.ScopeID == nil { break } - return e.complexity.DirectoryAccount.ScopeID(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.ScopeID(childComplexity), true case "DirectoryAccount.scopeName": - if e.complexity.DirectoryAccount.ScopeName == nil { + if e.ComplexityRoot.DirectoryAccount.ScopeName == nil { break } - return e.complexity.DirectoryAccount.ScopeName(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.ScopeName(childComplexity), true case "DirectoryAccount.secondaryKey": - if e.complexity.DirectoryAccount.SecondaryKey == nil { + if e.ComplexityRoot.DirectoryAccount.SecondaryKey == nil { break } - return e.complexity.DirectoryAccount.SecondaryKey(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.SecondaryKey(childComplexity), true case "DirectoryAccount.sourceVersion": - if e.complexity.DirectoryAccount.SourceVersion == nil { + if e.ComplexityRoot.DirectoryAccount.SourceVersion == nil { break } - return e.complexity.DirectoryAccount.SourceVersion(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.SourceVersion(childComplexity), true case "DirectoryAccount.status": - if e.complexity.DirectoryAccount.Status == nil { + if e.ComplexityRoot.DirectoryAccount.Status == nil { break } - return e.complexity.DirectoryAccount.Status(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Status(childComplexity), true case "DirectoryAccount.tags": - if e.complexity.DirectoryAccount.Tags == nil { + if e.ComplexityRoot.DirectoryAccount.Tags == nil { break } - return e.complexity.DirectoryAccount.Tags(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.Tags(childComplexity), true case "DirectoryAccount.updatedAt": - if e.complexity.DirectoryAccount.UpdatedAt == nil { + if e.ComplexityRoot.DirectoryAccount.UpdatedAt == nil { break } - return e.complexity.DirectoryAccount.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.UpdatedAt(childComplexity), true case "DirectoryAccount.updatedBy": - if e.complexity.DirectoryAccount.UpdatedBy == nil { + if e.ComplexityRoot.DirectoryAccount.UpdatedBy == nil { break } - return e.complexity.DirectoryAccount.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryAccount.UpdatedBy(childComplexity), true case "DirectoryAccount.workflowObjectRefs": - if e.complexity.DirectoryAccount.WorkflowObjectRefs == nil { + if e.ComplexityRoot.DirectoryAccount.WorkflowObjectRefs == nil { break } @@ -12984,73 +12967,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryAccount.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.DirectoryAccount.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "DirectoryAccountBulkCreatePayload.directoryAccounts": - if e.complexity.DirectoryAccountBulkCreatePayload.DirectoryAccounts == nil { + if e.ComplexityRoot.DirectoryAccountBulkCreatePayload.DirectoryAccounts == nil { break } - return e.complexity.DirectoryAccountBulkCreatePayload.DirectoryAccounts(childComplexity), true + return e.ComplexityRoot.DirectoryAccountBulkCreatePayload.DirectoryAccounts(childComplexity), true case "DirectoryAccountConnection.edges": - if e.complexity.DirectoryAccountConnection.Edges == nil { + if e.ComplexityRoot.DirectoryAccountConnection.Edges == nil { break } - return e.complexity.DirectoryAccountConnection.Edges(childComplexity), true + return e.ComplexityRoot.DirectoryAccountConnection.Edges(childComplexity), true case "DirectoryAccountConnection.pageInfo": - if e.complexity.DirectoryAccountConnection.PageInfo == nil { + if e.ComplexityRoot.DirectoryAccountConnection.PageInfo == nil { break } - return e.complexity.DirectoryAccountConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DirectoryAccountConnection.PageInfo(childComplexity), true case "DirectoryAccountConnection.totalCount": - if e.complexity.DirectoryAccountConnection.TotalCount == nil { + if e.ComplexityRoot.DirectoryAccountConnection.TotalCount == nil { break } - return e.complexity.DirectoryAccountConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DirectoryAccountConnection.TotalCount(childComplexity), true case "DirectoryAccountCreatePayload.directoryAccount": - if e.complexity.DirectoryAccountCreatePayload.DirectoryAccount == nil { + if e.ComplexityRoot.DirectoryAccountCreatePayload.DirectoryAccount == nil { break } - return e.complexity.DirectoryAccountCreatePayload.DirectoryAccount(childComplexity), true + return e.ComplexityRoot.DirectoryAccountCreatePayload.DirectoryAccount(childComplexity), true case "DirectoryAccountDeletePayload.deletedID": - if e.complexity.DirectoryAccountDeletePayload.DeletedID == nil { + if e.ComplexityRoot.DirectoryAccountDeletePayload.DeletedID == nil { break } - return e.complexity.DirectoryAccountDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountDeletePayload.DeletedID(childComplexity), true case "DirectoryAccountEdge.cursor": - if e.complexity.DirectoryAccountEdge.Cursor == nil { + if e.ComplexityRoot.DirectoryAccountEdge.Cursor == nil { break } - return e.complexity.DirectoryAccountEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DirectoryAccountEdge.Cursor(childComplexity), true case "DirectoryAccountEdge.node": - if e.complexity.DirectoryAccountEdge.Node == nil { + if e.ComplexityRoot.DirectoryAccountEdge.Node == nil { break } - return e.complexity.DirectoryAccountEdge.Node(childComplexity), true + return e.ComplexityRoot.DirectoryAccountEdge.Node(childComplexity), true case "DirectoryAccountUpdatePayload.directoryAccount": - if e.complexity.DirectoryAccountUpdatePayload.DirectoryAccount == nil { + if e.ComplexityRoot.DirectoryAccountUpdatePayload.DirectoryAccount == nil { break } - return e.complexity.DirectoryAccountUpdatePayload.DirectoryAccount(childComplexity), true + return e.ComplexityRoot.DirectoryAccountUpdatePayload.DirectoryAccount(childComplexity), true case "DirectoryGroup.accounts": - if e.complexity.DirectoryGroup.Accounts == nil { + if e.ComplexityRoot.DirectoryGroup.Accounts == nil { break } @@ -13059,136 +13042,136 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryGroup.Accounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.DirectoryGroup.Accounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "DirectoryGroup.classification": - if e.complexity.DirectoryGroup.Classification == nil { + if e.ComplexityRoot.DirectoryGroup.Classification == nil { break } - return e.complexity.DirectoryGroup.Classification(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Classification(childComplexity), true case "DirectoryGroup.createdAt": - if e.complexity.DirectoryGroup.CreatedAt == nil { + if e.ComplexityRoot.DirectoryGroup.CreatedAt == nil { break } - return e.complexity.DirectoryGroup.CreatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.CreatedAt(childComplexity), true case "DirectoryGroup.createdBy": - if e.complexity.DirectoryGroup.CreatedBy == nil { + if e.ComplexityRoot.DirectoryGroup.CreatedBy == nil { break } - return e.complexity.DirectoryGroup.CreatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.CreatedBy(childComplexity), true case "DirectoryGroup.description": - if e.complexity.DirectoryGroup.Description == nil { + if e.ComplexityRoot.DirectoryGroup.Description == nil { break } - return e.complexity.DirectoryGroup.Description(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Description(childComplexity), true case "DirectoryGroup.directorySyncRun": - if e.complexity.DirectoryGroup.DirectorySyncRun == nil { + if e.ComplexityRoot.DirectoryGroup.DirectorySyncRun == nil { break } - return e.complexity.DirectoryGroup.DirectorySyncRun(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.DirectorySyncRun(childComplexity), true case "DirectoryGroup.directorySyncRunID": - if e.complexity.DirectoryGroup.DirectorySyncRunID == nil { + if e.ComplexityRoot.DirectoryGroup.DirectorySyncRunID == nil { break } - return e.complexity.DirectoryGroup.DirectorySyncRunID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.DirectorySyncRunID(childComplexity), true case "DirectoryGroup.displayID": - if e.complexity.DirectoryGroup.DisplayID == nil { + if e.ComplexityRoot.DirectoryGroup.DisplayID == nil { break } - return e.complexity.DirectoryGroup.DisplayID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.DisplayID(childComplexity), true case "DirectoryGroup.displayName": - if e.complexity.DirectoryGroup.DisplayName == nil { + if e.ComplexityRoot.DirectoryGroup.DisplayName == nil { break } - return e.complexity.DirectoryGroup.DisplayName(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.DisplayName(childComplexity), true case "DirectoryGroup.email": - if e.complexity.DirectoryGroup.Email == nil { + if e.ComplexityRoot.DirectoryGroup.Email == nil { break } - return e.complexity.DirectoryGroup.Email(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Email(childComplexity), true case "DirectoryGroup.environment": - if e.complexity.DirectoryGroup.Environment == nil { + if e.ComplexityRoot.DirectoryGroup.Environment == nil { break } - return e.complexity.DirectoryGroup.Environment(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Environment(childComplexity), true case "DirectoryGroup.environmentID": - if e.complexity.DirectoryGroup.EnvironmentID == nil { + if e.ComplexityRoot.DirectoryGroup.EnvironmentID == nil { break } - return e.complexity.DirectoryGroup.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.EnvironmentID(childComplexity), true case "DirectoryGroup.environmentName": - if e.complexity.DirectoryGroup.EnvironmentName == nil { + if e.ComplexityRoot.DirectoryGroup.EnvironmentName == nil { break } - return e.complexity.DirectoryGroup.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.EnvironmentName(childComplexity), true case "DirectoryGroup.externalID": - if e.complexity.DirectoryGroup.ExternalID == nil { + if e.ComplexityRoot.DirectoryGroup.ExternalID == nil { break } - return e.complexity.DirectoryGroup.ExternalID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.ExternalID(childComplexity), true case "DirectoryGroup.externalSharingAllowed": - if e.complexity.DirectoryGroup.ExternalSharingAllowed == nil { + if e.ComplexityRoot.DirectoryGroup.ExternalSharingAllowed == nil { break } - return e.complexity.DirectoryGroup.ExternalSharingAllowed(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.ExternalSharingAllowed(childComplexity), true case "DirectoryGroup.id": - if e.complexity.DirectoryGroup.ID == nil { + if e.ComplexityRoot.DirectoryGroup.ID == nil { break } - return e.complexity.DirectoryGroup.ID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.ID(childComplexity), true case "DirectoryGroup.integration": - if e.complexity.DirectoryGroup.Integration == nil { + if e.ComplexityRoot.DirectoryGroup.Integration == nil { break } - return e.complexity.DirectoryGroup.Integration(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Integration(childComplexity), true case "DirectoryGroup.integrationID": - if e.complexity.DirectoryGroup.IntegrationID == nil { + if e.ComplexityRoot.DirectoryGroup.IntegrationID == nil { break } - return e.complexity.DirectoryGroup.IntegrationID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.IntegrationID(childComplexity), true case "DirectoryGroup.memberCount": - if e.complexity.DirectoryGroup.MemberCount == nil { + if e.ComplexityRoot.DirectoryGroup.MemberCount == nil { break } - return e.complexity.DirectoryGroup.MemberCount(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.MemberCount(childComplexity), true case "DirectoryGroup.members": - if e.complexity.DirectoryGroup.Members == nil { + if e.ComplexityRoot.DirectoryGroup.Members == nil { break } @@ -13197,122 +13180,122 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryGroup.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true + return e.ComplexityRoot.DirectoryGroup.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true case "DirectoryGroup.observedAt": - if e.complexity.DirectoryGroup.ObservedAt == nil { + if e.ComplexityRoot.DirectoryGroup.ObservedAt == nil { break } - return e.complexity.DirectoryGroup.ObservedAt(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.ObservedAt(childComplexity), true case "DirectoryGroup.owner": - if e.complexity.DirectoryGroup.Owner == nil { + if e.ComplexityRoot.DirectoryGroup.Owner == nil { break } - return e.complexity.DirectoryGroup.Owner(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Owner(childComplexity), true case "DirectoryGroup.ownerID": - if e.complexity.DirectoryGroup.OwnerID == nil { + if e.ComplexityRoot.DirectoryGroup.OwnerID == nil { break } - return e.complexity.DirectoryGroup.OwnerID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.OwnerID(childComplexity), true case "DirectoryGroup.platform": - if e.complexity.DirectoryGroup.Platform == nil { + if e.ComplexityRoot.DirectoryGroup.Platform == nil { break } - return e.complexity.DirectoryGroup.Platform(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Platform(childComplexity), true case "DirectoryGroup.platformID": - if e.complexity.DirectoryGroup.PlatformID == nil { + if e.ComplexityRoot.DirectoryGroup.PlatformID == nil { break } - return e.complexity.DirectoryGroup.PlatformID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.PlatformID(childComplexity), true case "DirectoryGroup.profile": - if e.complexity.DirectoryGroup.Profile == nil { + if e.ComplexityRoot.DirectoryGroup.Profile == nil { break } - return e.complexity.DirectoryGroup.Profile(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Profile(childComplexity), true case "DirectoryGroup.profileHash": - if e.complexity.DirectoryGroup.ProfileHash == nil { + if e.ComplexityRoot.DirectoryGroup.ProfileHash == nil { break } - return e.complexity.DirectoryGroup.ProfileHash(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.ProfileHash(childComplexity), true case "DirectoryGroup.rawProfileFileID": - if e.complexity.DirectoryGroup.RawProfileFileID == nil { + if e.ComplexityRoot.DirectoryGroup.RawProfileFileID == nil { break } - return e.complexity.DirectoryGroup.RawProfileFileID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.RawProfileFileID(childComplexity), true case "DirectoryGroup.scope": - if e.complexity.DirectoryGroup.Scope == nil { + if e.ComplexityRoot.DirectoryGroup.Scope == nil { break } - return e.complexity.DirectoryGroup.Scope(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Scope(childComplexity), true case "DirectoryGroup.scopeID": - if e.complexity.DirectoryGroup.ScopeID == nil { + if e.ComplexityRoot.DirectoryGroup.ScopeID == nil { break } - return e.complexity.DirectoryGroup.ScopeID(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.ScopeID(childComplexity), true case "DirectoryGroup.scopeName": - if e.complexity.DirectoryGroup.ScopeName == nil { + if e.ComplexityRoot.DirectoryGroup.ScopeName == nil { break } - return e.complexity.DirectoryGroup.ScopeName(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.ScopeName(childComplexity), true case "DirectoryGroup.sourceVersion": - if e.complexity.DirectoryGroup.SourceVersion == nil { + if e.ComplexityRoot.DirectoryGroup.SourceVersion == nil { break } - return e.complexity.DirectoryGroup.SourceVersion(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.SourceVersion(childComplexity), true case "DirectoryGroup.status": - if e.complexity.DirectoryGroup.Status == nil { + if e.ComplexityRoot.DirectoryGroup.Status == nil { break } - return e.complexity.DirectoryGroup.Status(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Status(childComplexity), true case "DirectoryGroup.tags": - if e.complexity.DirectoryGroup.Tags == nil { + if e.ComplexityRoot.DirectoryGroup.Tags == nil { break } - return e.complexity.DirectoryGroup.Tags(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.Tags(childComplexity), true case "DirectoryGroup.updatedAt": - if e.complexity.DirectoryGroup.UpdatedAt == nil { + if e.ComplexityRoot.DirectoryGroup.UpdatedAt == nil { break } - return e.complexity.DirectoryGroup.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.UpdatedAt(childComplexity), true case "DirectoryGroup.updatedBy": - if e.complexity.DirectoryGroup.UpdatedBy == nil { + if e.ComplexityRoot.DirectoryGroup.UpdatedBy == nil { break } - return e.complexity.DirectoryGroup.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryGroup.UpdatedBy(childComplexity), true case "DirectoryGroup.workflowObjectRefs": - if e.complexity.DirectoryGroup.WorkflowObjectRefs == nil { + if e.ComplexityRoot.DirectoryGroup.WorkflowObjectRefs == nil { break } @@ -13321,157 +13304,157 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryGroup.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.DirectoryGroup.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "DirectoryGroupBulkCreatePayload.directoryGroups": - if e.complexity.DirectoryGroupBulkCreatePayload.DirectoryGroups == nil { + if e.ComplexityRoot.DirectoryGroupBulkCreatePayload.DirectoryGroups == nil { break } - return e.complexity.DirectoryGroupBulkCreatePayload.DirectoryGroups(childComplexity), true + return e.ComplexityRoot.DirectoryGroupBulkCreatePayload.DirectoryGroups(childComplexity), true case "DirectoryGroupConnection.edges": - if e.complexity.DirectoryGroupConnection.Edges == nil { + if e.ComplexityRoot.DirectoryGroupConnection.Edges == nil { break } - return e.complexity.DirectoryGroupConnection.Edges(childComplexity), true + return e.ComplexityRoot.DirectoryGroupConnection.Edges(childComplexity), true case "DirectoryGroupConnection.pageInfo": - if e.complexity.DirectoryGroupConnection.PageInfo == nil { + if e.ComplexityRoot.DirectoryGroupConnection.PageInfo == nil { break } - return e.complexity.DirectoryGroupConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DirectoryGroupConnection.PageInfo(childComplexity), true case "DirectoryGroupConnection.totalCount": - if e.complexity.DirectoryGroupConnection.TotalCount == nil { + if e.ComplexityRoot.DirectoryGroupConnection.TotalCount == nil { break } - return e.complexity.DirectoryGroupConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DirectoryGroupConnection.TotalCount(childComplexity), true case "DirectoryGroupCreatePayload.directoryGroup": - if e.complexity.DirectoryGroupCreatePayload.DirectoryGroup == nil { + if e.ComplexityRoot.DirectoryGroupCreatePayload.DirectoryGroup == nil { break } - return e.complexity.DirectoryGroupCreatePayload.DirectoryGroup(childComplexity), true + return e.ComplexityRoot.DirectoryGroupCreatePayload.DirectoryGroup(childComplexity), true case "DirectoryGroupDeletePayload.deletedID": - if e.complexity.DirectoryGroupDeletePayload.DeletedID == nil { + if e.ComplexityRoot.DirectoryGroupDeletePayload.DeletedID == nil { break } - return e.complexity.DirectoryGroupDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupDeletePayload.DeletedID(childComplexity), true case "DirectoryGroupEdge.cursor": - if e.complexity.DirectoryGroupEdge.Cursor == nil { + if e.ComplexityRoot.DirectoryGroupEdge.Cursor == nil { break } - return e.complexity.DirectoryGroupEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DirectoryGroupEdge.Cursor(childComplexity), true case "DirectoryGroupEdge.node": - if e.complexity.DirectoryGroupEdge.Node == nil { + if e.ComplexityRoot.DirectoryGroupEdge.Node == nil { break } - return e.complexity.DirectoryGroupEdge.Node(childComplexity), true + return e.ComplexityRoot.DirectoryGroupEdge.Node(childComplexity), true case "DirectoryGroupUpdatePayload.directoryGroup": - if e.complexity.DirectoryGroupUpdatePayload.DirectoryGroup == nil { + if e.ComplexityRoot.DirectoryGroupUpdatePayload.DirectoryGroup == nil { break } - return e.complexity.DirectoryGroupUpdatePayload.DirectoryGroup(childComplexity), true + return e.ComplexityRoot.DirectoryGroupUpdatePayload.DirectoryGroup(childComplexity), true case "DirectoryMembership.createdAt": - if e.complexity.DirectoryMembership.CreatedAt == nil { + if e.ComplexityRoot.DirectoryMembership.CreatedAt == nil { break } - return e.complexity.DirectoryMembership.CreatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.CreatedAt(childComplexity), true case "DirectoryMembership.createdBy": - if e.complexity.DirectoryMembership.CreatedBy == nil { + if e.ComplexityRoot.DirectoryMembership.CreatedBy == nil { break } - return e.complexity.DirectoryMembership.CreatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.CreatedBy(childComplexity), true case "DirectoryMembership.directoryAccount": - if e.complexity.DirectoryMembership.DirectoryAccount == nil { + if e.ComplexityRoot.DirectoryMembership.DirectoryAccount == nil { break } - return e.complexity.DirectoryMembership.DirectoryAccount(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.DirectoryAccount(childComplexity), true case "DirectoryMembership.directoryAccountID": - if e.complexity.DirectoryMembership.DirectoryAccountID == nil { + if e.ComplexityRoot.DirectoryMembership.DirectoryAccountID == nil { break } - return e.complexity.DirectoryMembership.DirectoryAccountID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.DirectoryAccountID(childComplexity), true case "DirectoryMembership.directoryGroup": - if e.complexity.DirectoryMembership.DirectoryGroup == nil { + if e.ComplexityRoot.DirectoryMembership.DirectoryGroup == nil { break } - return e.complexity.DirectoryMembership.DirectoryGroup(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.DirectoryGroup(childComplexity), true case "DirectoryMembership.directoryGroupID": - if e.complexity.DirectoryMembership.DirectoryGroupID == nil { + if e.ComplexityRoot.DirectoryMembership.DirectoryGroupID == nil { break } - return e.complexity.DirectoryMembership.DirectoryGroupID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.DirectoryGroupID(childComplexity), true case "DirectoryMembership.directorySyncRun": - if e.complexity.DirectoryMembership.DirectorySyncRun == nil { + if e.ComplexityRoot.DirectoryMembership.DirectorySyncRun == nil { break } - return e.complexity.DirectoryMembership.DirectorySyncRun(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.DirectorySyncRun(childComplexity), true case "DirectoryMembership.directorySyncRunID": - if e.complexity.DirectoryMembership.DirectorySyncRunID == nil { + if e.ComplexityRoot.DirectoryMembership.DirectorySyncRunID == nil { break } - return e.complexity.DirectoryMembership.DirectorySyncRunID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.DirectorySyncRunID(childComplexity), true case "DirectoryMembership.displayID": - if e.complexity.DirectoryMembership.DisplayID == nil { + if e.ComplexityRoot.DirectoryMembership.DisplayID == nil { break } - return e.complexity.DirectoryMembership.DisplayID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.DisplayID(childComplexity), true case "DirectoryMembership.environment": - if e.complexity.DirectoryMembership.Environment == nil { + if e.ComplexityRoot.DirectoryMembership.Environment == nil { break } - return e.complexity.DirectoryMembership.Environment(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Environment(childComplexity), true case "DirectoryMembership.environmentID": - if e.complexity.DirectoryMembership.EnvironmentID == nil { + if e.ComplexityRoot.DirectoryMembership.EnvironmentID == nil { break } - return e.complexity.DirectoryMembership.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.EnvironmentID(childComplexity), true case "DirectoryMembership.environmentName": - if e.complexity.DirectoryMembership.EnvironmentName == nil { + if e.ComplexityRoot.DirectoryMembership.EnvironmentName == nil { break } - return e.complexity.DirectoryMembership.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.EnvironmentName(childComplexity), true case "DirectoryMembership.events": - if e.complexity.DirectoryMembership.Events == nil { + if e.ComplexityRoot.DirectoryMembership.Events == nil { break } @@ -13480,143 +13463,143 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryMembership.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.DirectoryMembership.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "DirectoryMembership.firstSeenAt": - if e.complexity.DirectoryMembership.FirstSeenAt == nil { + if e.ComplexityRoot.DirectoryMembership.FirstSeenAt == nil { break } - return e.complexity.DirectoryMembership.FirstSeenAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.FirstSeenAt(childComplexity), true case "DirectoryMembership.id": - if e.complexity.DirectoryMembership.ID == nil { + if e.ComplexityRoot.DirectoryMembership.ID == nil { break } - return e.complexity.DirectoryMembership.ID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.ID(childComplexity), true case "DirectoryMembership.integration": - if e.complexity.DirectoryMembership.Integration == nil { + if e.ComplexityRoot.DirectoryMembership.Integration == nil { break } - return e.complexity.DirectoryMembership.Integration(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Integration(childComplexity), true case "DirectoryMembership.integrationID": - if e.complexity.DirectoryMembership.IntegrationID == nil { + if e.ComplexityRoot.DirectoryMembership.IntegrationID == nil { break } - return e.complexity.DirectoryMembership.IntegrationID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.IntegrationID(childComplexity), true case "DirectoryMembership.lastConfirmedRunID": - if e.complexity.DirectoryMembership.LastConfirmedRunID == nil { + if e.ComplexityRoot.DirectoryMembership.LastConfirmedRunID == nil { break } - return e.complexity.DirectoryMembership.LastConfirmedRunID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.LastConfirmedRunID(childComplexity), true case "DirectoryMembership.lastSeenAt": - if e.complexity.DirectoryMembership.LastSeenAt == nil { + if e.ComplexityRoot.DirectoryMembership.LastSeenAt == nil { break } - return e.complexity.DirectoryMembership.LastSeenAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.LastSeenAt(childComplexity), true case "DirectoryMembership.metadata": - if e.complexity.DirectoryMembership.Metadata == nil { + if e.ComplexityRoot.DirectoryMembership.Metadata == nil { break } - return e.complexity.DirectoryMembership.Metadata(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Metadata(childComplexity), true case "DirectoryMembership.observedAt": - if e.complexity.DirectoryMembership.ObservedAt == nil { + if e.ComplexityRoot.DirectoryMembership.ObservedAt == nil { break } - return e.complexity.DirectoryMembership.ObservedAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.ObservedAt(childComplexity), true case "DirectoryMembership.owner": - if e.complexity.DirectoryMembership.Owner == nil { + if e.ComplexityRoot.DirectoryMembership.Owner == nil { break } - return e.complexity.DirectoryMembership.Owner(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Owner(childComplexity), true case "DirectoryMembership.ownerID": - if e.complexity.DirectoryMembership.OwnerID == nil { + if e.ComplexityRoot.DirectoryMembership.OwnerID == nil { break } - return e.complexity.DirectoryMembership.OwnerID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.OwnerID(childComplexity), true case "DirectoryMembership.platform": - if e.complexity.DirectoryMembership.Platform == nil { + if e.ComplexityRoot.DirectoryMembership.Platform == nil { break } - return e.complexity.DirectoryMembership.Platform(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Platform(childComplexity), true case "DirectoryMembership.platformID": - if e.complexity.DirectoryMembership.PlatformID == nil { + if e.ComplexityRoot.DirectoryMembership.PlatformID == nil { break } - return e.complexity.DirectoryMembership.PlatformID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.PlatformID(childComplexity), true case "DirectoryMembership.role": - if e.complexity.DirectoryMembership.Role == nil { + if e.ComplexityRoot.DirectoryMembership.Role == nil { break } - return e.complexity.DirectoryMembership.Role(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Role(childComplexity), true case "DirectoryMembership.scope": - if e.complexity.DirectoryMembership.Scope == nil { + if e.ComplexityRoot.DirectoryMembership.Scope == nil { break } - return e.complexity.DirectoryMembership.Scope(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Scope(childComplexity), true case "DirectoryMembership.scopeID": - if e.complexity.DirectoryMembership.ScopeID == nil { + if e.ComplexityRoot.DirectoryMembership.ScopeID == nil { break } - return e.complexity.DirectoryMembership.ScopeID(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.ScopeID(childComplexity), true case "DirectoryMembership.scopeName": - if e.complexity.DirectoryMembership.ScopeName == nil { + if e.ComplexityRoot.DirectoryMembership.ScopeName == nil { break } - return e.complexity.DirectoryMembership.ScopeName(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.ScopeName(childComplexity), true case "DirectoryMembership.source": - if e.complexity.DirectoryMembership.Source == nil { + if e.ComplexityRoot.DirectoryMembership.Source == nil { break } - return e.complexity.DirectoryMembership.Source(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.Source(childComplexity), true case "DirectoryMembership.updatedAt": - if e.complexity.DirectoryMembership.UpdatedAt == nil { + if e.ComplexityRoot.DirectoryMembership.UpdatedAt == nil { break } - return e.complexity.DirectoryMembership.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.UpdatedAt(childComplexity), true case "DirectoryMembership.updatedBy": - if e.complexity.DirectoryMembership.UpdatedBy == nil { + if e.ComplexityRoot.DirectoryMembership.UpdatedBy == nil { break } - return e.complexity.DirectoryMembership.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryMembership.UpdatedBy(childComplexity), true case "DirectoryMembership.workflowObjectRefs": - if e.complexity.DirectoryMembership.WorkflowObjectRefs == nil { + if e.ComplexityRoot.DirectoryMembership.WorkflowObjectRefs == nil { break } @@ -13625,101 +13608,101 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectoryMembership.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.DirectoryMembership.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "DirectoryMembershipBulkCreatePayload.directoryMemberships": - if e.complexity.DirectoryMembershipBulkCreatePayload.DirectoryMemberships == nil { + if e.ComplexityRoot.DirectoryMembershipBulkCreatePayload.DirectoryMemberships == nil { break } - return e.complexity.DirectoryMembershipBulkCreatePayload.DirectoryMemberships(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipBulkCreatePayload.DirectoryMemberships(childComplexity), true case "DirectoryMembershipConnection.edges": - if e.complexity.DirectoryMembershipConnection.Edges == nil { + if e.ComplexityRoot.DirectoryMembershipConnection.Edges == nil { break } - return e.complexity.DirectoryMembershipConnection.Edges(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipConnection.Edges(childComplexity), true case "DirectoryMembershipConnection.pageInfo": - if e.complexity.DirectoryMembershipConnection.PageInfo == nil { + if e.ComplexityRoot.DirectoryMembershipConnection.PageInfo == nil { break } - return e.complexity.DirectoryMembershipConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipConnection.PageInfo(childComplexity), true case "DirectoryMembershipConnection.totalCount": - if e.complexity.DirectoryMembershipConnection.TotalCount == nil { + if e.ComplexityRoot.DirectoryMembershipConnection.TotalCount == nil { break } - return e.complexity.DirectoryMembershipConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipConnection.TotalCount(childComplexity), true case "DirectoryMembershipCreatePayload.directoryMembership": - if e.complexity.DirectoryMembershipCreatePayload.DirectoryMembership == nil { + if e.ComplexityRoot.DirectoryMembershipCreatePayload.DirectoryMembership == nil { break } - return e.complexity.DirectoryMembershipCreatePayload.DirectoryMembership(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipCreatePayload.DirectoryMembership(childComplexity), true case "DirectoryMembershipDeletePayload.deletedID": - if e.complexity.DirectoryMembershipDeletePayload.DeletedID == nil { + if e.ComplexityRoot.DirectoryMembershipDeletePayload.DeletedID == nil { break } - return e.complexity.DirectoryMembershipDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipDeletePayload.DeletedID(childComplexity), true case "DirectoryMembershipEdge.cursor": - if e.complexity.DirectoryMembershipEdge.Cursor == nil { + if e.ComplexityRoot.DirectoryMembershipEdge.Cursor == nil { break } - return e.complexity.DirectoryMembershipEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipEdge.Cursor(childComplexity), true case "DirectoryMembershipEdge.node": - if e.complexity.DirectoryMembershipEdge.Node == nil { + if e.ComplexityRoot.DirectoryMembershipEdge.Node == nil { break } - return e.complexity.DirectoryMembershipEdge.Node(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipEdge.Node(childComplexity), true case "DirectoryMembershipUpdatePayload.directoryMembership": - if e.complexity.DirectoryMembershipUpdatePayload.DirectoryMembership == nil { + if e.ComplexityRoot.DirectoryMembershipUpdatePayload.DirectoryMembership == nil { break } - return e.complexity.DirectoryMembershipUpdatePayload.DirectoryMembership(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipUpdatePayload.DirectoryMembership(childComplexity), true case "DirectorySyncRun.completedAt": - if e.complexity.DirectorySyncRun.CompletedAt == nil { + if e.ComplexityRoot.DirectorySyncRun.CompletedAt == nil { break } - return e.complexity.DirectorySyncRun.CompletedAt(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.CompletedAt(childComplexity), true case "DirectorySyncRun.createdAt": - if e.complexity.DirectorySyncRun.CreatedAt == nil { + if e.ComplexityRoot.DirectorySyncRun.CreatedAt == nil { break } - return e.complexity.DirectorySyncRun.CreatedAt(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.CreatedAt(childComplexity), true case "DirectorySyncRun.createdBy": - if e.complexity.DirectorySyncRun.CreatedBy == nil { + if e.ComplexityRoot.DirectorySyncRun.CreatedBy == nil { break } - return e.complexity.DirectorySyncRun.CreatedBy(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.CreatedBy(childComplexity), true case "DirectorySyncRun.deltaCount": - if e.complexity.DirectorySyncRun.DeltaCount == nil { + if e.ComplexityRoot.DirectorySyncRun.DeltaCount == nil { break } - return e.complexity.DirectorySyncRun.DeltaCount(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.DeltaCount(childComplexity), true case "DirectorySyncRun.directoryAccounts": - if e.complexity.DirectorySyncRun.DirectoryAccounts == nil { + if e.ComplexityRoot.DirectorySyncRun.DirectoryAccounts == nil { break } @@ -13728,10 +13711,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectorySyncRun.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.DirectorySyncRun.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "DirectorySyncRun.directoryGroups": - if e.complexity.DirectorySyncRun.DirectoryGroups == nil { + if e.ComplexityRoot.DirectorySyncRun.DirectoryGroups == nil { break } @@ -13740,10 +13723,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectorySyncRun.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true + return e.ComplexityRoot.DirectorySyncRun.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true case "DirectorySyncRun.directoryMemberships": - if e.complexity.DirectorySyncRun.DirectoryMemberships == nil { + if e.ComplexityRoot.DirectorySyncRun.DirectoryMemberships == nil { break } @@ -13752,234 +13735,234 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DirectorySyncRun.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true + return e.ComplexityRoot.DirectorySyncRun.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true case "DirectorySyncRun.displayID": - if e.complexity.DirectorySyncRun.DisplayID == nil { + if e.ComplexityRoot.DirectorySyncRun.DisplayID == nil { break } - return e.complexity.DirectorySyncRun.DisplayID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.DisplayID(childComplexity), true case "DirectorySyncRun.environment": - if e.complexity.DirectorySyncRun.Environment == nil { + if e.ComplexityRoot.DirectorySyncRun.Environment == nil { break } - return e.complexity.DirectorySyncRun.Environment(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Environment(childComplexity), true case "DirectorySyncRun.environmentID": - if e.complexity.DirectorySyncRun.EnvironmentID == nil { + if e.ComplexityRoot.DirectorySyncRun.EnvironmentID == nil { break } - return e.complexity.DirectorySyncRun.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.EnvironmentID(childComplexity), true case "DirectorySyncRun.environmentName": - if e.complexity.DirectorySyncRun.EnvironmentName == nil { + if e.ComplexityRoot.DirectorySyncRun.EnvironmentName == nil { break } - return e.complexity.DirectorySyncRun.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.EnvironmentName(childComplexity), true case "DirectorySyncRun.error": - if e.complexity.DirectorySyncRun.Error == nil { + if e.ComplexityRoot.DirectorySyncRun.Error == nil { break } - return e.complexity.DirectorySyncRun.Error(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Error(childComplexity), true case "DirectorySyncRun.fullCount": - if e.complexity.DirectorySyncRun.FullCount == nil { + if e.ComplexityRoot.DirectorySyncRun.FullCount == nil { break } - return e.complexity.DirectorySyncRun.FullCount(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.FullCount(childComplexity), true case "DirectorySyncRun.id": - if e.complexity.DirectorySyncRun.ID == nil { + if e.ComplexityRoot.DirectorySyncRun.ID == nil { break } - return e.complexity.DirectorySyncRun.ID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.ID(childComplexity), true case "DirectorySyncRun.integration": - if e.complexity.DirectorySyncRun.Integration == nil { + if e.ComplexityRoot.DirectorySyncRun.Integration == nil { break } - return e.complexity.DirectorySyncRun.Integration(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Integration(childComplexity), true case "DirectorySyncRun.integrationID": - if e.complexity.DirectorySyncRun.IntegrationID == nil { + if e.ComplexityRoot.DirectorySyncRun.IntegrationID == nil { break } - return e.complexity.DirectorySyncRun.IntegrationID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.IntegrationID(childComplexity), true case "DirectorySyncRun.owner": - if e.complexity.DirectorySyncRun.Owner == nil { + if e.ComplexityRoot.DirectorySyncRun.Owner == nil { break } - return e.complexity.DirectorySyncRun.Owner(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Owner(childComplexity), true case "DirectorySyncRun.ownerID": - if e.complexity.DirectorySyncRun.OwnerID == nil { + if e.ComplexityRoot.DirectorySyncRun.OwnerID == nil { break } - return e.complexity.DirectorySyncRun.OwnerID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.OwnerID(childComplexity), true case "DirectorySyncRun.platform": - if e.complexity.DirectorySyncRun.Platform == nil { + if e.ComplexityRoot.DirectorySyncRun.Platform == nil { break } - return e.complexity.DirectorySyncRun.Platform(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Platform(childComplexity), true case "DirectorySyncRun.platformID": - if e.complexity.DirectorySyncRun.PlatformID == nil { + if e.ComplexityRoot.DirectorySyncRun.PlatformID == nil { break } - return e.complexity.DirectorySyncRun.PlatformID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.PlatformID(childComplexity), true case "DirectorySyncRun.rawManifestFileID": - if e.complexity.DirectorySyncRun.RawManifestFileID == nil { + if e.ComplexityRoot.DirectorySyncRun.RawManifestFileID == nil { break } - return e.complexity.DirectorySyncRun.RawManifestFileID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.RawManifestFileID(childComplexity), true case "DirectorySyncRun.scope": - if e.complexity.DirectorySyncRun.Scope == nil { + if e.ComplexityRoot.DirectorySyncRun.Scope == nil { break } - return e.complexity.DirectorySyncRun.Scope(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Scope(childComplexity), true case "DirectorySyncRun.scopeID": - if e.complexity.DirectorySyncRun.ScopeID == nil { + if e.ComplexityRoot.DirectorySyncRun.ScopeID == nil { break } - return e.complexity.DirectorySyncRun.ScopeID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.ScopeID(childComplexity), true case "DirectorySyncRun.scopeName": - if e.complexity.DirectorySyncRun.ScopeName == nil { + if e.ComplexityRoot.DirectorySyncRun.ScopeName == nil { break } - return e.complexity.DirectorySyncRun.ScopeName(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.ScopeName(childComplexity), true case "DirectorySyncRun.sourceCursor": - if e.complexity.DirectorySyncRun.SourceCursor == nil { + if e.ComplexityRoot.DirectorySyncRun.SourceCursor == nil { break } - return e.complexity.DirectorySyncRun.SourceCursor(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.SourceCursor(childComplexity), true case "DirectorySyncRun.startedAt": - if e.complexity.DirectorySyncRun.StartedAt == nil { + if e.ComplexityRoot.DirectorySyncRun.StartedAt == nil { break } - return e.complexity.DirectorySyncRun.StartedAt(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.StartedAt(childComplexity), true case "DirectorySyncRun.stats": - if e.complexity.DirectorySyncRun.Stats == nil { + if e.ComplexityRoot.DirectorySyncRun.Stats == nil { break } - return e.complexity.DirectorySyncRun.Stats(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Stats(childComplexity), true case "DirectorySyncRun.status": - if e.complexity.DirectorySyncRun.Status == nil { + if e.ComplexityRoot.DirectorySyncRun.Status == nil { break } - return e.complexity.DirectorySyncRun.Status(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.Status(childComplexity), true case "DirectorySyncRun.updatedAt": - if e.complexity.DirectorySyncRun.UpdatedAt == nil { + if e.ComplexityRoot.DirectorySyncRun.UpdatedAt == nil { break } - return e.complexity.DirectorySyncRun.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.UpdatedAt(childComplexity), true case "DirectorySyncRun.updatedBy": - if e.complexity.DirectorySyncRun.UpdatedBy == nil { + if e.ComplexityRoot.DirectorySyncRun.UpdatedBy == nil { break } - return e.complexity.DirectorySyncRun.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DirectorySyncRun.UpdatedBy(childComplexity), true case "DirectorySyncRunBulkCreatePayload.directorySyncRuns": - if e.complexity.DirectorySyncRunBulkCreatePayload.DirectorySyncRuns == nil { + if e.ComplexityRoot.DirectorySyncRunBulkCreatePayload.DirectorySyncRuns == nil { break } - return e.complexity.DirectorySyncRunBulkCreatePayload.DirectorySyncRuns(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunBulkCreatePayload.DirectorySyncRuns(childComplexity), true case "DirectorySyncRunConnection.edges": - if e.complexity.DirectorySyncRunConnection.Edges == nil { + if e.ComplexityRoot.DirectorySyncRunConnection.Edges == nil { break } - return e.complexity.DirectorySyncRunConnection.Edges(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunConnection.Edges(childComplexity), true case "DirectorySyncRunConnection.pageInfo": - if e.complexity.DirectorySyncRunConnection.PageInfo == nil { + if e.ComplexityRoot.DirectorySyncRunConnection.PageInfo == nil { break } - return e.complexity.DirectorySyncRunConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunConnection.PageInfo(childComplexity), true case "DirectorySyncRunConnection.totalCount": - if e.complexity.DirectorySyncRunConnection.TotalCount == nil { + if e.ComplexityRoot.DirectorySyncRunConnection.TotalCount == nil { break } - return e.complexity.DirectorySyncRunConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunConnection.TotalCount(childComplexity), true case "DirectorySyncRunCreatePayload.directorySyncRun": - if e.complexity.DirectorySyncRunCreatePayload.DirectorySyncRun == nil { + if e.ComplexityRoot.DirectorySyncRunCreatePayload.DirectorySyncRun == nil { break } - return e.complexity.DirectorySyncRunCreatePayload.DirectorySyncRun(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunCreatePayload.DirectorySyncRun(childComplexity), true case "DirectorySyncRunDeletePayload.deletedID": - if e.complexity.DirectorySyncRunDeletePayload.DeletedID == nil { + if e.ComplexityRoot.DirectorySyncRunDeletePayload.DeletedID == nil { break } - return e.complexity.DirectorySyncRunDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunDeletePayload.DeletedID(childComplexity), true case "DirectorySyncRunEdge.cursor": - if e.complexity.DirectorySyncRunEdge.Cursor == nil { + if e.ComplexityRoot.DirectorySyncRunEdge.Cursor == nil { break } - return e.complexity.DirectorySyncRunEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunEdge.Cursor(childComplexity), true case "DirectorySyncRunEdge.node": - if e.complexity.DirectorySyncRunEdge.Node == nil { + if e.ComplexityRoot.DirectorySyncRunEdge.Node == nil { break } - return e.complexity.DirectorySyncRunEdge.Node(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunEdge.Node(childComplexity), true case "DirectorySyncRunUpdatePayload.directorySyncRun": - if e.complexity.DirectorySyncRunUpdatePayload.DirectorySyncRun == nil { + if e.ComplexityRoot.DirectorySyncRunUpdatePayload.DirectorySyncRun == nil { break } - return e.complexity.DirectorySyncRunUpdatePayload.DirectorySyncRun(childComplexity), true + return e.ComplexityRoot.DirectorySyncRunUpdatePayload.DirectorySyncRun(childComplexity), true case "Discussion.comments": - if e.complexity.Discussion.Comments == nil { + if e.ComplexityRoot.Discussion.Comments == nil { break } @@ -13988,192 +13971,192 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Discussion.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Discussion.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Discussion.control": - if e.complexity.Discussion.Control == nil { + if e.ComplexityRoot.Discussion.Control == nil { break } - return e.complexity.Discussion.Control(childComplexity), true + return e.ComplexityRoot.Discussion.Control(childComplexity), true case "Discussion.createdAt": - if e.complexity.Discussion.CreatedAt == nil { + if e.ComplexityRoot.Discussion.CreatedAt == nil { break } - return e.complexity.Discussion.CreatedAt(childComplexity), true + return e.ComplexityRoot.Discussion.CreatedAt(childComplexity), true case "Discussion.createdBy": - if e.complexity.Discussion.CreatedBy == nil { + if e.ComplexityRoot.Discussion.CreatedBy == nil { break } - return e.complexity.Discussion.CreatedBy(childComplexity), true + return e.ComplexityRoot.Discussion.CreatedBy(childComplexity), true case "Discussion.externalID": - if e.complexity.Discussion.ExternalID == nil { + if e.ComplexityRoot.Discussion.ExternalID == nil { break } - return e.complexity.Discussion.ExternalID(childComplexity), true + return e.ComplexityRoot.Discussion.ExternalID(childComplexity), true case "Discussion.id": - if e.complexity.Discussion.ID == nil { + if e.ComplexityRoot.Discussion.ID == nil { break } - return e.complexity.Discussion.ID(childComplexity), true + return e.ComplexityRoot.Discussion.ID(childComplexity), true case "Discussion.internalPolicy": - if e.complexity.Discussion.InternalPolicy == nil { + if e.ComplexityRoot.Discussion.InternalPolicy == nil { break } - return e.complexity.Discussion.InternalPolicy(childComplexity), true + return e.ComplexityRoot.Discussion.InternalPolicy(childComplexity), true case "Discussion.isResolved": - if e.complexity.Discussion.IsResolved == nil { + if e.ComplexityRoot.Discussion.IsResolved == nil { break } - return e.complexity.Discussion.IsResolved(childComplexity), true + return e.ComplexityRoot.Discussion.IsResolved(childComplexity), true case "Discussion.owner": - if e.complexity.Discussion.Owner == nil { + if e.ComplexityRoot.Discussion.Owner == nil { break } - return e.complexity.Discussion.Owner(childComplexity), true + return e.ComplexityRoot.Discussion.Owner(childComplexity), true case "Discussion.ownerID": - if e.complexity.Discussion.OwnerID == nil { + if e.ComplexityRoot.Discussion.OwnerID == nil { break } - return e.complexity.Discussion.OwnerID(childComplexity), true + return e.ComplexityRoot.Discussion.OwnerID(childComplexity), true case "Discussion.procedure": - if e.complexity.Discussion.Procedure == nil { + if e.ComplexityRoot.Discussion.Procedure == nil { break } - return e.complexity.Discussion.Procedure(childComplexity), true + return e.ComplexityRoot.Discussion.Procedure(childComplexity), true case "Discussion.risk": - if e.complexity.Discussion.Risk == nil { + if e.ComplexityRoot.Discussion.Risk == nil { break } - return e.complexity.Discussion.Risk(childComplexity), true + return e.ComplexityRoot.Discussion.Risk(childComplexity), true case "Discussion.subcontrol": - if e.complexity.Discussion.Subcontrol == nil { + if e.ComplexityRoot.Discussion.Subcontrol == nil { break } - return e.complexity.Discussion.Subcontrol(childComplexity), true + return e.ComplexityRoot.Discussion.Subcontrol(childComplexity), true case "Discussion.updatedAt": - if e.complexity.Discussion.UpdatedAt == nil { + if e.ComplexityRoot.Discussion.UpdatedAt == nil { break } - return e.complexity.Discussion.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Discussion.UpdatedAt(childComplexity), true case "Discussion.updatedBy": - if e.complexity.Discussion.UpdatedBy == nil { + if e.ComplexityRoot.Discussion.UpdatedBy == nil { break } - return e.complexity.Discussion.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Discussion.UpdatedBy(childComplexity), true case "DiscussionBulkCreatePayload.discussions": - if e.complexity.DiscussionBulkCreatePayload.Discussions == nil { + if e.ComplexityRoot.DiscussionBulkCreatePayload.Discussions == nil { break } - return e.complexity.DiscussionBulkCreatePayload.Discussions(childComplexity), true + return e.ComplexityRoot.DiscussionBulkCreatePayload.Discussions(childComplexity), true case "DiscussionConnection.edges": - if e.complexity.DiscussionConnection.Edges == nil { + if e.ComplexityRoot.DiscussionConnection.Edges == nil { break } - return e.complexity.DiscussionConnection.Edges(childComplexity), true + return e.ComplexityRoot.DiscussionConnection.Edges(childComplexity), true case "DiscussionConnection.pageInfo": - if e.complexity.DiscussionConnection.PageInfo == nil { + if e.ComplexityRoot.DiscussionConnection.PageInfo == nil { break } - return e.complexity.DiscussionConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DiscussionConnection.PageInfo(childComplexity), true case "DiscussionConnection.totalCount": - if e.complexity.DiscussionConnection.TotalCount == nil { + if e.ComplexityRoot.DiscussionConnection.TotalCount == nil { break } - return e.complexity.DiscussionConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DiscussionConnection.TotalCount(childComplexity), true case "DiscussionCreatePayload.discussion": - if e.complexity.DiscussionCreatePayload.Discussion == nil { + if e.ComplexityRoot.DiscussionCreatePayload.Discussion == nil { break } - return e.complexity.DiscussionCreatePayload.Discussion(childComplexity), true + return e.ComplexityRoot.DiscussionCreatePayload.Discussion(childComplexity), true case "DiscussionDeletePayload.deletedID": - if e.complexity.DiscussionDeletePayload.DeletedID == nil { + if e.ComplexityRoot.DiscussionDeletePayload.DeletedID == nil { break } - return e.complexity.DiscussionDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.DiscussionDeletePayload.DeletedID(childComplexity), true case "DiscussionEdge.cursor": - if e.complexity.DiscussionEdge.Cursor == nil { + if e.ComplexityRoot.DiscussionEdge.Cursor == nil { break } - return e.complexity.DiscussionEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DiscussionEdge.Cursor(childComplexity), true case "DiscussionEdge.node": - if e.complexity.DiscussionEdge.Node == nil { + if e.ComplexityRoot.DiscussionEdge.Node == nil { break } - return e.complexity.DiscussionEdge.Node(childComplexity), true + return e.ComplexityRoot.DiscussionEdge.Node(childComplexity), true case "DiscussionUpdatePayload.discussion": - if e.complexity.DiscussionUpdatePayload.Discussion == nil { + if e.ComplexityRoot.DiscussionUpdatePayload.Discussion == nil { break } - return e.complexity.DiscussionUpdatePayload.Discussion(childComplexity), true + return e.ComplexityRoot.DiscussionUpdatePayload.Discussion(childComplexity), true case "DocumentData.createdAt": - if e.complexity.DocumentData.CreatedAt == nil { + if e.ComplexityRoot.DocumentData.CreatedAt == nil { break } - return e.complexity.DocumentData.CreatedAt(childComplexity), true + return e.ComplexityRoot.DocumentData.CreatedAt(childComplexity), true case "DocumentData.createdBy": - if e.complexity.DocumentData.CreatedBy == nil { + if e.ComplexityRoot.DocumentData.CreatedBy == nil { break } - return e.complexity.DocumentData.CreatedBy(childComplexity), true + return e.ComplexityRoot.DocumentData.CreatedBy(childComplexity), true case "DocumentData.data": - if e.complexity.DocumentData.Data == nil { + if e.ComplexityRoot.DocumentData.Data == nil { break } - return e.complexity.DocumentData.Data(childComplexity), true + return e.ComplexityRoot.DocumentData.Data(childComplexity), true case "DocumentData.entities": - if e.complexity.DocumentData.Entities == nil { + if e.ComplexityRoot.DocumentData.Entities == nil { break } @@ -14182,31 +14165,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DocumentData.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.DocumentData.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "DocumentData.environment": - if e.complexity.DocumentData.Environment == nil { + if e.ComplexityRoot.DocumentData.Environment == nil { break } - return e.complexity.DocumentData.Environment(childComplexity), true + return e.ComplexityRoot.DocumentData.Environment(childComplexity), true case "DocumentData.environmentID": - if e.complexity.DocumentData.EnvironmentID == nil { + if e.ComplexityRoot.DocumentData.EnvironmentID == nil { break } - return e.complexity.DocumentData.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DocumentData.EnvironmentID(childComplexity), true case "DocumentData.environmentName": - if e.complexity.DocumentData.EnvironmentName == nil { + if e.ComplexityRoot.DocumentData.EnvironmentName == nil { break } - return e.complexity.DocumentData.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DocumentData.EnvironmentName(childComplexity), true case "DocumentData.files": - if e.complexity.DocumentData.Files == nil { + if e.ComplexityRoot.DocumentData.Files == nil { break } @@ -14215,178 +14198,178 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.DocumentData.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.DocumentData.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "DocumentData.id": - if e.complexity.DocumentData.ID == nil { + if e.ComplexityRoot.DocumentData.ID == nil { break } - return e.complexity.DocumentData.ID(childComplexity), true + return e.ComplexityRoot.DocumentData.ID(childComplexity), true case "DocumentData.owner": - if e.complexity.DocumentData.Owner == nil { + if e.ComplexityRoot.DocumentData.Owner == nil { break } - return e.complexity.DocumentData.Owner(childComplexity), true + return e.ComplexityRoot.DocumentData.Owner(childComplexity), true case "DocumentData.ownerID": - if e.complexity.DocumentData.OwnerID == nil { + if e.ComplexityRoot.DocumentData.OwnerID == nil { break } - return e.complexity.DocumentData.OwnerID(childComplexity), true + return e.ComplexityRoot.DocumentData.OwnerID(childComplexity), true case "DocumentData.scope": - if e.complexity.DocumentData.Scope == nil { + if e.ComplexityRoot.DocumentData.Scope == nil { break } - return e.complexity.DocumentData.Scope(childComplexity), true + return e.ComplexityRoot.DocumentData.Scope(childComplexity), true case "DocumentData.scopeID": - if e.complexity.DocumentData.ScopeID == nil { + if e.ComplexityRoot.DocumentData.ScopeID == nil { break } - return e.complexity.DocumentData.ScopeID(childComplexity), true + return e.ComplexityRoot.DocumentData.ScopeID(childComplexity), true case "DocumentData.scopeName": - if e.complexity.DocumentData.ScopeName == nil { + if e.ComplexityRoot.DocumentData.ScopeName == nil { break } - return e.complexity.DocumentData.ScopeName(childComplexity), true + return e.ComplexityRoot.DocumentData.ScopeName(childComplexity), true case "DocumentData.tags": - if e.complexity.DocumentData.Tags == nil { + if e.ComplexityRoot.DocumentData.Tags == nil { break } - return e.complexity.DocumentData.Tags(childComplexity), true + return e.ComplexityRoot.DocumentData.Tags(childComplexity), true case "DocumentData.template": - if e.complexity.DocumentData.Template == nil { + if e.ComplexityRoot.DocumentData.Template == nil { break } - return e.complexity.DocumentData.Template(childComplexity), true + return e.ComplexityRoot.DocumentData.Template(childComplexity), true case "DocumentData.templateID": - if e.complexity.DocumentData.TemplateID == nil { + if e.ComplexityRoot.DocumentData.TemplateID == nil { break } - return e.complexity.DocumentData.TemplateID(childComplexity), true + return e.ComplexityRoot.DocumentData.TemplateID(childComplexity), true case "DocumentData.updatedAt": - if e.complexity.DocumentData.UpdatedAt == nil { + if e.ComplexityRoot.DocumentData.UpdatedAt == nil { break } - return e.complexity.DocumentData.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DocumentData.UpdatedAt(childComplexity), true case "DocumentData.updatedBy": - if e.complexity.DocumentData.UpdatedBy == nil { + if e.ComplexityRoot.DocumentData.UpdatedBy == nil { break } - return e.complexity.DocumentData.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DocumentData.UpdatedBy(childComplexity), true case "DocumentDataBulkCreatePayload.documentData": - if e.complexity.DocumentDataBulkCreatePayload.DocumentData == nil { + if e.ComplexityRoot.DocumentDataBulkCreatePayload.DocumentData == nil { break } - return e.complexity.DocumentDataBulkCreatePayload.DocumentData(childComplexity), true + return e.ComplexityRoot.DocumentDataBulkCreatePayload.DocumentData(childComplexity), true case "DocumentDataBulkDeletePayload.deletedIDs": - if e.complexity.DocumentDataBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.DocumentDataBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.DocumentDataBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.DocumentDataBulkDeletePayload.DeletedIDs(childComplexity), true case "DocumentDataBulkUpdatePayload.documentData": - if e.complexity.DocumentDataBulkUpdatePayload.DocumentData == nil { + if e.ComplexityRoot.DocumentDataBulkUpdatePayload.DocumentData == nil { break } - return e.complexity.DocumentDataBulkUpdatePayload.DocumentData(childComplexity), true + return e.ComplexityRoot.DocumentDataBulkUpdatePayload.DocumentData(childComplexity), true case "DocumentDataBulkUpdatePayload.updatedIDs": - if e.complexity.DocumentDataBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.DocumentDataBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.DocumentDataBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.DocumentDataBulkUpdatePayload.UpdatedIDs(childComplexity), true case "DocumentDataConnection.edges": - if e.complexity.DocumentDataConnection.Edges == nil { + if e.ComplexityRoot.DocumentDataConnection.Edges == nil { break } - return e.complexity.DocumentDataConnection.Edges(childComplexity), true + return e.ComplexityRoot.DocumentDataConnection.Edges(childComplexity), true case "DocumentDataConnection.pageInfo": - if e.complexity.DocumentDataConnection.PageInfo == nil { + if e.ComplexityRoot.DocumentDataConnection.PageInfo == nil { break } - return e.complexity.DocumentDataConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DocumentDataConnection.PageInfo(childComplexity), true case "DocumentDataConnection.totalCount": - if e.complexity.DocumentDataConnection.TotalCount == nil { + if e.ComplexityRoot.DocumentDataConnection.TotalCount == nil { break } - return e.complexity.DocumentDataConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DocumentDataConnection.TotalCount(childComplexity), true case "DocumentDataCreatePayload.documentData": - if e.complexity.DocumentDataCreatePayload.DocumentData == nil { + if e.ComplexityRoot.DocumentDataCreatePayload.DocumentData == nil { break } - return e.complexity.DocumentDataCreatePayload.DocumentData(childComplexity), true + return e.ComplexityRoot.DocumentDataCreatePayload.DocumentData(childComplexity), true case "DocumentDataDeletePayload.deletedID": - if e.complexity.DocumentDataDeletePayload.DeletedID == nil { + if e.ComplexityRoot.DocumentDataDeletePayload.DeletedID == nil { break } - return e.complexity.DocumentDataDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.DocumentDataDeletePayload.DeletedID(childComplexity), true case "DocumentDataEdge.cursor": - if e.complexity.DocumentDataEdge.Cursor == nil { + if e.ComplexityRoot.DocumentDataEdge.Cursor == nil { break } - return e.complexity.DocumentDataEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DocumentDataEdge.Cursor(childComplexity), true case "DocumentDataEdge.node": - if e.complexity.DocumentDataEdge.Node == nil { + if e.ComplexityRoot.DocumentDataEdge.Node == nil { break } - return e.complexity.DocumentDataEdge.Node(childComplexity), true + return e.ComplexityRoot.DocumentDataEdge.Node(childComplexity), true case "DocumentDataUpdatePayload.documentData": - if e.complexity.DocumentDataUpdatePayload.DocumentData == nil { + if e.ComplexityRoot.DocumentDataUpdatePayload.DocumentData == nil { break } - return e.complexity.DocumentDataUpdatePayload.DocumentData(childComplexity), true + return e.ComplexityRoot.DocumentDataUpdatePayload.DocumentData(childComplexity), true case "EmailBranding.backgroundColor": - if e.complexity.EmailBranding.BackgroundColor == nil { + if e.ComplexityRoot.EmailBranding.BackgroundColor == nil { break } - return e.complexity.EmailBranding.BackgroundColor(childComplexity), true + return e.ComplexityRoot.EmailBranding.BackgroundColor(childComplexity), true case "EmailBranding.blockedGroups": - if e.complexity.EmailBranding.BlockedGroups == nil { + if e.ComplexityRoot.EmailBranding.BlockedGroups == nil { break } @@ -14395,31 +14378,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EmailBranding.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.EmailBranding.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "EmailBranding.brandName": - if e.complexity.EmailBranding.BrandName == nil { + if e.ComplexityRoot.EmailBranding.BrandName == nil { break } - return e.complexity.EmailBranding.BrandName(childComplexity), true + return e.ComplexityRoot.EmailBranding.BrandName(childComplexity), true case "EmailBranding.buttonColor": - if e.complexity.EmailBranding.ButtonColor == nil { + if e.ComplexityRoot.EmailBranding.ButtonColor == nil { break } - return e.complexity.EmailBranding.ButtonColor(childComplexity), true + return e.ComplexityRoot.EmailBranding.ButtonColor(childComplexity), true case "EmailBranding.buttonTextColor": - if e.complexity.EmailBranding.ButtonTextColor == nil { + if e.ComplexityRoot.EmailBranding.ButtonTextColor == nil { break } - return e.complexity.EmailBranding.ButtonTextColor(childComplexity), true + return e.ComplexityRoot.EmailBranding.ButtonTextColor(childComplexity), true case "EmailBranding.campaigns": - if e.complexity.EmailBranding.Campaigns == nil { + if e.ComplexityRoot.EmailBranding.Campaigns == nil { break } @@ -14428,24 +14411,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EmailBranding.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.EmailBranding.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "EmailBranding.createdAt": - if e.complexity.EmailBranding.CreatedAt == nil { + if e.ComplexityRoot.EmailBranding.CreatedAt == nil { break } - return e.complexity.EmailBranding.CreatedAt(childComplexity), true + return e.ComplexityRoot.EmailBranding.CreatedAt(childComplexity), true case "EmailBranding.createdBy": - if e.complexity.EmailBranding.CreatedBy == nil { + if e.ComplexityRoot.EmailBranding.CreatedBy == nil { break } - return e.complexity.EmailBranding.CreatedBy(childComplexity), true + return e.ComplexityRoot.EmailBranding.CreatedBy(childComplexity), true case "EmailBranding.editors": - if e.complexity.EmailBranding.Editors == nil { + if e.ComplexityRoot.EmailBranding.Editors == nil { break } @@ -14454,10 +14437,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EmailBranding.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.EmailBranding.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "EmailBranding.emailTemplates": - if e.complexity.EmailBranding.EmailTemplates == nil { + if e.ComplexityRoot.EmailBranding.EmailTemplates == nil { break } @@ -14466,108 +14449,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EmailBranding.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true + return e.ComplexityRoot.EmailBranding.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true case "EmailBranding.fontFamily": - if e.complexity.EmailBranding.FontFamily == nil { + if e.ComplexityRoot.EmailBranding.FontFamily == nil { break } - return e.complexity.EmailBranding.FontFamily(childComplexity), true + return e.ComplexityRoot.EmailBranding.FontFamily(childComplexity), true case "EmailBranding.id": - if e.complexity.EmailBranding.ID == nil { + if e.ComplexityRoot.EmailBranding.ID == nil { break } - return e.complexity.EmailBranding.ID(childComplexity), true + return e.ComplexityRoot.EmailBranding.ID(childComplexity), true case "EmailBranding.isDefault": - if e.complexity.EmailBranding.IsDefault == nil { + if e.ComplexityRoot.EmailBranding.IsDefault == nil { break } - return e.complexity.EmailBranding.IsDefault(childComplexity), true + return e.ComplexityRoot.EmailBranding.IsDefault(childComplexity), true case "EmailBranding.linkColor": - if e.complexity.EmailBranding.LinkColor == nil { + if e.ComplexityRoot.EmailBranding.LinkColor == nil { break } - return e.complexity.EmailBranding.LinkColor(childComplexity), true + return e.ComplexityRoot.EmailBranding.LinkColor(childComplexity), true case "EmailBranding.logoRemoteURL": - if e.complexity.EmailBranding.LogoRemoteURL == nil { + if e.ComplexityRoot.EmailBranding.LogoRemoteURL == nil { break } - return e.complexity.EmailBranding.LogoRemoteURL(childComplexity), true + return e.ComplexityRoot.EmailBranding.LogoRemoteURL(childComplexity), true case "EmailBranding.name": - if e.complexity.EmailBranding.Name == nil { + if e.ComplexityRoot.EmailBranding.Name == nil { break } - return e.complexity.EmailBranding.Name(childComplexity), true + return e.ComplexityRoot.EmailBranding.Name(childComplexity), true case "EmailBranding.owner": - if e.complexity.EmailBranding.Owner == nil { + if e.ComplexityRoot.EmailBranding.Owner == nil { break } - return e.complexity.EmailBranding.Owner(childComplexity), true + return e.ComplexityRoot.EmailBranding.Owner(childComplexity), true case "EmailBranding.ownerID": - if e.complexity.EmailBranding.OwnerID == nil { + if e.ComplexityRoot.EmailBranding.OwnerID == nil { break } - return e.complexity.EmailBranding.OwnerID(childComplexity), true + return e.ComplexityRoot.EmailBranding.OwnerID(childComplexity), true case "EmailBranding.primaryColor": - if e.complexity.EmailBranding.PrimaryColor == nil { + if e.ComplexityRoot.EmailBranding.PrimaryColor == nil { break } - return e.complexity.EmailBranding.PrimaryColor(childComplexity), true + return e.ComplexityRoot.EmailBranding.PrimaryColor(childComplexity), true case "EmailBranding.secondaryColor": - if e.complexity.EmailBranding.SecondaryColor == nil { + if e.ComplexityRoot.EmailBranding.SecondaryColor == nil { break } - return e.complexity.EmailBranding.SecondaryColor(childComplexity), true + return e.ComplexityRoot.EmailBranding.SecondaryColor(childComplexity), true case "EmailBranding.tags": - if e.complexity.EmailBranding.Tags == nil { + if e.ComplexityRoot.EmailBranding.Tags == nil { break } - return e.complexity.EmailBranding.Tags(childComplexity), true + return e.ComplexityRoot.EmailBranding.Tags(childComplexity), true case "EmailBranding.textColor": - if e.complexity.EmailBranding.TextColor == nil { + if e.ComplexityRoot.EmailBranding.TextColor == nil { break } - return e.complexity.EmailBranding.TextColor(childComplexity), true + return e.ComplexityRoot.EmailBranding.TextColor(childComplexity), true case "EmailBranding.updatedAt": - if e.complexity.EmailBranding.UpdatedAt == nil { + if e.ComplexityRoot.EmailBranding.UpdatedAt == nil { break } - return e.complexity.EmailBranding.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EmailBranding.UpdatedAt(childComplexity), true case "EmailBranding.updatedBy": - if e.complexity.EmailBranding.UpdatedBy == nil { + if e.ComplexityRoot.EmailBranding.UpdatedBy == nil { break } - return e.complexity.EmailBranding.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EmailBranding.UpdatedBy(childComplexity), true case "EmailBranding.viewers": - if e.complexity.EmailBranding.Viewers == nil { + if e.ComplexityRoot.EmailBranding.Viewers == nil { break } @@ -14576,108 +14559,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EmailBranding.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.EmailBranding.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "EmailBrandingBulkCreatePayload.emailBrandings": - if e.complexity.EmailBrandingBulkCreatePayload.EmailBrandings == nil { + if e.ComplexityRoot.EmailBrandingBulkCreatePayload.EmailBrandings == nil { break } - return e.complexity.EmailBrandingBulkCreatePayload.EmailBrandings(childComplexity), true + return e.ComplexityRoot.EmailBrandingBulkCreatePayload.EmailBrandings(childComplexity), true case "EmailBrandingBulkDeletePayload.deletedIDs": - if e.complexity.EmailBrandingBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.EmailBrandingBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.EmailBrandingBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.EmailBrandingBulkDeletePayload.DeletedIDs(childComplexity), true case "EmailBrandingBulkUpdatePayload.emailBrandings": - if e.complexity.EmailBrandingBulkUpdatePayload.EmailBrandings == nil { + if e.ComplexityRoot.EmailBrandingBulkUpdatePayload.EmailBrandings == nil { break } - return e.complexity.EmailBrandingBulkUpdatePayload.EmailBrandings(childComplexity), true + return e.ComplexityRoot.EmailBrandingBulkUpdatePayload.EmailBrandings(childComplexity), true case "EmailBrandingBulkUpdatePayload.updatedIDs": - if e.complexity.EmailBrandingBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.EmailBrandingBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.EmailBrandingBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.EmailBrandingBulkUpdatePayload.UpdatedIDs(childComplexity), true case "EmailBrandingConnection.edges": - if e.complexity.EmailBrandingConnection.Edges == nil { + if e.ComplexityRoot.EmailBrandingConnection.Edges == nil { break } - return e.complexity.EmailBrandingConnection.Edges(childComplexity), true + return e.ComplexityRoot.EmailBrandingConnection.Edges(childComplexity), true case "EmailBrandingConnection.pageInfo": - if e.complexity.EmailBrandingConnection.PageInfo == nil { + if e.ComplexityRoot.EmailBrandingConnection.PageInfo == nil { break } - return e.complexity.EmailBrandingConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EmailBrandingConnection.PageInfo(childComplexity), true case "EmailBrandingConnection.totalCount": - if e.complexity.EmailBrandingConnection.TotalCount == nil { + if e.ComplexityRoot.EmailBrandingConnection.TotalCount == nil { break } - return e.complexity.EmailBrandingConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EmailBrandingConnection.TotalCount(childComplexity), true case "EmailBrandingCreatePayload.emailBranding": - if e.complexity.EmailBrandingCreatePayload.EmailBranding == nil { + if e.ComplexityRoot.EmailBrandingCreatePayload.EmailBranding == nil { break } - return e.complexity.EmailBrandingCreatePayload.EmailBranding(childComplexity), true + return e.ComplexityRoot.EmailBrandingCreatePayload.EmailBranding(childComplexity), true case "EmailBrandingDeletePayload.deletedID": - if e.complexity.EmailBrandingDeletePayload.DeletedID == nil { + if e.ComplexityRoot.EmailBrandingDeletePayload.DeletedID == nil { break } - return e.complexity.EmailBrandingDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.EmailBrandingDeletePayload.DeletedID(childComplexity), true case "EmailBrandingEdge.cursor": - if e.complexity.EmailBrandingEdge.Cursor == nil { + if e.ComplexityRoot.EmailBrandingEdge.Cursor == nil { break } - return e.complexity.EmailBrandingEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EmailBrandingEdge.Cursor(childComplexity), true case "EmailBrandingEdge.node": - if e.complexity.EmailBrandingEdge.Node == nil { + if e.ComplexityRoot.EmailBrandingEdge.Node == nil { break } - return e.complexity.EmailBrandingEdge.Node(childComplexity), true + return e.ComplexityRoot.EmailBrandingEdge.Node(childComplexity), true case "EmailBrandingUpdatePayload.emailBranding": - if e.complexity.EmailBrandingUpdatePayload.EmailBranding == nil { + if e.ComplexityRoot.EmailBrandingUpdatePayload.EmailBranding == nil { break } - return e.complexity.EmailBrandingUpdatePayload.EmailBranding(childComplexity), true + return e.ComplexityRoot.EmailBrandingUpdatePayload.EmailBranding(childComplexity), true case "EmailTemplate.active": - if e.complexity.EmailTemplate.Active == nil { + if e.ComplexityRoot.EmailTemplate.Active == nil { break } - return e.complexity.EmailTemplate.Active(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Active(childComplexity), true case "EmailTemplate.bodyTemplate": - if e.complexity.EmailTemplate.BodyTemplate == nil { + if e.ComplexityRoot.EmailTemplate.BodyTemplate == nil { break } - return e.complexity.EmailTemplate.BodyTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplate.BodyTemplate(childComplexity), true case "EmailTemplate.campaigns": - if e.complexity.EmailTemplate.Campaigns == nil { + if e.ComplexityRoot.EmailTemplate.Campaigns == nil { break } @@ -14686,115 +14669,115 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EmailTemplate.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.EmailTemplate.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "EmailTemplate.createdAt": - if e.complexity.EmailTemplate.CreatedAt == nil { + if e.ComplexityRoot.EmailTemplate.CreatedAt == nil { break } - return e.complexity.EmailTemplate.CreatedAt(childComplexity), true + return e.ComplexityRoot.EmailTemplate.CreatedAt(childComplexity), true case "EmailTemplate.createdBy": - if e.complexity.EmailTemplate.CreatedBy == nil { + if e.ComplexityRoot.EmailTemplate.CreatedBy == nil { break } - return e.complexity.EmailTemplate.CreatedBy(childComplexity), true + return e.ComplexityRoot.EmailTemplate.CreatedBy(childComplexity), true case "EmailTemplate.description": - if e.complexity.EmailTemplate.Description == nil { + if e.ComplexityRoot.EmailTemplate.Description == nil { break } - return e.complexity.EmailTemplate.Description(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Description(childComplexity), true case "EmailTemplate.emailBranding": - if e.complexity.EmailTemplate.EmailBranding == nil { + if e.ComplexityRoot.EmailTemplate.EmailBranding == nil { break } - return e.complexity.EmailTemplate.EmailBranding(childComplexity), true + return e.ComplexityRoot.EmailTemplate.EmailBranding(childComplexity), true case "EmailTemplate.emailBrandingID": - if e.complexity.EmailTemplate.EmailBrandingID == nil { + if e.ComplexityRoot.EmailTemplate.EmailBrandingID == nil { break } - return e.complexity.EmailTemplate.EmailBrandingID(childComplexity), true + return e.ComplexityRoot.EmailTemplate.EmailBrandingID(childComplexity), true case "EmailTemplate.format": - if e.complexity.EmailTemplate.Format == nil { + if e.ComplexityRoot.EmailTemplate.Format == nil { break } - return e.complexity.EmailTemplate.Format(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Format(childComplexity), true case "EmailTemplate.id": - if e.complexity.EmailTemplate.ID == nil { + if e.ComplexityRoot.EmailTemplate.ID == nil { break } - return e.complexity.EmailTemplate.ID(childComplexity), true + return e.ComplexityRoot.EmailTemplate.ID(childComplexity), true case "EmailTemplate.integration": - if e.complexity.EmailTemplate.Integration == nil { + if e.ComplexityRoot.EmailTemplate.Integration == nil { break } - return e.complexity.EmailTemplate.Integration(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Integration(childComplexity), true case "EmailTemplate.integrationID": - if e.complexity.EmailTemplate.IntegrationID == nil { + if e.ComplexityRoot.EmailTemplate.IntegrationID == nil { break } - return e.complexity.EmailTemplate.IntegrationID(childComplexity), true + return e.ComplexityRoot.EmailTemplate.IntegrationID(childComplexity), true case "EmailTemplate.internalNotes": - if e.complexity.EmailTemplate.InternalNotes == nil { + if e.ComplexityRoot.EmailTemplate.InternalNotes == nil { break } - return e.complexity.EmailTemplate.InternalNotes(childComplexity), true + return e.ComplexityRoot.EmailTemplate.InternalNotes(childComplexity), true case "EmailTemplate.jsonconfig": - if e.complexity.EmailTemplate.Jsonconfig == nil { + if e.ComplexityRoot.EmailTemplate.Jsonconfig == nil { break } - return e.complexity.EmailTemplate.Jsonconfig(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Jsonconfig(childComplexity), true case "EmailTemplate.key": - if e.complexity.EmailTemplate.Key == nil { + if e.ComplexityRoot.EmailTemplate.Key == nil { break } - return e.complexity.EmailTemplate.Key(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Key(childComplexity), true case "EmailTemplate.locale": - if e.complexity.EmailTemplate.Locale == nil { + if e.ComplexityRoot.EmailTemplate.Locale == nil { break } - return e.complexity.EmailTemplate.Locale(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Locale(childComplexity), true case "EmailTemplate.metadata": - if e.complexity.EmailTemplate.Metadata == nil { + if e.ComplexityRoot.EmailTemplate.Metadata == nil { break } - return e.complexity.EmailTemplate.Metadata(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Metadata(childComplexity), true case "EmailTemplate.name": - if e.complexity.EmailTemplate.Name == nil { + if e.ComplexityRoot.EmailTemplate.Name == nil { break } - return e.complexity.EmailTemplate.Name(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Name(childComplexity), true case "EmailTemplate.notificationTemplates": - if e.complexity.EmailTemplate.NotificationTemplates == nil { + if e.ComplexityRoot.EmailTemplate.NotificationTemplates == nil { break } @@ -14803,213 +14786,213 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EmailTemplate.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true + return e.ComplexityRoot.EmailTemplate.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true case "EmailTemplate.owner": - if e.complexity.EmailTemplate.Owner == nil { + if e.ComplexityRoot.EmailTemplate.Owner == nil { break } - return e.complexity.EmailTemplate.Owner(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Owner(childComplexity), true case "EmailTemplate.ownerID": - if e.complexity.EmailTemplate.OwnerID == nil { + if e.ComplexityRoot.EmailTemplate.OwnerID == nil { break } - return e.complexity.EmailTemplate.OwnerID(childComplexity), true + return e.ComplexityRoot.EmailTemplate.OwnerID(childComplexity), true case "EmailTemplate.preheaderTemplate": - if e.complexity.EmailTemplate.PreheaderTemplate == nil { + if e.ComplexityRoot.EmailTemplate.PreheaderTemplate == nil { break } - return e.complexity.EmailTemplate.PreheaderTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplate.PreheaderTemplate(childComplexity), true case "EmailTemplate.subjectTemplate": - if e.complexity.EmailTemplate.SubjectTemplate == nil { + if e.ComplexityRoot.EmailTemplate.SubjectTemplate == nil { break } - return e.complexity.EmailTemplate.SubjectTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplate.SubjectTemplate(childComplexity), true case "EmailTemplate.systemInternalID": - if e.complexity.EmailTemplate.SystemInternalID == nil { + if e.ComplexityRoot.EmailTemplate.SystemInternalID == nil { break } - return e.complexity.EmailTemplate.SystemInternalID(childComplexity), true + return e.ComplexityRoot.EmailTemplate.SystemInternalID(childComplexity), true case "EmailTemplate.systemOwned": - if e.complexity.EmailTemplate.SystemOwned == nil { + if e.ComplexityRoot.EmailTemplate.SystemOwned == nil { break } - return e.complexity.EmailTemplate.SystemOwned(childComplexity), true + return e.ComplexityRoot.EmailTemplate.SystemOwned(childComplexity), true case "EmailTemplate.textTemplate": - if e.complexity.EmailTemplate.TextTemplate == nil { + if e.ComplexityRoot.EmailTemplate.TextTemplate == nil { break } - return e.complexity.EmailTemplate.TextTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplate.TextTemplate(childComplexity), true case "EmailTemplate.uischema": - if e.complexity.EmailTemplate.Uischema == nil { + if e.ComplexityRoot.EmailTemplate.Uischema == nil { break } - return e.complexity.EmailTemplate.Uischema(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Uischema(childComplexity), true case "EmailTemplate.updatedAt": - if e.complexity.EmailTemplate.UpdatedAt == nil { + if e.ComplexityRoot.EmailTemplate.UpdatedAt == nil { break } - return e.complexity.EmailTemplate.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EmailTemplate.UpdatedAt(childComplexity), true case "EmailTemplate.updatedBy": - if e.complexity.EmailTemplate.UpdatedBy == nil { + if e.ComplexityRoot.EmailTemplate.UpdatedBy == nil { break } - return e.complexity.EmailTemplate.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EmailTemplate.UpdatedBy(childComplexity), true case "EmailTemplate.version": - if e.complexity.EmailTemplate.Version == nil { + if e.ComplexityRoot.EmailTemplate.Version == nil { break } - return e.complexity.EmailTemplate.Version(childComplexity), true + return e.ComplexityRoot.EmailTemplate.Version(childComplexity), true case "EmailTemplate.workflowDefinition": - if e.complexity.EmailTemplate.WorkflowDefinition == nil { + if e.ComplexityRoot.EmailTemplate.WorkflowDefinition == nil { break } - return e.complexity.EmailTemplate.WorkflowDefinition(childComplexity), true + return e.ComplexityRoot.EmailTemplate.WorkflowDefinition(childComplexity), true case "EmailTemplate.workflowDefinitionID": - if e.complexity.EmailTemplate.WorkflowDefinitionID == nil { + if e.ComplexityRoot.EmailTemplate.WorkflowDefinitionID == nil { break } - return e.complexity.EmailTemplate.WorkflowDefinitionID(childComplexity), true + return e.ComplexityRoot.EmailTemplate.WorkflowDefinitionID(childComplexity), true case "EmailTemplate.workflowInstance": - if e.complexity.EmailTemplate.WorkflowInstance == nil { + if e.ComplexityRoot.EmailTemplate.WorkflowInstance == nil { break } - return e.complexity.EmailTemplate.WorkflowInstance(childComplexity), true + return e.ComplexityRoot.EmailTemplate.WorkflowInstance(childComplexity), true case "EmailTemplate.workflowInstanceID": - if e.complexity.EmailTemplate.WorkflowInstanceID == nil { + if e.ComplexityRoot.EmailTemplate.WorkflowInstanceID == nil { break } - return e.complexity.EmailTemplate.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.EmailTemplate.WorkflowInstanceID(childComplexity), true case "EmailTemplateBulkCreatePayload.emailTemplates": - if e.complexity.EmailTemplateBulkCreatePayload.EmailTemplates == nil { + if e.ComplexityRoot.EmailTemplateBulkCreatePayload.EmailTemplates == nil { break } - return e.complexity.EmailTemplateBulkCreatePayload.EmailTemplates(childComplexity), true + return e.ComplexityRoot.EmailTemplateBulkCreatePayload.EmailTemplates(childComplexity), true case "EmailTemplateBulkDeletePayload.deletedIDs": - if e.complexity.EmailTemplateBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.EmailTemplateBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.EmailTemplateBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.EmailTemplateBulkDeletePayload.DeletedIDs(childComplexity), true case "EmailTemplateBulkUpdatePayload.emailTemplates": - if e.complexity.EmailTemplateBulkUpdatePayload.EmailTemplates == nil { + if e.ComplexityRoot.EmailTemplateBulkUpdatePayload.EmailTemplates == nil { break } - return e.complexity.EmailTemplateBulkUpdatePayload.EmailTemplates(childComplexity), true + return e.ComplexityRoot.EmailTemplateBulkUpdatePayload.EmailTemplates(childComplexity), true case "EmailTemplateBulkUpdatePayload.updatedIDs": - if e.complexity.EmailTemplateBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.EmailTemplateBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.EmailTemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.EmailTemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true case "EmailTemplateConnection.edges": - if e.complexity.EmailTemplateConnection.Edges == nil { + if e.ComplexityRoot.EmailTemplateConnection.Edges == nil { break } - return e.complexity.EmailTemplateConnection.Edges(childComplexity), true + return e.ComplexityRoot.EmailTemplateConnection.Edges(childComplexity), true case "EmailTemplateConnection.pageInfo": - if e.complexity.EmailTemplateConnection.PageInfo == nil { + if e.ComplexityRoot.EmailTemplateConnection.PageInfo == nil { break } - return e.complexity.EmailTemplateConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EmailTemplateConnection.PageInfo(childComplexity), true case "EmailTemplateConnection.totalCount": - if e.complexity.EmailTemplateConnection.TotalCount == nil { + if e.ComplexityRoot.EmailTemplateConnection.TotalCount == nil { break } - return e.complexity.EmailTemplateConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EmailTemplateConnection.TotalCount(childComplexity), true case "EmailTemplateCreatePayload.emailTemplate": - if e.complexity.EmailTemplateCreatePayload.EmailTemplate == nil { + if e.ComplexityRoot.EmailTemplateCreatePayload.EmailTemplate == nil { break } - return e.complexity.EmailTemplateCreatePayload.EmailTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplateCreatePayload.EmailTemplate(childComplexity), true case "EmailTemplateDeletePayload.deletedID": - if e.complexity.EmailTemplateDeletePayload.DeletedID == nil { + if e.ComplexityRoot.EmailTemplateDeletePayload.DeletedID == nil { break } - return e.complexity.EmailTemplateDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.EmailTemplateDeletePayload.DeletedID(childComplexity), true case "EmailTemplateEdge.cursor": - if e.complexity.EmailTemplateEdge.Cursor == nil { + if e.ComplexityRoot.EmailTemplateEdge.Cursor == nil { break } - return e.complexity.EmailTemplateEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EmailTemplateEdge.Cursor(childComplexity), true case "EmailTemplateEdge.node": - if e.complexity.EmailTemplateEdge.Node == nil { + if e.ComplexityRoot.EmailTemplateEdge.Node == nil { break } - return e.complexity.EmailTemplateEdge.Node(childComplexity), true + return e.ComplexityRoot.EmailTemplateEdge.Node(childComplexity), true case "EmailTemplateUpdatePayload.emailTemplate": - if e.complexity.EmailTemplateUpdatePayload.EmailTemplate == nil { + if e.ComplexityRoot.EmailTemplateUpdatePayload.EmailTemplate == nil { break } - return e.complexity.EmailTemplateUpdatePayload.EmailTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplateUpdatePayload.EmailTemplate(childComplexity), true case "Entity.annualSpend": - if e.complexity.Entity.AnnualSpend == nil { + if e.ComplexityRoot.Entity.AnnualSpend == nil { break } - return e.complexity.Entity.AnnualSpend(childComplexity), true + return e.ComplexityRoot.Entity.AnnualSpend(childComplexity), true case "Entity.approvedForUse": - if e.complexity.Entity.ApprovedForUse == nil { + if e.ComplexityRoot.Entity.ApprovedForUse == nil { break } - return e.complexity.Entity.ApprovedForUse(childComplexity), true + return e.ComplexityRoot.Entity.ApprovedForUse(childComplexity), true case "Entity.assessmentResponses": - if e.complexity.Entity.AssessmentResponses == nil { + if e.ComplexityRoot.Entity.AssessmentResponses == nil { break } @@ -15018,10 +15001,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true + return e.ComplexityRoot.Entity.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true case "Entity.assets": - if e.complexity.Entity.Assets == nil { + if e.ComplexityRoot.Entity.Assets == nil { break } @@ -15030,10 +15013,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Entity.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Entity.authMethods": - if e.complexity.Entity.AuthMethods == nil { + if e.ComplexityRoot.Entity.AuthMethods == nil { break } @@ -15042,24 +15025,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.AuthMethods(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomTypeEnumOrder), args["where"].(*generated.CustomTypeEnumWhereInput)), true + return e.ComplexityRoot.Entity.AuthMethods(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomTypeEnumOrder), args["where"].(*generated.CustomTypeEnumWhereInput)), true case "Entity.autoRenews": - if e.complexity.Entity.AutoRenews == nil { + if e.ComplexityRoot.Entity.AutoRenews == nil { break } - return e.complexity.Entity.AutoRenews(childComplexity), true + return e.ComplexityRoot.Entity.AutoRenews(childComplexity), true case "Entity.billingModel": - if e.complexity.Entity.BillingModel == nil { + if e.ComplexityRoot.Entity.BillingModel == nil { break } - return e.complexity.Entity.BillingModel(childComplexity), true + return e.ComplexityRoot.Entity.BillingModel(childComplexity), true case "Entity.blockedGroups": - if e.complexity.Entity.BlockedGroups == nil { + if e.ComplexityRoot.Entity.BlockedGroups == nil { break } @@ -15068,10 +15051,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Entity.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Entity.campaigns": - if e.complexity.Entity.Campaigns == nil { + if e.ComplexityRoot.Entity.Campaigns == nil { break } @@ -15080,10 +15063,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Entity.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Entity.contacts": - if e.complexity.Entity.Contacts == nil { + if e.ComplexityRoot.Entity.Contacts == nil { break } @@ -15092,59 +15075,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true + return e.ComplexityRoot.Entity.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true case "Entity.contractEndDate": - if e.complexity.Entity.ContractEndDate == nil { + if e.ComplexityRoot.Entity.ContractEndDate == nil { break } - return e.complexity.Entity.ContractEndDate(childComplexity), true + return e.ComplexityRoot.Entity.ContractEndDate(childComplexity), true case "Entity.contractRenewalAt": - if e.complexity.Entity.ContractRenewalAt == nil { + if e.ComplexityRoot.Entity.ContractRenewalAt == nil { break } - return e.complexity.Entity.ContractRenewalAt(childComplexity), true + return e.ComplexityRoot.Entity.ContractRenewalAt(childComplexity), true case "Entity.contractStartDate": - if e.complexity.Entity.ContractStartDate == nil { + if e.ComplexityRoot.Entity.ContractStartDate == nil { break } - return e.complexity.Entity.ContractStartDate(childComplexity), true + return e.ComplexityRoot.Entity.ContractStartDate(childComplexity), true case "Entity.createdAt": - if e.complexity.Entity.CreatedAt == nil { + if e.ComplexityRoot.Entity.CreatedAt == nil { break } - return e.complexity.Entity.CreatedAt(childComplexity), true + return e.ComplexityRoot.Entity.CreatedAt(childComplexity), true case "Entity.createdBy": - if e.complexity.Entity.CreatedBy == nil { + if e.ComplexityRoot.Entity.CreatedBy == nil { break } - return e.complexity.Entity.CreatedBy(childComplexity), true + return e.ComplexityRoot.Entity.CreatedBy(childComplexity), true case "Entity.description": - if e.complexity.Entity.Description == nil { + if e.ComplexityRoot.Entity.Description == nil { break } - return e.complexity.Entity.Description(childComplexity), true + return e.ComplexityRoot.Entity.Description(childComplexity), true case "Entity.displayName": - if e.complexity.Entity.DisplayName == nil { + if e.ComplexityRoot.Entity.DisplayName == nil { break } - return e.complexity.Entity.DisplayName(childComplexity), true + return e.ComplexityRoot.Entity.DisplayName(childComplexity), true case "Entity.documents": - if e.complexity.Entity.Documents == nil { + if e.ComplexityRoot.Entity.Documents == nil { break } @@ -15153,17 +15136,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Documents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true + return e.ComplexityRoot.Entity.Documents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true case "Entity.domains": - if e.complexity.Entity.Domains == nil { + if e.ComplexityRoot.Entity.Domains == nil { break } - return e.complexity.Entity.Domains(childComplexity), true + return e.ComplexityRoot.Entity.Domains(childComplexity), true case "Entity.editors": - if e.complexity.Entity.Editors == nil { + if e.ComplexityRoot.Entity.Editors == nil { break } @@ -15172,10 +15155,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Entity.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Entity.employerIdentityHolders": - if e.complexity.Entity.EmployerIdentityHolders == nil { + if e.ComplexityRoot.Entity.EmployerIdentityHolders == nil { break } @@ -15184,108 +15167,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.EmployerIdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Entity.EmployerIdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Entity.entityRelationshipState": - if e.complexity.Entity.EntityRelationshipState == nil { + if e.ComplexityRoot.Entity.EntityRelationshipState == nil { break } - return e.complexity.Entity.EntityRelationshipState(childComplexity), true + return e.ComplexityRoot.Entity.EntityRelationshipState(childComplexity), true case "Entity.entityRelationshipStateID": - if e.complexity.Entity.EntityRelationshipStateID == nil { + if e.ComplexityRoot.Entity.EntityRelationshipStateID == nil { break } - return e.complexity.Entity.EntityRelationshipStateID(childComplexity), true + return e.ComplexityRoot.Entity.EntityRelationshipStateID(childComplexity), true case "Entity.entityRelationshipStateName": - if e.complexity.Entity.EntityRelationshipStateName == nil { + if e.ComplexityRoot.Entity.EntityRelationshipStateName == nil { break } - return e.complexity.Entity.EntityRelationshipStateName(childComplexity), true + return e.ComplexityRoot.Entity.EntityRelationshipStateName(childComplexity), true case "Entity.entitySecurityQuestionnaireStatus": - if e.complexity.Entity.EntitySecurityQuestionnaireStatus == nil { + if e.ComplexityRoot.Entity.EntitySecurityQuestionnaireStatus == nil { break } - return e.complexity.Entity.EntitySecurityQuestionnaireStatus(childComplexity), true + return e.ComplexityRoot.Entity.EntitySecurityQuestionnaireStatus(childComplexity), true case "Entity.entitySecurityQuestionnaireStatusID": - if e.complexity.Entity.EntitySecurityQuestionnaireStatusID == nil { + if e.ComplexityRoot.Entity.EntitySecurityQuestionnaireStatusID == nil { break } - return e.complexity.Entity.EntitySecurityQuestionnaireStatusID(childComplexity), true + return e.ComplexityRoot.Entity.EntitySecurityQuestionnaireStatusID(childComplexity), true case "Entity.entitySecurityQuestionnaireStatusName": - if e.complexity.Entity.EntitySecurityQuestionnaireStatusName == nil { + if e.ComplexityRoot.Entity.EntitySecurityQuestionnaireStatusName == nil { break } - return e.complexity.Entity.EntitySecurityQuestionnaireStatusName(childComplexity), true + return e.ComplexityRoot.Entity.EntitySecurityQuestionnaireStatusName(childComplexity), true case "Entity.entitySourceType": - if e.complexity.Entity.EntitySourceType == nil { + if e.ComplexityRoot.Entity.EntitySourceType == nil { break } - return e.complexity.Entity.EntitySourceType(childComplexity), true + return e.ComplexityRoot.Entity.EntitySourceType(childComplexity), true case "Entity.entitySourceTypeID": - if e.complexity.Entity.EntitySourceTypeID == nil { + if e.ComplexityRoot.Entity.EntitySourceTypeID == nil { break } - return e.complexity.Entity.EntitySourceTypeID(childComplexity), true + return e.ComplexityRoot.Entity.EntitySourceTypeID(childComplexity), true case "Entity.entitySourceTypeName": - if e.complexity.Entity.EntitySourceTypeName == nil { + if e.ComplexityRoot.Entity.EntitySourceTypeName == nil { break } - return e.complexity.Entity.EntitySourceTypeName(childComplexity), true + return e.ComplexityRoot.Entity.EntitySourceTypeName(childComplexity), true case "Entity.entityType": - if e.complexity.Entity.EntityType == nil { + if e.ComplexityRoot.Entity.EntityType == nil { break } - return e.complexity.Entity.EntityType(childComplexity), true + return e.ComplexityRoot.Entity.EntityType(childComplexity), true case "Entity.entityTypeID": - if e.complexity.Entity.EntityTypeID == nil { + if e.ComplexityRoot.Entity.EntityTypeID == nil { break } - return e.complexity.Entity.EntityTypeID(childComplexity), true + return e.ComplexityRoot.Entity.EntityTypeID(childComplexity), true case "Entity.environment": - if e.complexity.Entity.Environment == nil { + if e.ComplexityRoot.Entity.Environment == nil { break } - return e.complexity.Entity.Environment(childComplexity), true + return e.ComplexityRoot.Entity.Environment(childComplexity), true case "Entity.environmentID": - if e.complexity.Entity.EnvironmentID == nil { + if e.ComplexityRoot.Entity.EnvironmentID == nil { break } - return e.complexity.Entity.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Entity.EnvironmentID(childComplexity), true case "Entity.environmentName": - if e.complexity.Entity.EnvironmentName == nil { + if e.ComplexityRoot.Entity.EnvironmentName == nil { break } - return e.complexity.Entity.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Entity.EnvironmentName(childComplexity), true case "Entity.files": - if e.complexity.Entity.Files == nil { + if e.ComplexityRoot.Entity.Files == nil { break } @@ -15294,24 +15277,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Entity.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Entity.hasSoc2": - if e.complexity.Entity.HasSoc2 == nil { + if e.ComplexityRoot.Entity.HasSoc2 == nil { break } - return e.complexity.Entity.HasSoc2(childComplexity), true + return e.ComplexityRoot.Entity.HasSoc2(childComplexity), true case "Entity.id": - if e.complexity.Entity.ID == nil { + if e.ComplexityRoot.Entity.ID == nil { break } - return e.complexity.Entity.ID(childComplexity), true + return e.ComplexityRoot.Entity.ID(childComplexity), true case "Entity.identityHolders": - if e.complexity.Entity.IdentityHolders == nil { + if e.ComplexityRoot.Entity.IdentityHolders == nil { break } @@ -15320,10 +15303,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Entity.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Entity.integrations": - if e.complexity.Entity.Integrations == nil { + if e.ComplexityRoot.Entity.Integrations == nil { break } @@ -15332,101 +15315,101 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Entity.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Entity.internalNotes": - if e.complexity.Entity.InternalNotes == nil { + if e.ComplexityRoot.Entity.InternalNotes == nil { break } - return e.complexity.Entity.InternalNotes(childComplexity), true + return e.ComplexityRoot.Entity.InternalNotes(childComplexity), true case "Entity.internalOwner": - if e.complexity.Entity.InternalOwner == nil { + if e.ComplexityRoot.Entity.InternalOwner == nil { break } - return e.complexity.Entity.InternalOwner(childComplexity), true + return e.ComplexityRoot.Entity.InternalOwner(childComplexity), true case "Entity.internalOwnerGroup": - if e.complexity.Entity.InternalOwnerGroup == nil { + if e.ComplexityRoot.Entity.InternalOwnerGroup == nil { break } - return e.complexity.Entity.InternalOwnerGroup(childComplexity), true + return e.ComplexityRoot.Entity.InternalOwnerGroup(childComplexity), true case "Entity.internalOwnerGroupID": - if e.complexity.Entity.InternalOwnerGroupID == nil { + if e.ComplexityRoot.Entity.InternalOwnerGroupID == nil { break } - return e.complexity.Entity.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.Entity.InternalOwnerGroupID(childComplexity), true case "Entity.internalOwnerUser": - if e.complexity.Entity.InternalOwnerUser == nil { + if e.ComplexityRoot.Entity.InternalOwnerUser == nil { break } - return e.complexity.Entity.InternalOwnerUser(childComplexity), true + return e.ComplexityRoot.Entity.InternalOwnerUser(childComplexity), true case "Entity.internalOwnerUserID": - if e.complexity.Entity.InternalOwnerUserID == nil { + if e.ComplexityRoot.Entity.InternalOwnerUserID == nil { break } - return e.complexity.Entity.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.Entity.InternalOwnerUserID(childComplexity), true case "Entity.lastReviewedAt": - if e.complexity.Entity.LastReviewedAt == nil { + if e.ComplexityRoot.Entity.LastReviewedAt == nil { break } - return e.complexity.Entity.LastReviewedAt(childComplexity), true + return e.ComplexityRoot.Entity.LastReviewedAt(childComplexity), true case "Entity.linkedAssetIds": - if e.complexity.Entity.LinkedAssetIds == nil { + if e.ComplexityRoot.Entity.LinkedAssetIds == nil { break } - return e.complexity.Entity.LinkedAssetIds(childComplexity), true + return e.ComplexityRoot.Entity.LinkedAssetIds(childComplexity), true case "Entity.links": - if e.complexity.Entity.Links == nil { + if e.ComplexityRoot.Entity.Links == nil { break } - return e.complexity.Entity.Links(childComplexity), true + return e.ComplexityRoot.Entity.Links(childComplexity), true case "Entity.mfaEnforced": - if e.complexity.Entity.MfaEnforced == nil { + if e.ComplexityRoot.Entity.MfaEnforced == nil { break } - return e.complexity.Entity.MfaEnforced(childComplexity), true + return e.ComplexityRoot.Entity.MfaEnforced(childComplexity), true case "Entity.mfaSupported": - if e.complexity.Entity.MfaSupported == nil { + if e.ComplexityRoot.Entity.MfaSupported == nil { break } - return e.complexity.Entity.MfaSupported(childComplexity), true + return e.ComplexityRoot.Entity.MfaSupported(childComplexity), true case "Entity.name": - if e.complexity.Entity.Name == nil { + if e.ComplexityRoot.Entity.Name == nil { break } - return e.complexity.Entity.Name(childComplexity), true + return e.ComplexityRoot.Entity.Name(childComplexity), true case "Entity.nextReviewAt": - if e.complexity.Entity.NextReviewAt == nil { + if e.ComplexityRoot.Entity.NextReviewAt == nil { break } - return e.complexity.Entity.NextReviewAt(childComplexity), true + return e.ComplexityRoot.Entity.NextReviewAt(childComplexity), true case "Entity.notes": - if e.complexity.Entity.Notes == nil { + if e.ComplexityRoot.Entity.Notes == nil { break } @@ -15435,10 +15418,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Entity.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Entity.outOfScopePlatforms": - if e.complexity.Entity.OutOfScopePlatforms == nil { + if e.ComplexityRoot.Entity.OutOfScopePlatforms == nil { break } @@ -15447,24 +15430,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.OutOfScopePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Entity.OutOfScopePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Entity.owner": - if e.complexity.Entity.Owner == nil { + if e.ComplexityRoot.Entity.Owner == nil { break } - return e.complexity.Entity.Owner(childComplexity), true + return e.ComplexityRoot.Entity.Owner(childComplexity), true case "Entity.ownerID": - if e.complexity.Entity.OwnerID == nil { + if e.ComplexityRoot.Entity.OwnerID == nil { break } - return e.complexity.Entity.OwnerID(childComplexity), true + return e.ComplexityRoot.Entity.OwnerID(childComplexity), true case "Entity.platforms": - if e.complexity.Entity.Platforms == nil { + if e.ComplexityRoot.Entity.Platforms == nil { break } @@ -15473,87 +15456,87 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Entity.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Entity.providedServices": - if e.complexity.Entity.ProvidedServices == nil { + if e.ComplexityRoot.Entity.ProvidedServices == nil { break } - return e.complexity.Entity.ProvidedServices(childComplexity), true + return e.ComplexityRoot.Entity.ProvidedServices(childComplexity), true case "Entity.renewalRisk": - if e.complexity.Entity.RenewalRisk == nil { + if e.ComplexityRoot.Entity.RenewalRisk == nil { break } - return e.complexity.Entity.RenewalRisk(childComplexity), true + return e.ComplexityRoot.Entity.RenewalRisk(childComplexity), true case "Entity.reviewFrequency": - if e.complexity.Entity.ReviewFrequency == nil { + if e.ComplexityRoot.Entity.ReviewFrequency == nil { break } - return e.complexity.Entity.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.Entity.ReviewFrequency(childComplexity), true case "Entity.reviewedBy": - if e.complexity.Entity.ReviewedBy == nil { + if e.ComplexityRoot.Entity.ReviewedBy == nil { break } - return e.complexity.Entity.ReviewedBy(childComplexity), true + return e.ComplexityRoot.Entity.ReviewedBy(childComplexity), true case "Entity.reviewedByGroup": - if e.complexity.Entity.ReviewedByGroup == nil { + if e.ComplexityRoot.Entity.ReviewedByGroup == nil { break } - return e.complexity.Entity.ReviewedByGroup(childComplexity), true + return e.ComplexityRoot.Entity.ReviewedByGroup(childComplexity), true case "Entity.reviewedByGroupID": - if e.complexity.Entity.ReviewedByGroupID == nil { + if e.ComplexityRoot.Entity.ReviewedByGroupID == nil { break } - return e.complexity.Entity.ReviewedByGroupID(childComplexity), true + return e.ComplexityRoot.Entity.ReviewedByGroupID(childComplexity), true case "Entity.reviewedByUser": - if e.complexity.Entity.ReviewedByUser == nil { + if e.ComplexityRoot.Entity.ReviewedByUser == nil { break } - return e.complexity.Entity.ReviewedByUser(childComplexity), true + return e.ComplexityRoot.Entity.ReviewedByUser(childComplexity), true case "Entity.reviewedByUserID": - if e.complexity.Entity.ReviewedByUserID == nil { + if e.ComplexityRoot.Entity.ReviewedByUserID == nil { break } - return e.complexity.Entity.ReviewedByUserID(childComplexity), true + return e.ComplexityRoot.Entity.ReviewedByUserID(childComplexity), true case "Entity.riskRating": - if e.complexity.Entity.RiskRating == nil { + if e.ComplexityRoot.Entity.RiskRating == nil { break } - return e.complexity.Entity.RiskRating(childComplexity), true + return e.ComplexityRoot.Entity.RiskRating(childComplexity), true case "Entity.riskScore": - if e.complexity.Entity.RiskScore == nil { + if e.ComplexityRoot.Entity.RiskScore == nil { break } - return e.complexity.Entity.RiskScore(childComplexity), true + return e.ComplexityRoot.Entity.RiskScore(childComplexity), true case "Entity.ssoEnforced": - if e.complexity.Entity.SSOEnforced == nil { + if e.ComplexityRoot.Entity.SSOEnforced == nil { break } - return e.complexity.Entity.SSOEnforced(childComplexity), true + return e.ComplexityRoot.Entity.SSOEnforced(childComplexity), true case "Entity.scans": - if e.complexity.Entity.Scans == nil { + if e.ComplexityRoot.Entity.Scans == nil { break } @@ -15562,38 +15545,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Entity.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Entity.scope": - if e.complexity.Entity.Scope == nil { + if e.ComplexityRoot.Entity.Scope == nil { break } - return e.complexity.Entity.Scope(childComplexity), true + return e.ComplexityRoot.Entity.Scope(childComplexity), true case "Entity.scopeID": - if e.complexity.Entity.ScopeID == nil { + if e.ComplexityRoot.Entity.ScopeID == nil { break } - return e.complexity.Entity.ScopeID(childComplexity), true + return e.ComplexityRoot.Entity.ScopeID(childComplexity), true case "Entity.scopeName": - if e.complexity.Entity.ScopeName == nil { + if e.ComplexityRoot.Entity.ScopeName == nil { break } - return e.complexity.Entity.ScopeName(childComplexity), true + return e.ComplexityRoot.Entity.ScopeName(childComplexity), true case "Entity.soc2PeriodEnd": - if e.complexity.Entity.Soc2PeriodEnd == nil { + if e.ComplexityRoot.Entity.Soc2PeriodEnd == nil { break } - return e.complexity.Entity.Soc2PeriodEnd(childComplexity), true + return e.ComplexityRoot.Entity.Soc2PeriodEnd(childComplexity), true case "Entity.sourcePlatforms": - if e.complexity.Entity.SourcePlatforms == nil { + if e.ComplexityRoot.Entity.SourcePlatforms == nil { break } @@ -15602,31 +15585,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.SourcePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Entity.SourcePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Entity.spendCurrency": - if e.complexity.Entity.SpendCurrency == nil { + if e.ComplexityRoot.Entity.SpendCurrency == nil { break } - return e.complexity.Entity.SpendCurrency(childComplexity), true + return e.ComplexityRoot.Entity.SpendCurrency(childComplexity), true case "Entity.status": - if e.complexity.Entity.Status == nil { + if e.ComplexityRoot.Entity.Status == nil { break } - return e.complexity.Entity.Status(childComplexity), true + return e.ComplexityRoot.Entity.Status(childComplexity), true case "Entity.statusPageURL": - if e.complexity.Entity.StatusPageURL == nil { + if e.ComplexityRoot.Entity.StatusPageURL == nil { break } - return e.complexity.Entity.StatusPageURL(childComplexity), true + return e.ComplexityRoot.Entity.StatusPageURL(childComplexity), true case "Entity.subprocessors": - if e.complexity.Entity.Subprocessors == nil { + if e.ComplexityRoot.Entity.Subprocessors == nil { break } @@ -15635,66 +15618,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Subprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubprocessorOrder), args["where"].(*generated.SubprocessorWhereInput)), true + return e.ComplexityRoot.Entity.Subprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubprocessorOrder), args["where"].(*generated.SubprocessorWhereInput)), true case "Entity.systemInternalID": - if e.complexity.Entity.SystemInternalID == nil { + if e.ComplexityRoot.Entity.SystemInternalID == nil { break } - return e.complexity.Entity.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Entity.SystemInternalID(childComplexity), true case "Entity.systemOwned": - if e.complexity.Entity.SystemOwned == nil { + if e.ComplexityRoot.Entity.SystemOwned == nil { break } - return e.complexity.Entity.SystemOwned(childComplexity), true + return e.ComplexityRoot.Entity.SystemOwned(childComplexity), true case "Entity.tags": - if e.complexity.Entity.Tags == nil { + if e.ComplexityRoot.Entity.Tags == nil { break } - return e.complexity.Entity.Tags(childComplexity), true + return e.ComplexityRoot.Entity.Tags(childComplexity), true case "Entity.terminationNoticeDays": - if e.complexity.Entity.TerminationNoticeDays == nil { + if e.ComplexityRoot.Entity.TerminationNoticeDays == nil { break } - return e.complexity.Entity.TerminationNoticeDays(childComplexity), true + return e.ComplexityRoot.Entity.TerminationNoticeDays(childComplexity), true case "Entity.tier": - if e.complexity.Entity.Tier == nil { + if e.ComplexityRoot.Entity.Tier == nil { break } - return e.complexity.Entity.Tier(childComplexity), true + return e.ComplexityRoot.Entity.Tier(childComplexity), true case "Entity.updatedAt": - if e.complexity.Entity.UpdatedAt == nil { + if e.ComplexityRoot.Entity.UpdatedAt == nil { break } - return e.complexity.Entity.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Entity.UpdatedAt(childComplexity), true case "Entity.updatedBy": - if e.complexity.Entity.UpdatedBy == nil { + if e.ComplexityRoot.Entity.UpdatedBy == nil { break } - return e.complexity.Entity.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Entity.UpdatedBy(childComplexity), true case "Entity.vendorMetadata": - if e.complexity.Entity.VendorMetadata == nil { + if e.ComplexityRoot.Entity.VendorMetadata == nil { break } - return e.complexity.Entity.VendorMetadata(childComplexity), true + return e.ComplexityRoot.Entity.VendorMetadata(childComplexity), true case "Entity.viewers": - if e.complexity.Entity.Viewers == nil { + if e.ComplexityRoot.Entity.Viewers == nil { break } @@ -15703,101 +15686,101 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Entity.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Entity.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "EntityBulkCreatePayload.entities": - if e.complexity.EntityBulkCreatePayload.Entities == nil { + if e.ComplexityRoot.EntityBulkCreatePayload.Entities == nil { break } - return e.complexity.EntityBulkCreatePayload.Entities(childComplexity), true + return e.ComplexityRoot.EntityBulkCreatePayload.Entities(childComplexity), true case "EntityBulkDeletePayload.deletedIDs": - if e.complexity.EntityBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.EntityBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.EntityBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.EntityBulkDeletePayload.DeletedIDs(childComplexity), true case "EntityBulkUpdatePayload.entities": - if e.complexity.EntityBulkUpdatePayload.Entities == nil { + if e.ComplexityRoot.EntityBulkUpdatePayload.Entities == nil { break } - return e.complexity.EntityBulkUpdatePayload.Entities(childComplexity), true + return e.ComplexityRoot.EntityBulkUpdatePayload.Entities(childComplexity), true case "EntityBulkUpdatePayload.updatedIDs": - if e.complexity.EntityBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.EntityBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.EntityBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.EntityBulkUpdatePayload.UpdatedIDs(childComplexity), true case "EntityConnection.edges": - if e.complexity.EntityConnection.Edges == nil { + if e.ComplexityRoot.EntityConnection.Edges == nil { break } - return e.complexity.EntityConnection.Edges(childComplexity), true + return e.ComplexityRoot.EntityConnection.Edges(childComplexity), true case "EntityConnection.pageInfo": - if e.complexity.EntityConnection.PageInfo == nil { + if e.ComplexityRoot.EntityConnection.PageInfo == nil { break } - return e.complexity.EntityConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EntityConnection.PageInfo(childComplexity), true case "EntityConnection.totalCount": - if e.complexity.EntityConnection.TotalCount == nil { + if e.ComplexityRoot.EntityConnection.TotalCount == nil { break } - return e.complexity.EntityConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EntityConnection.TotalCount(childComplexity), true case "EntityCreatePayload.entity": - if e.complexity.EntityCreatePayload.Entity == nil { + if e.ComplexityRoot.EntityCreatePayload.Entity == nil { break } - return e.complexity.EntityCreatePayload.Entity(childComplexity), true + return e.ComplexityRoot.EntityCreatePayload.Entity(childComplexity), true case "EntityDeletePayload.deletedID": - if e.complexity.EntityDeletePayload.DeletedID == nil { + if e.ComplexityRoot.EntityDeletePayload.DeletedID == nil { break } - return e.complexity.EntityDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.EntityDeletePayload.DeletedID(childComplexity), true case "EntityEdge.cursor": - if e.complexity.EntityEdge.Cursor == nil { + if e.ComplexityRoot.EntityEdge.Cursor == nil { break } - return e.complexity.EntityEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EntityEdge.Cursor(childComplexity), true case "EntityEdge.node": - if e.complexity.EntityEdge.Node == nil { + if e.ComplexityRoot.EntityEdge.Node == nil { break } - return e.complexity.EntityEdge.Node(childComplexity), true + return e.ComplexityRoot.EntityEdge.Node(childComplexity), true case "EntityType.createdAt": - if e.complexity.EntityType.CreatedAt == nil { + if e.ComplexityRoot.EntityType.CreatedAt == nil { break } - return e.complexity.EntityType.CreatedAt(childComplexity), true + return e.ComplexityRoot.EntityType.CreatedAt(childComplexity), true case "EntityType.createdBy": - if e.complexity.EntityType.CreatedBy == nil { + if e.ComplexityRoot.EntityType.CreatedBy == nil { break } - return e.complexity.EntityType.CreatedBy(childComplexity), true + return e.ComplexityRoot.EntityType.CreatedBy(childComplexity), true case "EntityType.entities": - if e.complexity.EntityType.Entities == nil { + if e.ComplexityRoot.EntityType.Entities == nil { break } @@ -15806,206 +15789,206 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.EntityType.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.EntityType.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "EntityType.id": - if e.complexity.EntityType.ID == nil { + if e.ComplexityRoot.EntityType.ID == nil { break } - return e.complexity.EntityType.ID(childComplexity), true + return e.ComplexityRoot.EntityType.ID(childComplexity), true case "EntityType.internalNotes": - if e.complexity.EntityType.InternalNotes == nil { + if e.ComplexityRoot.EntityType.InternalNotes == nil { break } - return e.complexity.EntityType.InternalNotes(childComplexity), true + return e.ComplexityRoot.EntityType.InternalNotes(childComplexity), true case "EntityType.name": - if e.complexity.EntityType.Name == nil { + if e.ComplexityRoot.EntityType.Name == nil { break } - return e.complexity.EntityType.Name(childComplexity), true + return e.ComplexityRoot.EntityType.Name(childComplexity), true case "EntityType.owner": - if e.complexity.EntityType.Owner == nil { + if e.ComplexityRoot.EntityType.Owner == nil { break } - return e.complexity.EntityType.Owner(childComplexity), true + return e.ComplexityRoot.EntityType.Owner(childComplexity), true case "EntityType.ownerID": - if e.complexity.EntityType.OwnerID == nil { + if e.ComplexityRoot.EntityType.OwnerID == nil { break } - return e.complexity.EntityType.OwnerID(childComplexity), true + return e.ComplexityRoot.EntityType.OwnerID(childComplexity), true case "EntityType.systemInternalID": - if e.complexity.EntityType.SystemInternalID == nil { + if e.ComplexityRoot.EntityType.SystemInternalID == nil { break } - return e.complexity.EntityType.SystemInternalID(childComplexity), true + return e.ComplexityRoot.EntityType.SystemInternalID(childComplexity), true case "EntityType.systemOwned": - if e.complexity.EntityType.SystemOwned == nil { + if e.ComplexityRoot.EntityType.SystemOwned == nil { break } - return e.complexity.EntityType.SystemOwned(childComplexity), true + return e.ComplexityRoot.EntityType.SystemOwned(childComplexity), true case "EntityType.tags": - if e.complexity.EntityType.Tags == nil { + if e.ComplexityRoot.EntityType.Tags == nil { break } - return e.complexity.EntityType.Tags(childComplexity), true + return e.ComplexityRoot.EntityType.Tags(childComplexity), true case "EntityType.updatedAt": - if e.complexity.EntityType.UpdatedAt == nil { + if e.ComplexityRoot.EntityType.UpdatedAt == nil { break } - return e.complexity.EntityType.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EntityType.UpdatedAt(childComplexity), true case "EntityType.updatedBy": - if e.complexity.EntityType.UpdatedBy == nil { + if e.ComplexityRoot.EntityType.UpdatedBy == nil { break } - return e.complexity.EntityType.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EntityType.UpdatedBy(childComplexity), true case "EntityTypeBulkCreatePayload.entityTypes": - if e.complexity.EntityTypeBulkCreatePayload.EntityTypes == nil { + if e.ComplexityRoot.EntityTypeBulkCreatePayload.EntityTypes == nil { break } - return e.complexity.EntityTypeBulkCreatePayload.EntityTypes(childComplexity), true + return e.ComplexityRoot.EntityTypeBulkCreatePayload.EntityTypes(childComplexity), true case "EntityTypeBulkDeletePayload.deletedIDs": - if e.complexity.EntityTypeBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.EntityTypeBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.EntityTypeBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.EntityTypeBulkDeletePayload.DeletedIDs(childComplexity), true case "EntityTypeBulkUpdatePayload.entityTypes": - if e.complexity.EntityTypeBulkUpdatePayload.EntityTypes == nil { + if e.ComplexityRoot.EntityTypeBulkUpdatePayload.EntityTypes == nil { break } - return e.complexity.EntityTypeBulkUpdatePayload.EntityTypes(childComplexity), true + return e.ComplexityRoot.EntityTypeBulkUpdatePayload.EntityTypes(childComplexity), true case "EntityTypeBulkUpdatePayload.updatedIDs": - if e.complexity.EntityTypeBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.EntityTypeBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.EntityTypeBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.EntityTypeBulkUpdatePayload.UpdatedIDs(childComplexity), true case "EntityTypeConnection.edges": - if e.complexity.EntityTypeConnection.Edges == nil { + if e.ComplexityRoot.EntityTypeConnection.Edges == nil { break } - return e.complexity.EntityTypeConnection.Edges(childComplexity), true + return e.ComplexityRoot.EntityTypeConnection.Edges(childComplexity), true case "EntityTypeConnection.pageInfo": - if e.complexity.EntityTypeConnection.PageInfo == nil { + if e.ComplexityRoot.EntityTypeConnection.PageInfo == nil { break } - return e.complexity.EntityTypeConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EntityTypeConnection.PageInfo(childComplexity), true case "EntityTypeConnection.totalCount": - if e.complexity.EntityTypeConnection.TotalCount == nil { + if e.ComplexityRoot.EntityTypeConnection.TotalCount == nil { break } - return e.complexity.EntityTypeConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EntityTypeConnection.TotalCount(childComplexity), true case "EntityTypeCreatePayload.entityType": - if e.complexity.EntityTypeCreatePayload.EntityType == nil { + if e.ComplexityRoot.EntityTypeCreatePayload.EntityType == nil { break } - return e.complexity.EntityTypeCreatePayload.EntityType(childComplexity), true + return e.ComplexityRoot.EntityTypeCreatePayload.EntityType(childComplexity), true case "EntityTypeDeletePayload.deletedID": - if e.complexity.EntityTypeDeletePayload.DeletedID == nil { + if e.ComplexityRoot.EntityTypeDeletePayload.DeletedID == nil { break } - return e.complexity.EntityTypeDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.EntityTypeDeletePayload.DeletedID(childComplexity), true case "EntityTypeEdge.cursor": - if e.complexity.EntityTypeEdge.Cursor == nil { + if e.ComplexityRoot.EntityTypeEdge.Cursor == nil { break } - return e.complexity.EntityTypeEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EntityTypeEdge.Cursor(childComplexity), true case "EntityTypeEdge.node": - if e.complexity.EntityTypeEdge.Node == nil { + if e.ComplexityRoot.EntityTypeEdge.Node == nil { break } - return e.complexity.EntityTypeEdge.Node(childComplexity), true + return e.ComplexityRoot.EntityTypeEdge.Node(childComplexity), true case "EntityTypeUpdatePayload.entityType": - if e.complexity.EntityTypeUpdatePayload.EntityType == nil { + if e.ComplexityRoot.EntityTypeUpdatePayload.EntityType == nil { break } - return e.complexity.EntityTypeUpdatePayload.EntityType(childComplexity), true + return e.ComplexityRoot.EntityTypeUpdatePayload.EntityType(childComplexity), true case "EntityUpdatePayload.entity": - if e.complexity.EntityUpdatePayload.Entity == nil { + if e.ComplexityRoot.EntityUpdatePayload.Entity == nil { break } - return e.complexity.EntityUpdatePayload.Entity(childComplexity), true + return e.ComplexityRoot.EntityUpdatePayload.Entity(childComplexity), true case "Event.correlationID": - if e.complexity.Event.CorrelationID == nil { + if e.ComplexityRoot.Event.CorrelationID == nil { break } - return e.complexity.Event.CorrelationID(childComplexity), true + return e.ComplexityRoot.Event.CorrelationID(childComplexity), true case "Event.createdAt": - if e.complexity.Event.CreatedAt == nil { + if e.ComplexityRoot.Event.CreatedAt == nil { break } - return e.complexity.Event.CreatedAt(childComplexity), true + return e.ComplexityRoot.Event.CreatedAt(childComplexity), true case "Event.createdBy": - if e.complexity.Event.CreatedBy == nil { + if e.ComplexityRoot.Event.CreatedBy == nil { break } - return e.complexity.Event.CreatedBy(childComplexity), true + return e.ComplexityRoot.Event.CreatedBy(childComplexity), true case "Event.eventID": - if e.complexity.Event.EventID == nil { + if e.ComplexityRoot.Event.EventID == nil { break } - return e.complexity.Event.EventID(childComplexity), true + return e.ComplexityRoot.Event.EventID(childComplexity), true case "Event.eventType": - if e.complexity.Event.EventType == nil { + if e.ComplexityRoot.Event.EventType == nil { break } - return e.complexity.Event.EventType(childComplexity), true + return e.ComplexityRoot.Event.EventType(childComplexity), true case "Event.files": - if e.complexity.Event.Files == nil { + if e.ComplexityRoot.Event.Files == nil { break } @@ -16014,10 +15997,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Event.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Event.groupMemberships": - if e.complexity.Event.GroupMemberships == nil { + if e.ComplexityRoot.Event.GroupMemberships == nil { break } @@ -16026,10 +16009,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.GroupMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true + return e.ComplexityRoot.Event.GroupMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true case "Event.groups": - if e.complexity.Event.Groups == nil { + if e.ComplexityRoot.Event.Groups == nil { break } @@ -16038,17 +16021,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Event.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Event.id": - if e.complexity.Event.ID == nil { + if e.ComplexityRoot.Event.ID == nil { break } - return e.complexity.Event.ID(childComplexity), true + return e.ComplexityRoot.Event.ID(childComplexity), true case "Event.integrations": - if e.complexity.Event.Integrations == nil { + if e.ComplexityRoot.Event.Integrations == nil { break } @@ -16057,10 +16040,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Event.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Event.invites": - if e.complexity.Event.Invites == nil { + if e.ComplexityRoot.Event.Invites == nil { break } @@ -16069,17 +16052,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Invites(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InviteOrder), args["where"].(*generated.InviteWhereInput)), true + return e.ComplexityRoot.Event.Invites(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InviteOrder), args["where"].(*generated.InviteWhereInput)), true case "Event.metadata": - if e.complexity.Event.Metadata == nil { + if e.ComplexityRoot.Event.Metadata == nil { break } - return e.complexity.Event.Metadata(childComplexity), true + return e.ComplexityRoot.Event.Metadata(childComplexity), true case "Event.orgMemberships": - if e.complexity.Event.OrgMemberships == nil { + if e.ComplexityRoot.Event.OrgMemberships == nil { break } @@ -16088,10 +16071,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.OrgMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true + return e.ComplexityRoot.Event.OrgMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true case "Event.orgSubscriptions": - if e.complexity.Event.OrgSubscriptions == nil { + if e.ComplexityRoot.Event.OrgSubscriptions == nil { break } @@ -16100,10 +16083,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.OrgSubscriptions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.OrgSubscriptionOrder), args["where"].(*generated.OrgSubscriptionWhereInput)), true + return e.ComplexityRoot.Event.OrgSubscriptions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.OrgSubscriptionOrder), args["where"].(*generated.OrgSubscriptionWhereInput)), true case "Event.organizations": - if e.complexity.Event.Organizations == nil { + if e.ComplexityRoot.Event.Organizations == nil { break } @@ -16112,10 +16095,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true + return e.ComplexityRoot.Event.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true case "Event.personalAccessTokens": - if e.complexity.Event.PersonalAccessTokens == nil { + if e.ComplexityRoot.Event.PersonalAccessTokens == nil { break } @@ -16124,10 +16107,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true + return e.ComplexityRoot.Event.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true case "Event.secrets": - if e.complexity.Event.Secrets == nil { + if e.ComplexityRoot.Event.Secrets == nil { break } @@ -16136,10 +16119,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true + return e.ComplexityRoot.Event.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true case "Event.subscribers": - if e.complexity.Event.Subscribers == nil { + if e.ComplexityRoot.Event.Subscribers == nil { break } @@ -16148,31 +16131,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Subscribers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubscriberOrder), args["where"].(*generated.SubscriberWhereInput)), true + return e.ComplexityRoot.Event.Subscribers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubscriberOrder), args["where"].(*generated.SubscriberWhereInput)), true case "Event.tags": - if e.complexity.Event.Tags == nil { + if e.ComplexityRoot.Event.Tags == nil { break } - return e.complexity.Event.Tags(childComplexity), true + return e.ComplexityRoot.Event.Tags(childComplexity), true case "Event.updatedAt": - if e.complexity.Event.UpdatedAt == nil { + if e.ComplexityRoot.Event.UpdatedAt == nil { break } - return e.complexity.Event.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Event.UpdatedAt(childComplexity), true case "Event.updatedBy": - if e.complexity.Event.UpdatedBy == nil { + if e.ComplexityRoot.Event.UpdatedBy == nil { break } - return e.complexity.Event.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Event.UpdatedBy(childComplexity), true case "Event.users": - if e.complexity.Event.Users == nil { + if e.ComplexityRoot.Event.Users == nil { break } @@ -16181,108 +16164,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Event.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true + return e.ComplexityRoot.Event.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true case "EventBulkCreatePayload.events": - if e.complexity.EventBulkCreatePayload.Events == nil { + if e.ComplexityRoot.EventBulkCreatePayload.Events == nil { break } - return e.complexity.EventBulkCreatePayload.Events(childComplexity), true + return e.ComplexityRoot.EventBulkCreatePayload.Events(childComplexity), true case "EventBulkDeletePayload.deletedIDs": - if e.complexity.EventBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.EventBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.EventBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.EventBulkDeletePayload.DeletedIDs(childComplexity), true case "EventBulkUpdatePayload.events": - if e.complexity.EventBulkUpdatePayload.Events == nil { + if e.ComplexityRoot.EventBulkUpdatePayload.Events == nil { break } - return e.complexity.EventBulkUpdatePayload.Events(childComplexity), true + return e.ComplexityRoot.EventBulkUpdatePayload.Events(childComplexity), true case "EventBulkUpdatePayload.updatedIDs": - if e.complexity.EventBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.EventBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.EventBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.EventBulkUpdatePayload.UpdatedIDs(childComplexity), true case "EventConnection.edges": - if e.complexity.EventConnection.Edges == nil { + if e.ComplexityRoot.EventConnection.Edges == nil { break } - return e.complexity.EventConnection.Edges(childComplexity), true + return e.ComplexityRoot.EventConnection.Edges(childComplexity), true case "EventConnection.pageInfo": - if e.complexity.EventConnection.PageInfo == nil { + if e.ComplexityRoot.EventConnection.PageInfo == nil { break } - return e.complexity.EventConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EventConnection.PageInfo(childComplexity), true case "EventConnection.totalCount": - if e.complexity.EventConnection.TotalCount == nil { + if e.ComplexityRoot.EventConnection.TotalCount == nil { break } - return e.complexity.EventConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EventConnection.TotalCount(childComplexity), true case "EventCreatePayload.event": - if e.complexity.EventCreatePayload.Event == nil { + if e.ComplexityRoot.EventCreatePayload.Event == nil { break } - return e.complexity.EventCreatePayload.Event(childComplexity), true + return e.ComplexityRoot.EventCreatePayload.Event(childComplexity), true case "EventDeletePayload.deletedID": - if e.complexity.EventDeletePayload.DeletedID == nil { + if e.ComplexityRoot.EventDeletePayload.DeletedID == nil { break } - return e.complexity.EventDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.EventDeletePayload.DeletedID(childComplexity), true case "EventEdge.cursor": - if e.complexity.EventEdge.Cursor == nil { + if e.ComplexityRoot.EventEdge.Cursor == nil { break } - return e.complexity.EventEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EventEdge.Cursor(childComplexity), true case "EventEdge.node": - if e.complexity.EventEdge.Node == nil { + if e.ComplexityRoot.EventEdge.Node == nil { break } - return e.complexity.EventEdge.Node(childComplexity), true + return e.ComplexityRoot.EventEdge.Node(childComplexity), true case "EventUpdatePayload.event": - if e.complexity.EventUpdatePayload.Event == nil { + if e.ComplexityRoot.EventUpdatePayload.Event == nil { break } - return e.complexity.EventUpdatePayload.Event(childComplexity), true + return e.ComplexityRoot.EventUpdatePayload.Event(childComplexity), true case "Evidence.activeWorkflowInstances": - if e.complexity.Evidence.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.Evidence.ActiveWorkflowInstances == nil { break } - return e.complexity.Evidence.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.Evidence.ActiveWorkflowInstances(childComplexity), true case "Evidence.collectionProcedure": - if e.complexity.Evidence.CollectionProcedure == nil { + if e.ComplexityRoot.Evidence.CollectionProcedure == nil { break } - return e.complexity.Evidence.CollectionProcedure(childComplexity), true + return e.ComplexityRoot.Evidence.CollectionProcedure(childComplexity), true case "Evidence.comments": - if e.complexity.Evidence.Comments == nil { + if e.ComplexityRoot.Evidence.Comments == nil { break } @@ -16291,10 +16274,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Evidence.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Evidence.controlImplementations": - if e.complexity.Evidence.ControlImplementations == nil { + if e.ComplexityRoot.Evidence.ControlImplementations == nil { break } @@ -16303,10 +16286,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Evidence.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Evidence.controlObjectives": - if e.complexity.Evidence.ControlObjectives == nil { + if e.ComplexityRoot.Evidence.ControlObjectives == nil { break } @@ -16315,10 +16298,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Evidence.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Evidence.controls": - if e.complexity.Evidence.Controls == nil { + if e.ComplexityRoot.Evidence.Controls == nil { break } @@ -16327,66 +16310,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Evidence.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Evidence.createdAt": - if e.complexity.Evidence.CreatedAt == nil { + if e.ComplexityRoot.Evidence.CreatedAt == nil { break } - return e.complexity.Evidence.CreatedAt(childComplexity), true + return e.ComplexityRoot.Evidence.CreatedAt(childComplexity), true case "Evidence.createdBy": - if e.complexity.Evidence.CreatedBy == nil { + if e.ComplexityRoot.Evidence.CreatedBy == nil { break } - return e.complexity.Evidence.CreatedBy(childComplexity), true + return e.ComplexityRoot.Evidence.CreatedBy(childComplexity), true case "Evidence.creationDate": - if e.complexity.Evidence.CreationDate == nil { + if e.ComplexityRoot.Evidence.CreationDate == nil { break } - return e.complexity.Evidence.CreationDate(childComplexity), true + return e.ComplexityRoot.Evidence.CreationDate(childComplexity), true case "Evidence.description": - if e.complexity.Evidence.Description == nil { + if e.ComplexityRoot.Evidence.Description == nil { break } - return e.complexity.Evidence.Description(childComplexity), true + return e.ComplexityRoot.Evidence.Description(childComplexity), true case "Evidence.displayID": - if e.complexity.Evidence.DisplayID == nil { + if e.ComplexityRoot.Evidence.DisplayID == nil { break } - return e.complexity.Evidence.DisplayID(childComplexity), true + return e.ComplexityRoot.Evidence.DisplayID(childComplexity), true case "Evidence.environment": - if e.complexity.Evidence.Environment == nil { + if e.ComplexityRoot.Evidence.Environment == nil { break } - return e.complexity.Evidence.Environment(childComplexity), true + return e.ComplexityRoot.Evidence.Environment(childComplexity), true case "Evidence.environmentID": - if e.complexity.Evidence.EnvironmentID == nil { + if e.ComplexityRoot.Evidence.EnvironmentID == nil { break } - return e.complexity.Evidence.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Evidence.EnvironmentID(childComplexity), true case "Evidence.environmentName": - if e.complexity.Evidence.EnvironmentName == nil { + if e.ComplexityRoot.Evidence.EnvironmentName == nil { break } - return e.complexity.Evidence.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Evidence.EnvironmentName(childComplexity), true case "Evidence.files": - if e.complexity.Evidence.Files == nil { + if e.ComplexityRoot.Evidence.Files == nil { break } @@ -16395,59 +16378,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Evidence.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Evidence.hasPendingWorkflow": - if e.complexity.Evidence.HasPendingWorkflow == nil { + if e.ComplexityRoot.Evidence.HasPendingWorkflow == nil { break } - return e.complexity.Evidence.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.Evidence.HasPendingWorkflow(childComplexity), true case "Evidence.hasWorkflowHistory": - if e.complexity.Evidence.HasWorkflowHistory == nil { + if e.ComplexityRoot.Evidence.HasWorkflowHistory == nil { break } - return e.complexity.Evidence.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.Evidence.HasWorkflowHistory(childComplexity), true case "Evidence.id": - if e.complexity.Evidence.ID == nil { + if e.ComplexityRoot.Evidence.ID == nil { break } - return e.complexity.Evidence.ID(childComplexity), true + return e.ComplexityRoot.Evidence.ID(childComplexity), true case "Evidence.isAutomated": - if e.complexity.Evidence.IsAutomated == nil { + if e.ComplexityRoot.Evidence.IsAutomated == nil { break } - return e.complexity.Evidence.IsAutomated(childComplexity), true + return e.ComplexityRoot.Evidence.IsAutomated(childComplexity), true case "Evidence.name": - if e.complexity.Evidence.Name == nil { + if e.ComplexityRoot.Evidence.Name == nil { break } - return e.complexity.Evidence.Name(childComplexity), true + return e.ComplexityRoot.Evidence.Name(childComplexity), true case "Evidence.owner": - if e.complexity.Evidence.Owner == nil { + if e.ComplexityRoot.Evidence.Owner == nil { break } - return e.complexity.Evidence.Owner(childComplexity), true + return e.ComplexityRoot.Evidence.Owner(childComplexity), true case "Evidence.ownerID": - if e.complexity.Evidence.OwnerID == nil { + if e.ComplexityRoot.Evidence.OwnerID == nil { break } - return e.complexity.Evidence.OwnerID(childComplexity), true + return e.ComplexityRoot.Evidence.OwnerID(childComplexity), true case "Evidence.platforms": - if e.complexity.Evidence.Platforms == nil { + if e.ComplexityRoot.Evidence.Platforms == nil { break } @@ -16456,10 +16439,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Evidence.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Evidence.programs": - if e.complexity.Evidence.Programs == nil { + if e.ComplexityRoot.Evidence.Programs == nil { break } @@ -16468,17 +16451,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Evidence.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Evidence.renewalDate": - if e.complexity.Evidence.RenewalDate == nil { + if e.ComplexityRoot.Evidence.RenewalDate == nil { break } - return e.complexity.Evidence.RenewalDate(childComplexity), true + return e.ComplexityRoot.Evidence.RenewalDate(childComplexity), true case "Evidence.scans": - if e.complexity.Evidence.Scans == nil { + if e.ComplexityRoot.Evidence.Scans == nil { break } @@ -16487,45 +16470,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Evidence.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Evidence.scope": - if e.complexity.Evidence.Scope == nil { + if e.ComplexityRoot.Evidence.Scope == nil { break } - return e.complexity.Evidence.Scope(childComplexity), true + return e.ComplexityRoot.Evidence.Scope(childComplexity), true case "Evidence.scopeID": - if e.complexity.Evidence.ScopeID == nil { + if e.ComplexityRoot.Evidence.ScopeID == nil { break } - return e.complexity.Evidence.ScopeID(childComplexity), true + return e.ComplexityRoot.Evidence.ScopeID(childComplexity), true case "Evidence.scopeName": - if e.complexity.Evidence.ScopeName == nil { + if e.ComplexityRoot.Evidence.ScopeName == nil { break } - return e.complexity.Evidence.ScopeName(childComplexity), true + return e.ComplexityRoot.Evidence.ScopeName(childComplexity), true case "Evidence.source": - if e.complexity.Evidence.Source == nil { + if e.ComplexityRoot.Evidence.Source == nil { break } - return e.complexity.Evidence.Source(childComplexity), true + return e.ComplexityRoot.Evidence.Source(childComplexity), true case "Evidence.status": - if e.complexity.Evidence.Status == nil { + if e.ComplexityRoot.Evidence.Status == nil { break } - return e.complexity.Evidence.Status(childComplexity), true + return e.ComplexityRoot.Evidence.Status(childComplexity), true case "Evidence.subcontrols": - if e.complexity.Evidence.Subcontrols == nil { + if e.ComplexityRoot.Evidence.Subcontrols == nil { break } @@ -16534,17 +16517,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Evidence.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Evidence.tags": - if e.complexity.Evidence.Tags == nil { + if e.ComplexityRoot.Evidence.Tags == nil { break } - return e.complexity.Evidence.Tags(childComplexity), true + return e.ComplexityRoot.Evidence.Tags(childComplexity), true case "Evidence.tasks": - if e.complexity.Evidence.Tasks == nil { + if e.ComplexityRoot.Evidence.Tasks == nil { break } @@ -16553,38 +16536,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Evidence.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Evidence.url": - if e.complexity.Evidence.URL == nil { + if e.ComplexityRoot.Evidence.URL == nil { break } - return e.complexity.Evidence.URL(childComplexity), true + return e.ComplexityRoot.Evidence.URL(childComplexity), true case "Evidence.updatedAt": - if e.complexity.Evidence.UpdatedAt == nil { + if e.ComplexityRoot.Evidence.UpdatedAt == nil { break } - return e.complexity.Evidence.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Evidence.UpdatedAt(childComplexity), true case "Evidence.updatedBy": - if e.complexity.Evidence.UpdatedBy == nil { + if e.ComplexityRoot.Evidence.UpdatedBy == nil { break } - return e.complexity.Evidence.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Evidence.UpdatedBy(childComplexity), true case "Evidence.workflowEligibleMarker": - if e.complexity.Evidence.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.Evidence.WorkflowEligibleMarker == nil { break } - return e.complexity.Evidence.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.Evidence.WorkflowEligibleMarker(childComplexity), true case "Evidence.workflowObjectRefs": - if e.complexity.Evidence.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Evidence.WorkflowObjectRefs == nil { break } @@ -16593,10 +16576,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Evidence.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "Evidence.workflowTimeline": - if e.complexity.Evidence.WorkflowTimeline == nil { + if e.ComplexityRoot.Evidence.WorkflowTimeline == nil { break } @@ -16605,115 +16588,115 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Evidence.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.Evidence.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "EvidenceBulkCreatePayload.evidences": - if e.complexity.EvidenceBulkCreatePayload.Evidences == nil { + if e.ComplexityRoot.EvidenceBulkCreatePayload.Evidences == nil { break } - return e.complexity.EvidenceBulkCreatePayload.Evidences(childComplexity), true + return e.ComplexityRoot.EvidenceBulkCreatePayload.Evidences(childComplexity), true case "EvidenceBulkDeletePayload.deletedIDs": - if e.complexity.EvidenceBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.EvidenceBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.EvidenceBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.EvidenceBulkDeletePayload.DeletedIDs(childComplexity), true case "EvidenceBulkUpdatePayload.evidences": - if e.complexity.EvidenceBulkUpdatePayload.Evidences == nil { + if e.ComplexityRoot.EvidenceBulkUpdatePayload.Evidences == nil { break } - return e.complexity.EvidenceBulkUpdatePayload.Evidences(childComplexity), true + return e.ComplexityRoot.EvidenceBulkUpdatePayload.Evidences(childComplexity), true case "EvidenceBulkUpdatePayload.updatedIDs": - if e.complexity.EvidenceBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.EvidenceBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.EvidenceBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.EvidenceBulkUpdatePayload.UpdatedIDs(childComplexity), true case "EvidenceConnection.edges": - if e.complexity.EvidenceConnection.Edges == nil { + if e.ComplexityRoot.EvidenceConnection.Edges == nil { break } - return e.complexity.EvidenceConnection.Edges(childComplexity), true + return e.ComplexityRoot.EvidenceConnection.Edges(childComplexity), true case "EvidenceConnection.pageInfo": - if e.complexity.EvidenceConnection.PageInfo == nil { + if e.ComplexityRoot.EvidenceConnection.PageInfo == nil { break } - return e.complexity.EvidenceConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EvidenceConnection.PageInfo(childComplexity), true case "EvidenceConnection.totalCount": - if e.complexity.EvidenceConnection.TotalCount == nil { + if e.ComplexityRoot.EvidenceConnection.TotalCount == nil { break } - return e.complexity.EvidenceConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EvidenceConnection.TotalCount(childComplexity), true case "EvidenceCreatePayload.evidence": - if e.complexity.EvidenceCreatePayload.Evidence == nil { + if e.ComplexityRoot.EvidenceCreatePayload.Evidence == nil { break } - return e.complexity.EvidenceCreatePayload.Evidence(childComplexity), true + return e.ComplexityRoot.EvidenceCreatePayload.Evidence(childComplexity), true case "EvidenceDeletePayload.deletedID": - if e.complexity.EvidenceDeletePayload.DeletedID == nil { + if e.ComplexityRoot.EvidenceDeletePayload.DeletedID == nil { break } - return e.complexity.EvidenceDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.EvidenceDeletePayload.DeletedID(childComplexity), true case "EvidenceEdge.cursor": - if e.complexity.EvidenceEdge.Cursor == nil { + if e.ComplexityRoot.EvidenceEdge.Cursor == nil { break } - return e.complexity.EvidenceEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EvidenceEdge.Cursor(childComplexity), true case "EvidenceEdge.node": - if e.complexity.EvidenceEdge.Node == nil { + if e.ComplexityRoot.EvidenceEdge.Node == nil { break } - return e.complexity.EvidenceEdge.Node(childComplexity), true + return e.ComplexityRoot.EvidenceEdge.Node(childComplexity), true case "EvidenceUpdatePayload.evidence": - if e.complexity.EvidenceUpdatePayload.Evidence == nil { + if e.ComplexityRoot.EvidenceUpdatePayload.Evidence == nil { break } - return e.complexity.EvidenceUpdatePayload.Evidence(childComplexity), true + return e.ComplexityRoot.EvidenceUpdatePayload.Evidence(childComplexity), true case "Export.createdAt": - if e.complexity.Export.CreatedAt == nil { + if e.ComplexityRoot.Export.CreatedAt == nil { break } - return e.complexity.Export.CreatedAt(childComplexity), true + return e.ComplexityRoot.Export.CreatedAt(childComplexity), true case "Export.createdBy": - if e.complexity.Export.CreatedBy == nil { + if e.ComplexityRoot.Export.CreatedBy == nil { break } - return e.complexity.Export.CreatedBy(childComplexity), true + return e.ComplexityRoot.Export.CreatedBy(childComplexity), true case "Export.errorMessage": - if e.complexity.Export.ErrorMessage == nil { + if e.ComplexityRoot.Export.ErrorMessage == nil { break } - return e.complexity.Export.ErrorMessage(childComplexity), true + return e.ComplexityRoot.Export.ErrorMessage(childComplexity), true case "Export.events": - if e.complexity.Export.Events == nil { + if e.ComplexityRoot.Export.Events == nil { break } @@ -16722,24 +16705,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Export.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Export.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Export.exportType": - if e.complexity.Export.ExportType == nil { + if e.ComplexityRoot.Export.ExportType == nil { break } - return e.complexity.Export.ExportType(childComplexity), true + return e.ComplexityRoot.Export.ExportType(childComplexity), true case "Export.fields": - if e.complexity.Export.Fields == nil { + if e.ComplexityRoot.Export.Fields == nil { break } - return e.complexity.Export.Fields(childComplexity), true + return e.ComplexityRoot.Export.Fields(childComplexity), true case "Export.files": - if e.complexity.Export.Files == nil { + if e.ComplexityRoot.Export.Files == nil { break } @@ -16748,227 +16731,227 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Export.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Export.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Export.filters": - if e.complexity.Export.Filters == nil { + if e.ComplexityRoot.Export.Filters == nil { break } - return e.complexity.Export.Filters(childComplexity), true + return e.ComplexityRoot.Export.Filters(childComplexity), true case "Export.format": - if e.complexity.Export.Format == nil { + if e.ComplexityRoot.Export.Format == nil { break } - return e.complexity.Export.Format(childComplexity), true + return e.ComplexityRoot.Export.Format(childComplexity), true case "Export.id": - if e.complexity.Export.ID == nil { + if e.ComplexityRoot.Export.ID == nil { break } - return e.complexity.Export.ID(childComplexity), true + return e.ComplexityRoot.Export.ID(childComplexity), true case "Export.owner": - if e.complexity.Export.Owner == nil { + if e.ComplexityRoot.Export.Owner == nil { break } - return e.complexity.Export.Owner(childComplexity), true + return e.ComplexityRoot.Export.Owner(childComplexity), true case "Export.ownerID": - if e.complexity.Export.OwnerID == nil { + if e.ComplexityRoot.Export.OwnerID == nil { break } - return e.complexity.Export.OwnerID(childComplexity), true + return e.ComplexityRoot.Export.OwnerID(childComplexity), true case "Export.requestorID": - if e.complexity.Export.RequestorID == nil { + if e.ComplexityRoot.Export.RequestorID == nil { break } - return e.complexity.Export.RequestorID(childComplexity), true + return e.ComplexityRoot.Export.RequestorID(childComplexity), true case "Export.status": - if e.complexity.Export.Status == nil { + if e.ComplexityRoot.Export.Status == nil { break } - return e.complexity.Export.Status(childComplexity), true + return e.ComplexityRoot.Export.Status(childComplexity), true case "Export.updatedAt": - if e.complexity.Export.UpdatedAt == nil { + if e.ComplexityRoot.Export.UpdatedAt == nil { break } - return e.complexity.Export.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Export.UpdatedAt(childComplexity), true case "Export.updatedBy": - if e.complexity.Export.UpdatedBy == nil { + if e.ComplexityRoot.Export.UpdatedBy == nil { break } - return e.complexity.Export.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Export.UpdatedBy(childComplexity), true case "ExportBulkCreatePayload.exports": - if e.complexity.ExportBulkCreatePayload.Exports == nil { + if e.ComplexityRoot.ExportBulkCreatePayload.Exports == nil { break } - return e.complexity.ExportBulkCreatePayload.Exports(childComplexity), true + return e.ComplexityRoot.ExportBulkCreatePayload.Exports(childComplexity), true case "ExportBulkDeletePayload.deletedIDs": - if e.complexity.ExportBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ExportBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ExportBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ExportBulkDeletePayload.DeletedIDs(childComplexity), true case "ExportConnection.edges": - if e.complexity.ExportConnection.Edges == nil { + if e.ComplexityRoot.ExportConnection.Edges == nil { break } - return e.complexity.ExportConnection.Edges(childComplexity), true + return e.ComplexityRoot.ExportConnection.Edges(childComplexity), true case "ExportConnection.pageInfo": - if e.complexity.ExportConnection.PageInfo == nil { + if e.ComplexityRoot.ExportConnection.PageInfo == nil { break } - return e.complexity.ExportConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ExportConnection.PageInfo(childComplexity), true case "ExportConnection.totalCount": - if e.complexity.ExportConnection.TotalCount == nil { + if e.ComplexityRoot.ExportConnection.TotalCount == nil { break } - return e.complexity.ExportConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ExportConnection.TotalCount(childComplexity), true case "ExportCreatePayload.export": - if e.complexity.ExportCreatePayload.Export == nil { + if e.ComplexityRoot.ExportCreatePayload.Export == nil { break } - return e.complexity.ExportCreatePayload.Export(childComplexity), true + return e.ComplexityRoot.ExportCreatePayload.Export(childComplexity), true case "ExportDeletePayload.deletedID": - if e.complexity.ExportDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ExportDeletePayload.DeletedID == nil { break } - return e.complexity.ExportDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ExportDeletePayload.DeletedID(childComplexity), true case "ExportEdge.cursor": - if e.complexity.ExportEdge.Cursor == nil { + if e.ComplexityRoot.ExportEdge.Cursor == nil { break } - return e.complexity.ExportEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ExportEdge.Cursor(childComplexity), true case "ExportEdge.node": - if e.complexity.ExportEdge.Node == nil { + if e.ComplexityRoot.ExportEdge.Node == nil { break } - return e.complexity.ExportEdge.Node(childComplexity), true + return e.ComplexityRoot.ExportEdge.Node(childComplexity), true case "ExportUpdatePayload.export": - if e.complexity.ExportUpdatePayload.Export == nil { + if e.ComplexityRoot.ExportUpdatePayload.Export == nil { break } - return e.complexity.ExportUpdatePayload.Export(childComplexity), true + return e.ComplexityRoot.ExportUpdatePayload.Export(childComplexity), true case "File.base64": - if e.complexity.File.Base64 == nil { + if e.ComplexityRoot.File.Base64 == nil { break } - return e.complexity.File.Base64(childComplexity), true + return e.ComplexityRoot.File.Base64(childComplexity), true case "File.categoryType": - if e.complexity.File.CategoryType == nil { + if e.ComplexityRoot.File.CategoryType == nil { break } - return e.complexity.File.CategoryType(childComplexity), true + return e.ComplexityRoot.File.CategoryType(childComplexity), true case "File.contact": - if e.complexity.File.Contact == nil { + if e.ComplexityRoot.File.Contact == nil { break } - return e.complexity.File.Contact(childComplexity), true + return e.ComplexityRoot.File.Contact(childComplexity), true case "File.createdAt": - if e.complexity.File.CreatedAt == nil { + if e.ComplexityRoot.File.CreatedAt == nil { break } - return e.complexity.File.CreatedAt(childComplexity), true + return e.ComplexityRoot.File.CreatedAt(childComplexity), true case "File.createdBy": - if e.complexity.File.CreatedBy == nil { + if e.ComplexityRoot.File.CreatedBy == nil { break } - return e.complexity.File.CreatedBy(childComplexity), true + return e.ComplexityRoot.File.CreatedBy(childComplexity), true case "File.detectedContentType": - if e.complexity.File.DetectedContentType == nil { + if e.ComplexityRoot.File.DetectedContentType == nil { break } - return e.complexity.File.DetectedContentType(childComplexity), true + return e.ComplexityRoot.File.DetectedContentType(childComplexity), true case "File.detectedMimeType": - if e.complexity.File.DetectedMimeType == nil { + if e.ComplexityRoot.File.DetectedMimeType == nil { break } - return e.complexity.File.DetectedMimeType(childComplexity), true + return e.ComplexityRoot.File.DetectedMimeType(childComplexity), true case "File.document": - if e.complexity.File.Document == nil { + if e.ComplexityRoot.File.Document == nil { break } - return e.complexity.File.Document(childComplexity), true + return e.ComplexityRoot.File.Document(childComplexity), true case "File.entity": - if e.complexity.File.Entity == nil { + if e.ComplexityRoot.File.Entity == nil { break } - return e.complexity.File.Entity(childComplexity), true + return e.ComplexityRoot.File.Entity(childComplexity), true case "File.environment": - if e.complexity.File.Environment == nil { + if e.ComplexityRoot.File.Environment == nil { break } - return e.complexity.File.Environment(childComplexity), true + return e.ComplexityRoot.File.Environment(childComplexity), true case "File.environmentID": - if e.complexity.File.EnvironmentID == nil { + if e.ComplexityRoot.File.EnvironmentID == nil { break } - return e.complexity.File.EnvironmentID(childComplexity), true + return e.ComplexityRoot.File.EnvironmentID(childComplexity), true case "File.environmentName": - if e.complexity.File.EnvironmentName == nil { + if e.ComplexityRoot.File.EnvironmentName == nil { break } - return e.complexity.File.EnvironmentName(childComplexity), true + return e.ComplexityRoot.File.EnvironmentName(childComplexity), true case "File.events": - if e.complexity.File.Events == nil { + if e.ComplexityRoot.File.Events == nil { break } @@ -16977,17 +16960,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.File.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.File.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "File.evidence": - if e.complexity.File.Evidence == nil { + if e.ComplexityRoot.File.Evidence == nil { break } - return e.complexity.File.Evidence(childComplexity), true + return e.ComplexityRoot.File.Evidence(childComplexity), true case "File.groups": - if e.complexity.File.Groups == nil { + if e.ComplexityRoot.File.Groups == nil { break } @@ -16996,17 +16979,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.File.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.File.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "File.id": - if e.complexity.File.ID == nil { + if e.ComplexityRoot.File.ID == nil { break } - return e.complexity.File.ID(childComplexity), true + return e.ComplexityRoot.File.ID(childComplexity), true case "File.integrations": - if e.complexity.File.Integrations == nil { + if e.ComplexityRoot.File.Integrations == nil { break } @@ -17015,136 +16998,136 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.File.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.File.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "File.internalNotes": - if e.complexity.File.InternalNotes == nil { + if e.ComplexityRoot.File.InternalNotes == nil { break } - return e.complexity.File.InternalNotes(childComplexity), true + return e.ComplexityRoot.File.InternalNotes(childComplexity), true case "File.lastAccessedAt": - if e.complexity.File.LastAccessedAt == nil { + if e.ComplexityRoot.File.LastAccessedAt == nil { break } - return e.complexity.File.LastAccessedAt(childComplexity), true + return e.ComplexityRoot.File.LastAccessedAt(childComplexity), true case "File.md5Hash": - if e.complexity.File.Md5Hash == nil { + if e.ComplexityRoot.File.Md5Hash == nil { break } - return e.complexity.File.Md5Hash(childComplexity), true + return e.ComplexityRoot.File.Md5Hash(childComplexity), true case "File.metadata": - if e.complexity.File.Metadata == nil { + if e.ComplexityRoot.File.Metadata == nil { break } - return e.complexity.File.Metadata(childComplexity), true + return e.ComplexityRoot.File.Metadata(childComplexity), true case "File.organization": - if e.complexity.File.Organization == nil { + if e.ComplexityRoot.File.Organization == nil { break } - return e.complexity.File.Organization(childComplexity), true + return e.ComplexityRoot.File.Organization(childComplexity), true case "File.organizationSetting": - if e.complexity.File.OrganizationSetting == nil { + if e.ComplexityRoot.File.OrganizationSetting == nil { break } - return e.complexity.File.OrganizationSetting(childComplexity), true + return e.ComplexityRoot.File.OrganizationSetting(childComplexity), true case "File.originalTrustCenterDoc": - if e.complexity.File.OriginalTrustCenterDoc == nil { + if e.ComplexityRoot.File.OriginalTrustCenterDoc == nil { break } - return e.complexity.File.OriginalTrustCenterDoc(childComplexity), true + return e.ComplexityRoot.File.OriginalTrustCenterDoc(childComplexity), true case "File.persistedFileSize": - if e.complexity.File.PersistedFileSize == nil { + if e.ComplexityRoot.File.PersistedFileSize == nil { break } - return e.complexity.File.PersistedFileSize(childComplexity), true + return e.ComplexityRoot.File.PersistedFileSize(childComplexity), true case "File.platform": - if e.complexity.File.Platform == nil { + if e.ComplexityRoot.File.Platform == nil { break } - return e.complexity.File.Platform(childComplexity), true + return e.ComplexityRoot.File.Platform(childComplexity), true case "File.presignedURL": - if e.complexity.File.PresignedURL == nil { + if e.ComplexityRoot.File.PresignedURL == nil { break } - return e.complexity.File.PresignedURL(childComplexity), true + return e.ComplexityRoot.File.PresignedURL(childComplexity), true case "File.program": - if e.complexity.File.Program == nil { + if e.ComplexityRoot.File.Program == nil { break } - return e.complexity.File.Program(childComplexity), true + return e.ComplexityRoot.File.Program(childComplexity), true case "File.providedFileExtension": - if e.complexity.File.ProvidedFileExtension == nil { + if e.ComplexityRoot.File.ProvidedFileExtension == nil { break } - return e.complexity.File.ProvidedFileExtension(childComplexity), true + return e.ComplexityRoot.File.ProvidedFileExtension(childComplexity), true case "File.providedFileName": - if e.complexity.File.ProvidedFileName == nil { + if e.ComplexityRoot.File.ProvidedFileName == nil { break } - return e.complexity.File.ProvidedFileName(childComplexity), true + return e.ComplexityRoot.File.ProvidedFileName(childComplexity), true case "File.providedFileSize": - if e.complexity.File.ProvidedFileSize == nil { + if e.ComplexityRoot.File.ProvidedFileSize == nil { break } - return e.complexity.File.ProvidedFileSize(childComplexity), true + return e.ComplexityRoot.File.ProvidedFileSize(childComplexity), true case "File.scan": - if e.complexity.File.Scan == nil { + if e.ComplexityRoot.File.Scan == nil { break } - return e.complexity.File.Scan(childComplexity), true + return e.ComplexityRoot.File.Scan(childComplexity), true case "File.scope": - if e.complexity.File.Scope == nil { + if e.ComplexityRoot.File.Scope == nil { break } - return e.complexity.File.Scope(childComplexity), true + return e.ComplexityRoot.File.Scope(childComplexity), true case "File.scopeID": - if e.complexity.File.ScopeID == nil { + if e.ComplexityRoot.File.ScopeID == nil { break } - return e.complexity.File.ScopeID(childComplexity), true + return e.ComplexityRoot.File.ScopeID(childComplexity), true case "File.scopeName": - if e.complexity.File.ScopeName == nil { + if e.ComplexityRoot.File.ScopeName == nil { break } - return e.complexity.File.ScopeName(childComplexity), true + return e.ComplexityRoot.File.ScopeName(childComplexity), true case "File.secrets": - if e.complexity.File.Secrets == nil { + if e.ComplexityRoot.File.Secrets == nil { break } @@ -17153,87 +17136,87 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.File.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true + return e.ComplexityRoot.File.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true case "File.storagePath": - if e.complexity.File.StoragePath == nil { + if e.ComplexityRoot.File.StoragePath == nil { break } - return e.complexity.File.StoragePath(childComplexity), true + return e.ComplexityRoot.File.StoragePath(childComplexity), true case "File.storageProvider": - if e.complexity.File.StorageProvider == nil { + if e.ComplexityRoot.File.StorageProvider == nil { break } - return e.complexity.File.StorageProvider(childComplexity), true + return e.ComplexityRoot.File.StorageProvider(childComplexity), true case "File.storageRegion": - if e.complexity.File.StorageRegion == nil { + if e.ComplexityRoot.File.StorageRegion == nil { break } - return e.complexity.File.StorageRegion(childComplexity), true + return e.ComplexityRoot.File.StorageRegion(childComplexity), true case "File.storageScheme": - if e.complexity.File.StorageScheme == nil { + if e.ComplexityRoot.File.StorageScheme == nil { break } - return e.complexity.File.StorageScheme(childComplexity), true + return e.ComplexityRoot.File.StorageScheme(childComplexity), true case "File.storageVolume": - if e.complexity.File.StorageVolume == nil { + if e.ComplexityRoot.File.StorageVolume == nil { break } - return e.complexity.File.StorageVolume(childComplexity), true + return e.ComplexityRoot.File.StorageVolume(childComplexity), true case "File.storeKey": - if e.complexity.File.StoreKey == nil { + if e.ComplexityRoot.File.StoreKey == nil { break } - return e.complexity.File.StoreKey(childComplexity), true + return e.ComplexityRoot.File.StoreKey(childComplexity), true case "File.systemInternalID": - if e.complexity.File.SystemInternalID == nil { + if e.ComplexityRoot.File.SystemInternalID == nil { break } - return e.complexity.File.SystemInternalID(childComplexity), true + return e.ComplexityRoot.File.SystemInternalID(childComplexity), true case "File.systemOwned": - if e.complexity.File.SystemOwned == nil { + if e.ComplexityRoot.File.SystemOwned == nil { break } - return e.complexity.File.SystemOwned(childComplexity), true + return e.ComplexityRoot.File.SystemOwned(childComplexity), true case "File.tags": - if e.complexity.File.Tags == nil { + if e.ComplexityRoot.File.Tags == nil { break } - return e.complexity.File.Tags(childComplexity), true + return e.ComplexityRoot.File.Tags(childComplexity), true case "File.template": - if e.complexity.File.Template == nil { + if e.ComplexityRoot.File.Template == nil { break } - return e.complexity.File.Template(childComplexity), true + return e.ComplexityRoot.File.Template(childComplexity), true case "File.trustCenterDoc": - if e.complexity.File.TrustCenterDoc == nil { + if e.ComplexityRoot.File.TrustCenterDoc == nil { break } - return e.complexity.File.TrustCenterDoc(childComplexity), true + return e.ComplexityRoot.File.TrustCenterDoc(childComplexity), true case "File.trustCenterEntities": - if e.complexity.File.TrustCenterEntities == nil { + if e.ComplexityRoot.File.TrustCenterEntities == nil { break } @@ -17242,73 +17225,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.File.TrustCenterEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterEntityOrder), args["where"].(*generated.TrustCenterEntityWhereInput)), true + return e.ComplexityRoot.File.TrustCenterEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterEntityOrder), args["where"].(*generated.TrustCenterEntityWhereInput)), true case "File.uri": - if e.complexity.File.URI == nil { + if e.ComplexityRoot.File.URI == nil { break } - return e.complexity.File.URI(childComplexity), true + return e.ComplexityRoot.File.URI(childComplexity), true case "File.updatedAt": - if e.complexity.File.UpdatedAt == nil { + if e.ComplexityRoot.File.UpdatedAt == nil { break } - return e.complexity.File.UpdatedAt(childComplexity), true + return e.ComplexityRoot.File.UpdatedAt(childComplexity), true case "File.updatedBy": - if e.complexity.File.UpdatedBy == nil { + if e.ComplexityRoot.File.UpdatedBy == nil { break } - return e.complexity.File.UpdatedBy(childComplexity), true + return e.ComplexityRoot.File.UpdatedBy(childComplexity), true case "FileConnection.edges": - if e.complexity.FileConnection.Edges == nil { + if e.ComplexityRoot.FileConnection.Edges == nil { break } - return e.complexity.FileConnection.Edges(childComplexity), true + return e.ComplexityRoot.FileConnection.Edges(childComplexity), true case "FileConnection.pageInfo": - if e.complexity.FileConnection.PageInfo == nil { + if e.ComplexityRoot.FileConnection.PageInfo == nil { break } - return e.complexity.FileConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.FileConnection.PageInfo(childComplexity), true case "FileConnection.totalCount": - if e.complexity.FileConnection.TotalCount == nil { + if e.ComplexityRoot.FileConnection.TotalCount == nil { break } - return e.complexity.FileConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.FileConnection.TotalCount(childComplexity), true case "FileDeletePayload.deletedID": - if e.complexity.FileDeletePayload.DeletedID == nil { + if e.ComplexityRoot.FileDeletePayload.DeletedID == nil { break } - return e.complexity.FileDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.FileDeletePayload.DeletedID(childComplexity), true case "FileEdge.cursor": - if e.complexity.FileEdge.Cursor == nil { + if e.ComplexityRoot.FileEdge.Cursor == nil { break } - return e.complexity.FileEdge.Cursor(childComplexity), true + return e.ComplexityRoot.FileEdge.Cursor(childComplexity), true case "FileEdge.node": - if e.complexity.FileEdge.Node == nil { + if e.ComplexityRoot.FileEdge.Node == nil { break } - return e.complexity.FileEdge.Node(childComplexity), true + return e.ComplexityRoot.FileEdge.Node(childComplexity), true case "Finding.actionPlans": - if e.complexity.Finding.ActionPlans == nil { + if e.ComplexityRoot.Finding.ActionPlans == nil { break } @@ -17317,17 +17300,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Finding.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Finding.assessmentID": - if e.complexity.Finding.AssessmentID == nil { + if e.ComplexityRoot.Finding.AssessmentID == nil { break } - return e.complexity.Finding.AssessmentID(childComplexity), true + return e.ComplexityRoot.Finding.AssessmentID(childComplexity), true case "Finding.assets": - if e.complexity.Finding.Assets == nil { + if e.ComplexityRoot.Finding.Assets == nil { break } @@ -17336,10 +17319,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Finding.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Finding.blockedGroups": - if e.complexity.Finding.BlockedGroups == nil { + if e.ComplexityRoot.Finding.BlockedGroups == nil { break } @@ -17348,31 +17331,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Finding.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Finding.blocksProduction": - if e.complexity.Finding.BlocksProduction == nil { + if e.ComplexityRoot.Finding.BlocksProduction == nil { break } - return e.complexity.Finding.BlocksProduction(childComplexity), true + return e.ComplexityRoot.Finding.BlocksProduction(childComplexity), true case "Finding.categories": - if e.complexity.Finding.Categories == nil { + if e.ComplexityRoot.Finding.Categories == nil { break } - return e.complexity.Finding.Categories(childComplexity), true + return e.ComplexityRoot.Finding.Categories(childComplexity), true case "Finding.category": - if e.complexity.Finding.Category == nil { + if e.ComplexityRoot.Finding.Category == nil { break } - return e.complexity.Finding.Category(childComplexity), true + return e.ComplexityRoot.Finding.Category(childComplexity), true case "Finding.comments": - if e.complexity.Finding.Comments == nil { + if e.ComplexityRoot.Finding.Comments == nil { break } @@ -17381,10 +17364,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Finding.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Finding.controlMappings": - if e.complexity.Finding.ControlMappings == nil { + if e.ComplexityRoot.Finding.ControlMappings == nil { break } @@ -17393,10 +17376,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.ControlMappings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingControlOrder), args["where"].(*generated.FindingControlWhereInput)), true + return e.ComplexityRoot.Finding.ControlMappings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingControlOrder), args["where"].(*generated.FindingControlWhereInput)), true case "Finding.controls": - if e.complexity.Finding.Controls == nil { + if e.ComplexityRoot.Finding.Controls == nil { break } @@ -17405,31 +17388,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Finding.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Finding.createdAt": - if e.complexity.Finding.CreatedAt == nil { + if e.ComplexityRoot.Finding.CreatedAt == nil { break } - return e.complexity.Finding.CreatedAt(childComplexity), true + return e.ComplexityRoot.Finding.CreatedAt(childComplexity), true case "Finding.createdBy": - if e.complexity.Finding.CreatedBy == nil { + if e.ComplexityRoot.Finding.CreatedBy == nil { break } - return e.complexity.Finding.CreatedBy(childComplexity), true + return e.ComplexityRoot.Finding.CreatedBy(childComplexity), true case "Finding.description": - if e.complexity.Finding.Description == nil { + if e.ComplexityRoot.Finding.Description == nil { break } - return e.complexity.Finding.Description(childComplexity), true + return e.ComplexityRoot.Finding.Description(childComplexity), true case "Finding.directoryAccounts": - if e.complexity.Finding.DirectoryAccounts == nil { + if e.ComplexityRoot.Finding.DirectoryAccounts == nil { break } @@ -17438,24 +17421,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.Finding.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "Finding.displayID": - if e.complexity.Finding.DisplayID == nil { + if e.ComplexityRoot.Finding.DisplayID == nil { break } - return e.complexity.Finding.DisplayID(childComplexity), true + return e.ComplexityRoot.Finding.DisplayID(childComplexity), true case "Finding.displayName": - if e.complexity.Finding.DisplayName == nil { + if e.ComplexityRoot.Finding.DisplayName == nil { break } - return e.complexity.Finding.DisplayName(childComplexity), true + return e.ComplexityRoot.Finding.DisplayName(childComplexity), true case "Finding.editors": - if e.complexity.Finding.Editors == nil { + if e.ComplexityRoot.Finding.Editors == nil { break } @@ -17464,10 +17447,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Finding.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Finding.entities": - if e.complexity.Finding.Entities == nil { + if e.ComplexityRoot.Finding.Entities == nil { break } @@ -17476,66 +17459,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Finding.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Finding.environment": - if e.complexity.Finding.Environment == nil { + if e.ComplexityRoot.Finding.Environment == nil { break } - return e.complexity.Finding.Environment(childComplexity), true + return e.ComplexityRoot.Finding.Environment(childComplexity), true case "Finding.environmentID": - if e.complexity.Finding.EnvironmentID == nil { + if e.ComplexityRoot.Finding.EnvironmentID == nil { break } - return e.complexity.Finding.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Finding.EnvironmentID(childComplexity), true case "Finding.environmentName": - if e.complexity.Finding.EnvironmentName == nil { + if e.ComplexityRoot.Finding.EnvironmentName == nil { break } - return e.complexity.Finding.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Finding.EnvironmentName(childComplexity), true case "Finding.eventTime": - if e.complexity.Finding.EventTime == nil { + if e.ComplexityRoot.Finding.EventTime == nil { break } - return e.complexity.Finding.EventTime(childComplexity), true + return e.ComplexityRoot.Finding.EventTime(childComplexity), true case "Finding.exploitability": - if e.complexity.Finding.Exploitability == nil { + if e.ComplexityRoot.Finding.Exploitability == nil { break } - return e.complexity.Finding.Exploitability(childComplexity), true + return e.ComplexityRoot.Finding.Exploitability(childComplexity), true case "Finding.externalID": - if e.complexity.Finding.ExternalID == nil { + if e.ComplexityRoot.Finding.ExternalID == nil { break } - return e.complexity.Finding.ExternalID(childComplexity), true + return e.ComplexityRoot.Finding.ExternalID(childComplexity), true case "Finding.externalOwnerID": - if e.complexity.Finding.ExternalOwnerID == nil { + if e.ComplexityRoot.Finding.ExternalOwnerID == nil { break } - return e.complexity.Finding.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.Finding.ExternalOwnerID(childComplexity), true case "Finding.externalURI": - if e.complexity.Finding.ExternalURI == nil { + if e.ComplexityRoot.Finding.ExternalURI == nil { break } - return e.complexity.Finding.ExternalURI(childComplexity), true + return e.ComplexityRoot.Finding.ExternalURI(childComplexity), true case "Finding.files": - if e.complexity.Finding.Files == nil { + if e.ComplexityRoot.Finding.Files == nil { break } @@ -17544,24 +17527,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Finding.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Finding.findingClass": - if e.complexity.Finding.FindingClass == nil { + if e.ComplexityRoot.Finding.FindingClass == nil { break } - return e.complexity.Finding.FindingClass(childComplexity), true + return e.ComplexityRoot.Finding.FindingClass(childComplexity), true case "Finding.id": - if e.complexity.Finding.ID == nil { + if e.ComplexityRoot.Finding.ID == nil { break } - return e.complexity.Finding.ID(childComplexity), true + return e.ComplexityRoot.Finding.ID(childComplexity), true case "Finding.identityHolders": - if e.complexity.Finding.IdentityHolders == nil { + if e.ComplexityRoot.Finding.IdentityHolders == nil { break } @@ -17570,17 +17553,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Finding.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Finding.impact": - if e.complexity.Finding.Impact == nil { + if e.ComplexityRoot.Finding.Impact == nil { break } - return e.complexity.Finding.Impact(childComplexity), true + return e.ComplexityRoot.Finding.Impact(childComplexity), true case "Finding.integrations": - if e.complexity.Finding.Integrations == nil { + if e.ComplexityRoot.Finding.Integrations == nil { break } @@ -17589,66 +17572,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Finding.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Finding.internalNotes": - if e.complexity.Finding.InternalNotes == nil { + if e.ComplexityRoot.Finding.InternalNotes == nil { break } - return e.complexity.Finding.InternalNotes(childComplexity), true + return e.ComplexityRoot.Finding.InternalNotes(childComplexity), true case "Finding.metadata": - if e.complexity.Finding.Metadata == nil { + if e.ComplexityRoot.Finding.Metadata == nil { break } - return e.complexity.Finding.Metadata(childComplexity), true + return e.ComplexityRoot.Finding.Metadata(childComplexity), true case "Finding.numericSeverity": - if e.complexity.Finding.NumericSeverity == nil { + if e.ComplexityRoot.Finding.NumericSeverity == nil { break } - return e.complexity.Finding.NumericSeverity(childComplexity), true + return e.ComplexityRoot.Finding.NumericSeverity(childComplexity), true case "Finding.open": - if e.complexity.Finding.Open == nil { + if e.ComplexityRoot.Finding.Open == nil { break } - return e.complexity.Finding.Open(childComplexity), true + return e.ComplexityRoot.Finding.Open(childComplexity), true case "Finding.owner": - if e.complexity.Finding.Owner == nil { + if e.ComplexityRoot.Finding.Owner == nil { break } - return e.complexity.Finding.Owner(childComplexity), true + return e.ComplexityRoot.Finding.Owner(childComplexity), true case "Finding.ownerID": - if e.complexity.Finding.OwnerID == nil { + if e.ComplexityRoot.Finding.OwnerID == nil { break } - return e.complexity.Finding.OwnerID(childComplexity), true + return e.ComplexityRoot.Finding.OwnerID(childComplexity), true case "Finding.priority": - if e.complexity.Finding.Priority == nil { + if e.ComplexityRoot.Finding.Priority == nil { break } - return e.complexity.Finding.Priority(childComplexity), true + return e.ComplexityRoot.Finding.Priority(childComplexity), true case "Finding.production": - if e.complexity.Finding.Production == nil { + if e.ComplexityRoot.Finding.Production == nil { break } - return e.complexity.Finding.Production(childComplexity), true + return e.ComplexityRoot.Finding.Production(childComplexity), true case "Finding.programs": - if e.complexity.Finding.Programs == nil { + if e.ComplexityRoot.Finding.Programs == nil { break } @@ -17657,52 +17640,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Finding.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Finding.public": - if e.complexity.Finding.Public == nil { + if e.ComplexityRoot.Finding.Public == nil { break } - return e.complexity.Finding.Public(childComplexity), true + return e.ComplexityRoot.Finding.Public(childComplexity), true case "Finding.rawPayload": - if e.complexity.Finding.RawPayload == nil { + if e.ComplexityRoot.Finding.RawPayload == nil { break } - return e.complexity.Finding.RawPayload(childComplexity), true + return e.ComplexityRoot.Finding.RawPayload(childComplexity), true case "Finding.recommendation": - if e.complexity.Finding.Recommendation == nil { + if e.ComplexityRoot.Finding.Recommendation == nil { break } - return e.complexity.Finding.Recommendation(childComplexity), true + return e.ComplexityRoot.Finding.Recommendation(childComplexity), true case "Finding.recommendedActions": - if e.complexity.Finding.RecommendedActions == nil { + if e.ComplexityRoot.Finding.RecommendedActions == nil { break } - return e.complexity.Finding.RecommendedActions(childComplexity), true + return e.ComplexityRoot.Finding.RecommendedActions(childComplexity), true case "Finding.references": - if e.complexity.Finding.References == nil { + if e.ComplexityRoot.Finding.References == nil { break } - return e.complexity.Finding.References(childComplexity), true + return e.ComplexityRoot.Finding.References(childComplexity), true case "Finding.remediationSLA": - if e.complexity.Finding.RemediationSLA == nil { + if e.ComplexityRoot.Finding.RemediationSLA == nil { break } - return e.complexity.Finding.RemediationSLA(childComplexity), true + return e.ComplexityRoot.Finding.RemediationSLA(childComplexity), true case "Finding.remediations": - if e.complexity.Finding.Remediations == nil { + if e.ComplexityRoot.Finding.Remediations == nil { break } @@ -17711,24 +17694,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.Finding.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "Finding.reportedAt": - if e.complexity.Finding.ReportedAt == nil { + if e.ComplexityRoot.Finding.ReportedAt == nil { break } - return e.complexity.Finding.ReportedAt(childComplexity), true + return e.ComplexityRoot.Finding.ReportedAt(childComplexity), true case "Finding.resourceName": - if e.complexity.Finding.ResourceName == nil { + if e.ComplexityRoot.Finding.ResourceName == nil { break } - return e.complexity.Finding.ResourceName(childComplexity), true + return e.ComplexityRoot.Finding.ResourceName(childComplexity), true case "Finding.reviews": - if e.complexity.Finding.Reviews == nil { + if e.ComplexityRoot.Finding.Reviews == nil { break } @@ -17737,10 +17720,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true + return e.ComplexityRoot.Finding.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true case "Finding.risks": - if e.complexity.Finding.Risks == nil { + if e.ComplexityRoot.Finding.Risks == nil { break } @@ -17749,10 +17732,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Finding.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Finding.scans": - if e.complexity.Finding.Scans == nil { + if e.ComplexityRoot.Finding.Scans == nil { break } @@ -17761,80 +17744,80 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Finding.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Finding.scope": - if e.complexity.Finding.Scope == nil { + if e.ComplexityRoot.Finding.Scope == nil { break } - return e.complexity.Finding.Scope(childComplexity), true + return e.ComplexityRoot.Finding.Scope(childComplexity), true case "Finding.scopeID": - if e.complexity.Finding.ScopeID == nil { + if e.ComplexityRoot.Finding.ScopeID == nil { break } - return e.complexity.Finding.ScopeID(childComplexity), true + return e.ComplexityRoot.Finding.ScopeID(childComplexity), true case "Finding.scopeName": - if e.complexity.Finding.ScopeName == nil { + if e.ComplexityRoot.Finding.ScopeName == nil { break } - return e.complexity.Finding.ScopeName(childComplexity), true + return e.ComplexityRoot.Finding.ScopeName(childComplexity), true case "Finding.score": - if e.complexity.Finding.Score == nil { + if e.ComplexityRoot.Finding.Score == nil { break } - return e.complexity.Finding.Score(childComplexity), true + return e.ComplexityRoot.Finding.Score(childComplexity), true case "Finding.severity": - if e.complexity.Finding.Severity == nil { + if e.ComplexityRoot.Finding.Severity == nil { break } - return e.complexity.Finding.Severity(childComplexity), true + return e.ComplexityRoot.Finding.Severity(childComplexity), true case "Finding.source": - if e.complexity.Finding.Source == nil { + if e.ComplexityRoot.Finding.Source == nil { break } - return e.complexity.Finding.Source(childComplexity), true + return e.ComplexityRoot.Finding.Source(childComplexity), true case "Finding.sourceUpdatedAt": - if e.complexity.Finding.SourceUpdatedAt == nil { + if e.ComplexityRoot.Finding.SourceUpdatedAt == nil { break } - return e.complexity.Finding.SourceUpdatedAt(childComplexity), true + return e.ComplexityRoot.Finding.SourceUpdatedAt(childComplexity), true case "Finding.state": - if e.complexity.Finding.State == nil { + if e.ComplexityRoot.Finding.State == nil { break } - return e.complexity.Finding.State(childComplexity), true + return e.ComplexityRoot.Finding.State(childComplexity), true case "Finding.status": - if e.complexity.Finding.Status == nil { + if e.ComplexityRoot.Finding.Status == nil { break } - return e.complexity.Finding.Status(childComplexity), true + return e.ComplexityRoot.Finding.Status(childComplexity), true case "Finding.stepsToReproduce": - if e.complexity.Finding.StepsToReproduce == nil { + if e.ComplexityRoot.Finding.StepsToReproduce == nil { break } - return e.complexity.Finding.StepsToReproduce(childComplexity), true + return e.ComplexityRoot.Finding.StepsToReproduce(childComplexity), true case "Finding.subcontrols": - if e.complexity.Finding.Subcontrols == nil { + if e.ComplexityRoot.Finding.Subcontrols == nil { break } @@ -17843,45 +17826,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Finding.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Finding.systemInternalID": - if e.complexity.Finding.SystemInternalID == nil { + if e.ComplexityRoot.Finding.SystemInternalID == nil { break } - return e.complexity.Finding.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Finding.SystemInternalID(childComplexity), true case "Finding.systemOwned": - if e.complexity.Finding.SystemOwned == nil { + if e.ComplexityRoot.Finding.SystemOwned == nil { break } - return e.complexity.Finding.SystemOwned(childComplexity), true + return e.ComplexityRoot.Finding.SystemOwned(childComplexity), true case "Finding.tags": - if e.complexity.Finding.Tags == nil { + if e.ComplexityRoot.Finding.Tags == nil { break } - return e.complexity.Finding.Tags(childComplexity), true + return e.ComplexityRoot.Finding.Tags(childComplexity), true case "Finding.targetDetails": - if e.complexity.Finding.TargetDetails == nil { + if e.ComplexityRoot.Finding.TargetDetails == nil { break } - return e.complexity.Finding.TargetDetails(childComplexity), true + return e.ComplexityRoot.Finding.TargetDetails(childComplexity), true case "Finding.targets": - if e.complexity.Finding.Targets == nil { + if e.ComplexityRoot.Finding.Targets == nil { break } - return e.complexity.Finding.Targets(childComplexity), true + return e.ComplexityRoot.Finding.Targets(childComplexity), true case "Finding.tasks": - if e.complexity.Finding.Tasks == nil { + if e.ComplexityRoot.Finding.Tasks == nil { break } @@ -17890,38 +17873,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Finding.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Finding.updatedAt": - if e.complexity.Finding.UpdatedAt == nil { + if e.ComplexityRoot.Finding.UpdatedAt == nil { break } - return e.complexity.Finding.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Finding.UpdatedAt(childComplexity), true case "Finding.updatedBy": - if e.complexity.Finding.UpdatedBy == nil { + if e.ComplexityRoot.Finding.UpdatedBy == nil { break } - return e.complexity.Finding.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Finding.UpdatedBy(childComplexity), true case "Finding.validated": - if e.complexity.Finding.Validated == nil { + if e.ComplexityRoot.Finding.Validated == nil { break } - return e.complexity.Finding.Validated(childComplexity), true + return e.ComplexityRoot.Finding.Validated(childComplexity), true case "Finding.vector": - if e.complexity.Finding.Vector == nil { + if e.ComplexityRoot.Finding.Vector == nil { break } - return e.complexity.Finding.Vector(childComplexity), true + return e.ComplexityRoot.Finding.Vector(childComplexity), true case "Finding.viewers": - if e.complexity.Finding.Viewers == nil { + if e.ComplexityRoot.Finding.Viewers == nil { break } @@ -17930,10 +17913,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Finding.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Finding.vulnerabilities": - if e.complexity.Finding.Vulnerabilities == nil { + if e.ComplexityRoot.Finding.Vulnerabilities == nil { break } @@ -17942,10 +17925,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Finding.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "Finding.workflowObjectRefs": - if e.complexity.Finding.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Finding.WorkflowObjectRefs == nil { break } @@ -17954,255 +17937,255 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Finding.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Finding.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "FindingBulkCreatePayload.findings": - if e.complexity.FindingBulkCreatePayload.Findings == nil { + if e.ComplexityRoot.FindingBulkCreatePayload.Findings == nil { break } - return e.complexity.FindingBulkCreatePayload.Findings(childComplexity), true + return e.ComplexityRoot.FindingBulkCreatePayload.Findings(childComplexity), true case "FindingConnection.edges": - if e.complexity.FindingConnection.Edges == nil { + if e.ComplexityRoot.FindingConnection.Edges == nil { break } - return e.complexity.FindingConnection.Edges(childComplexity), true + return e.ComplexityRoot.FindingConnection.Edges(childComplexity), true case "FindingConnection.pageInfo": - if e.complexity.FindingConnection.PageInfo == nil { + if e.ComplexityRoot.FindingConnection.PageInfo == nil { break } - return e.complexity.FindingConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.FindingConnection.PageInfo(childComplexity), true case "FindingConnection.totalCount": - if e.complexity.FindingConnection.TotalCount == nil { + if e.ComplexityRoot.FindingConnection.TotalCount == nil { break } - return e.complexity.FindingConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.FindingConnection.TotalCount(childComplexity), true case "FindingControl.control": - if e.complexity.FindingControl.Control == nil { + if e.ComplexityRoot.FindingControl.Control == nil { break } - return e.complexity.FindingControl.Control(childComplexity), true + return e.ComplexityRoot.FindingControl.Control(childComplexity), true case "FindingControl.controlID": - if e.complexity.FindingControl.ControlID == nil { + if e.ComplexityRoot.FindingControl.ControlID == nil { break } - return e.complexity.FindingControl.ControlID(childComplexity), true + return e.ComplexityRoot.FindingControl.ControlID(childComplexity), true case "FindingControl.createdAt": - if e.complexity.FindingControl.CreatedAt == nil { + if e.ComplexityRoot.FindingControl.CreatedAt == nil { break } - return e.complexity.FindingControl.CreatedAt(childComplexity), true + return e.ComplexityRoot.FindingControl.CreatedAt(childComplexity), true case "FindingControl.createdBy": - if e.complexity.FindingControl.CreatedBy == nil { + if e.ComplexityRoot.FindingControl.CreatedBy == nil { break } - return e.complexity.FindingControl.CreatedBy(childComplexity), true + return e.ComplexityRoot.FindingControl.CreatedBy(childComplexity), true case "FindingControl.discoveredAt": - if e.complexity.FindingControl.DiscoveredAt == nil { + if e.ComplexityRoot.FindingControl.DiscoveredAt == nil { break } - return e.complexity.FindingControl.DiscoveredAt(childComplexity), true + return e.ComplexityRoot.FindingControl.DiscoveredAt(childComplexity), true case "FindingControl.externalControlID": - if e.complexity.FindingControl.ExternalControlID == nil { + if e.ComplexityRoot.FindingControl.ExternalControlID == nil { break } - return e.complexity.FindingControl.ExternalControlID(childComplexity), true + return e.ComplexityRoot.FindingControl.ExternalControlID(childComplexity), true case "FindingControl.externalStandard": - if e.complexity.FindingControl.ExternalStandard == nil { + if e.ComplexityRoot.FindingControl.ExternalStandard == nil { break } - return e.complexity.FindingControl.ExternalStandard(childComplexity), true + return e.ComplexityRoot.FindingControl.ExternalStandard(childComplexity), true case "FindingControl.externalStandardVersion": - if e.complexity.FindingControl.ExternalStandardVersion == nil { + if e.ComplexityRoot.FindingControl.ExternalStandardVersion == nil { break } - return e.complexity.FindingControl.ExternalStandardVersion(childComplexity), true + return e.ComplexityRoot.FindingControl.ExternalStandardVersion(childComplexity), true case "FindingControl.finding": - if e.complexity.FindingControl.Finding == nil { + if e.ComplexityRoot.FindingControl.Finding == nil { break } - return e.complexity.FindingControl.Finding(childComplexity), true + return e.ComplexityRoot.FindingControl.Finding(childComplexity), true case "FindingControl.findingID": - if e.complexity.FindingControl.FindingID == nil { + if e.ComplexityRoot.FindingControl.FindingID == nil { break } - return e.complexity.FindingControl.FindingID(childComplexity), true + return e.ComplexityRoot.FindingControl.FindingID(childComplexity), true case "FindingControl.id": - if e.complexity.FindingControl.ID == nil { + if e.ComplexityRoot.FindingControl.ID == nil { break } - return e.complexity.FindingControl.ID(childComplexity), true + return e.ComplexityRoot.FindingControl.ID(childComplexity), true case "FindingControl.metadata": - if e.complexity.FindingControl.Metadata == nil { + if e.ComplexityRoot.FindingControl.Metadata == nil { break } - return e.complexity.FindingControl.Metadata(childComplexity), true + return e.ComplexityRoot.FindingControl.Metadata(childComplexity), true case "FindingControl.source": - if e.complexity.FindingControl.Source == nil { + if e.ComplexityRoot.FindingControl.Source == nil { break } - return e.complexity.FindingControl.Source(childComplexity), true + return e.ComplexityRoot.FindingControl.Source(childComplexity), true case "FindingControl.standard": - if e.complexity.FindingControl.Standard == nil { + if e.ComplexityRoot.FindingControl.Standard == nil { break } - return e.complexity.FindingControl.Standard(childComplexity), true + return e.ComplexityRoot.FindingControl.Standard(childComplexity), true case "FindingControl.standardID": - if e.complexity.FindingControl.StandardID == nil { + if e.ComplexityRoot.FindingControl.StandardID == nil { break } - return e.complexity.FindingControl.StandardID(childComplexity), true + return e.ComplexityRoot.FindingControl.StandardID(childComplexity), true case "FindingControl.updatedAt": - if e.complexity.FindingControl.UpdatedAt == nil { + if e.ComplexityRoot.FindingControl.UpdatedAt == nil { break } - return e.complexity.FindingControl.UpdatedAt(childComplexity), true + return e.ComplexityRoot.FindingControl.UpdatedAt(childComplexity), true case "FindingControl.updatedBy": - if e.complexity.FindingControl.UpdatedBy == nil { + if e.ComplexityRoot.FindingControl.UpdatedBy == nil { break } - return e.complexity.FindingControl.UpdatedBy(childComplexity), true + return e.ComplexityRoot.FindingControl.UpdatedBy(childComplexity), true case "FindingControlBulkCreatePayload.findingControls": - if e.complexity.FindingControlBulkCreatePayload.FindingControls == nil { + if e.ComplexityRoot.FindingControlBulkCreatePayload.FindingControls == nil { break } - return e.complexity.FindingControlBulkCreatePayload.FindingControls(childComplexity), true + return e.ComplexityRoot.FindingControlBulkCreatePayload.FindingControls(childComplexity), true case "FindingControlConnection.edges": - if e.complexity.FindingControlConnection.Edges == nil { + if e.ComplexityRoot.FindingControlConnection.Edges == nil { break } - return e.complexity.FindingControlConnection.Edges(childComplexity), true + return e.ComplexityRoot.FindingControlConnection.Edges(childComplexity), true case "FindingControlConnection.pageInfo": - if e.complexity.FindingControlConnection.PageInfo == nil { + if e.ComplexityRoot.FindingControlConnection.PageInfo == nil { break } - return e.complexity.FindingControlConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.FindingControlConnection.PageInfo(childComplexity), true case "FindingControlConnection.totalCount": - if e.complexity.FindingControlConnection.TotalCount == nil { + if e.ComplexityRoot.FindingControlConnection.TotalCount == nil { break } - return e.complexity.FindingControlConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.FindingControlConnection.TotalCount(childComplexity), true case "FindingControlCreatePayload.findingControl": - if e.complexity.FindingControlCreatePayload.FindingControl == nil { + if e.ComplexityRoot.FindingControlCreatePayload.FindingControl == nil { break } - return e.complexity.FindingControlCreatePayload.FindingControl(childComplexity), true + return e.ComplexityRoot.FindingControlCreatePayload.FindingControl(childComplexity), true case "FindingControlDeletePayload.deletedID": - if e.complexity.FindingControlDeletePayload.DeletedID == nil { + if e.ComplexityRoot.FindingControlDeletePayload.DeletedID == nil { break } - return e.complexity.FindingControlDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.FindingControlDeletePayload.DeletedID(childComplexity), true case "FindingControlEdge.cursor": - if e.complexity.FindingControlEdge.Cursor == nil { + if e.ComplexityRoot.FindingControlEdge.Cursor == nil { break } - return e.complexity.FindingControlEdge.Cursor(childComplexity), true + return e.ComplexityRoot.FindingControlEdge.Cursor(childComplexity), true case "FindingControlEdge.node": - if e.complexity.FindingControlEdge.Node == nil { + if e.ComplexityRoot.FindingControlEdge.Node == nil { break } - return e.complexity.FindingControlEdge.Node(childComplexity), true + return e.ComplexityRoot.FindingControlEdge.Node(childComplexity), true case "FindingControlUpdatePayload.findingControl": - if e.complexity.FindingControlUpdatePayload.FindingControl == nil { + if e.ComplexityRoot.FindingControlUpdatePayload.FindingControl == nil { break } - return e.complexity.FindingControlUpdatePayload.FindingControl(childComplexity), true + return e.ComplexityRoot.FindingControlUpdatePayload.FindingControl(childComplexity), true case "FindingCreatePayload.finding": - if e.complexity.FindingCreatePayload.Finding == nil { + if e.ComplexityRoot.FindingCreatePayload.Finding == nil { break } - return e.complexity.FindingCreatePayload.Finding(childComplexity), true + return e.ComplexityRoot.FindingCreatePayload.Finding(childComplexity), true case "FindingDeletePayload.deletedID": - if e.complexity.FindingDeletePayload.DeletedID == nil { + if e.ComplexityRoot.FindingDeletePayload.DeletedID == nil { break } - return e.complexity.FindingDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.FindingDeletePayload.DeletedID(childComplexity), true case "FindingEdge.cursor": - if e.complexity.FindingEdge.Cursor == nil { + if e.ComplexityRoot.FindingEdge.Cursor == nil { break } - return e.complexity.FindingEdge.Cursor(childComplexity), true + return e.ComplexityRoot.FindingEdge.Cursor(childComplexity), true case "FindingEdge.node": - if e.complexity.FindingEdge.Node == nil { + if e.ComplexityRoot.FindingEdge.Node == nil { break } - return e.complexity.FindingEdge.Node(childComplexity), true + return e.ComplexityRoot.FindingEdge.Node(childComplexity), true case "FindingUpdatePayload.finding": - if e.complexity.FindingUpdatePayload.Finding == nil { + if e.ComplexityRoot.FindingUpdatePayload.Finding == nil { break } - return e.complexity.FindingUpdatePayload.Finding(childComplexity), true + return e.ComplexityRoot.FindingUpdatePayload.Finding(childComplexity), true case "Group.actionPlanBlockedGroups": - if e.complexity.Group.ActionPlanBlockedGroups == nil { + if e.ComplexityRoot.Group.ActionPlanBlockedGroups == nil { break } @@ -18211,10 +18194,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ActionPlanBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Group.ActionPlanBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Group.actionPlanEditors": - if e.complexity.Group.ActionPlanEditors == nil { + if e.ComplexityRoot.Group.ActionPlanEditors == nil { break } @@ -18223,10 +18206,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ActionPlanEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Group.ActionPlanEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Group.actionPlanViewers": - if e.complexity.Group.ActionPlanViewers == nil { + if e.ComplexityRoot.Group.ActionPlanViewers == nil { break } @@ -18235,10 +18218,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ActionPlanViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Group.ActionPlanViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Group.campaignBlockedGroups": - if e.complexity.Group.CampaignBlockedGroups == nil { + if e.ComplexityRoot.Group.CampaignBlockedGroups == nil { break } @@ -18247,10 +18230,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.CampaignBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Group.CampaignBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Group.campaignEditors": - if e.complexity.Group.CampaignEditors == nil { + if e.ComplexityRoot.Group.CampaignEditors == nil { break } @@ -18259,10 +18242,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.CampaignEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Group.CampaignEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Group.campaignTargets": - if e.complexity.Group.CampaignTargets == nil { + if e.ComplexityRoot.Group.CampaignTargets == nil { break } @@ -18271,10 +18254,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true + return e.ComplexityRoot.Group.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true case "Group.campaignViewers": - if e.complexity.Group.CampaignViewers == nil { + if e.ComplexityRoot.Group.CampaignViewers == nil { break } @@ -18283,10 +18266,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.CampaignViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Group.CampaignViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Group.campaigns": - if e.complexity.Group.Campaigns == nil { + if e.ComplexityRoot.Group.Campaigns == nil { break } @@ -18295,10 +18278,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Group.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Group.controlBlockedGroups": - if e.complexity.Group.ControlBlockedGroups == nil { + if e.ComplexityRoot.Group.ControlBlockedGroups == nil { break } @@ -18307,10 +18290,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Group.ControlBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Group.controlEditors": - if e.complexity.Group.ControlEditors == nil { + if e.ComplexityRoot.Group.ControlEditors == nil { break } @@ -18319,10 +18302,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Group.ControlEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Group.controlImplementationBlockedGroups": - if e.complexity.Group.ControlImplementationBlockedGroups == nil { + if e.ComplexityRoot.Group.ControlImplementationBlockedGroups == nil { break } @@ -18331,10 +18314,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlImplementationBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Group.ControlImplementationBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Group.controlImplementationEditors": - if e.complexity.Group.ControlImplementationEditors == nil { + if e.ComplexityRoot.Group.ControlImplementationEditors == nil { break } @@ -18343,10 +18326,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlImplementationEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Group.ControlImplementationEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Group.controlImplementationViewers": - if e.complexity.Group.ControlImplementationViewers == nil { + if e.ComplexityRoot.Group.ControlImplementationViewers == nil { break } @@ -18355,10 +18338,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlImplementationViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Group.ControlImplementationViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Group.controlObjectiveBlockedGroups": - if e.complexity.Group.ControlObjectiveBlockedGroups == nil { + if e.ComplexityRoot.Group.ControlObjectiveBlockedGroups == nil { break } @@ -18367,10 +18350,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlObjectiveBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Group.ControlObjectiveBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Group.controlObjectiveEditors": - if e.complexity.Group.ControlObjectiveEditors == nil { + if e.ComplexityRoot.Group.ControlObjectiveEditors == nil { break } @@ -18379,10 +18362,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlObjectiveEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Group.ControlObjectiveEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Group.controlObjectiveViewers": - if e.complexity.Group.ControlObjectiveViewers == nil { + if e.ComplexityRoot.Group.ControlObjectiveViewers == nil { break } @@ -18391,45 +18374,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ControlObjectiveViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Group.ControlObjectiveViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Group.createdAt": - if e.complexity.Group.CreatedAt == nil { + if e.ComplexityRoot.Group.CreatedAt == nil { break } - return e.complexity.Group.CreatedAt(childComplexity), true + return e.ComplexityRoot.Group.CreatedAt(childComplexity), true case "Group.createdBy": - if e.complexity.Group.CreatedBy == nil { + if e.ComplexityRoot.Group.CreatedBy == nil { break } - return e.complexity.Group.CreatedBy(childComplexity), true + return e.ComplexityRoot.Group.CreatedBy(childComplexity), true case "Group.description": - if e.complexity.Group.Description == nil { + if e.ComplexityRoot.Group.Description == nil { break } - return e.complexity.Group.Description(childComplexity), true + return e.ComplexityRoot.Group.Description(childComplexity), true case "Group.displayID": - if e.complexity.Group.DisplayID == nil { + if e.ComplexityRoot.Group.DisplayID == nil { break } - return e.complexity.Group.DisplayID(childComplexity), true + return e.ComplexityRoot.Group.DisplayID(childComplexity), true case "Group.displayName": - if e.complexity.Group.DisplayName == nil { + if e.ComplexityRoot.Group.DisplayName == nil { break } - return e.complexity.Group.DisplayName(childComplexity), true + return e.ComplexityRoot.Group.DisplayName(childComplexity), true case "Group.entityBlockedGroups": - if e.complexity.Group.EntityBlockedGroups == nil { + if e.ComplexityRoot.Group.EntityBlockedGroups == nil { break } @@ -18438,10 +18421,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.EntityBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Group.EntityBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Group.entityEditors": - if e.complexity.Group.EntityEditors == nil { + if e.ComplexityRoot.Group.EntityEditors == nil { break } @@ -18450,10 +18433,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.EntityEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Group.EntityEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Group.entityViewers": - if e.complexity.Group.EntityViewers == nil { + if e.ComplexityRoot.Group.EntityViewers == nil { break } @@ -18462,10 +18445,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.EntityViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Group.EntityViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Group.events": - if e.complexity.Group.Events == nil { + if e.ComplexityRoot.Group.Events == nil { break } @@ -18474,10 +18457,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Group.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Group.files": - if e.complexity.Group.Files == nil { + if e.ComplexityRoot.Group.Files == nil { break } @@ -18486,24 +18469,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Group.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Group.gravatarLogoURL": - if e.complexity.Group.GravatarLogoURL == nil { + if e.ComplexityRoot.Group.GravatarLogoURL == nil { break } - return e.complexity.Group.GravatarLogoURL(childComplexity), true + return e.ComplexityRoot.Group.GravatarLogoURL(childComplexity), true case "Group.id": - if e.complexity.Group.ID == nil { + if e.ComplexityRoot.Group.ID == nil { break } - return e.complexity.Group.ID(childComplexity), true + return e.ComplexityRoot.Group.ID(childComplexity), true case "Group.integrations": - if e.complexity.Group.Integrations == nil { + if e.ComplexityRoot.Group.Integrations == nil { break } @@ -18512,10 +18495,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Group.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Group.internalPolicyBlockedGroups": - if e.complexity.Group.InternalPolicyBlockedGroups == nil { + if e.ComplexityRoot.Group.InternalPolicyBlockedGroups == nil { break } @@ -18524,10 +18507,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.InternalPolicyBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Group.InternalPolicyBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Group.internalPolicyEditors": - if e.complexity.Group.InternalPolicyEditors == nil { + if e.ComplexityRoot.Group.InternalPolicyEditors == nil { break } @@ -18536,24 +18519,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.InternalPolicyEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Group.InternalPolicyEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Group.isManaged": - if e.complexity.Group.IsManaged == nil { + if e.ComplexityRoot.Group.IsManaged == nil { break } - return e.complexity.Group.IsManaged(childComplexity), true + return e.ComplexityRoot.Group.IsManaged(childComplexity), true case "Group.logoURL": - if e.complexity.Group.LogoURL == nil { + if e.ComplexityRoot.Group.LogoURL == nil { break } - return e.complexity.Group.LogoURL(childComplexity), true + return e.ComplexityRoot.Group.LogoURL(childComplexity), true case "Group.mappedControlBlockedGroups": - if e.complexity.Group.MappedControlBlockedGroups == nil { + if e.ComplexityRoot.Group.MappedControlBlockedGroups == nil { break } @@ -18562,10 +18545,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.MappedControlBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true + return e.ComplexityRoot.Group.MappedControlBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true case "Group.mappedControlEditors": - if e.complexity.Group.MappedControlEditors == nil { + if e.ComplexityRoot.Group.MappedControlEditors == nil { break } @@ -18574,10 +18557,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.MappedControlEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true + return e.ComplexityRoot.Group.MappedControlEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true case "Group.members": - if e.complexity.Group.Members == nil { + if e.ComplexityRoot.Group.Members == nil { break } @@ -18586,17 +18569,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true + return e.ComplexityRoot.Group.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true case "Group.name": - if e.complexity.Group.Name == nil { + if e.ComplexityRoot.Group.Name == nil { break } - return e.complexity.Group.Name(childComplexity), true + return e.ComplexityRoot.Group.Name(childComplexity), true case "Group.narrativeBlockedGroups": - if e.complexity.Group.NarrativeBlockedGroups == nil { + if e.ComplexityRoot.Group.NarrativeBlockedGroups == nil { break } @@ -18605,10 +18588,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.NarrativeBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Group.NarrativeBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Group.narrativeEditors": - if e.complexity.Group.NarrativeEditors == nil { + if e.ComplexityRoot.Group.NarrativeEditors == nil { break } @@ -18617,10 +18600,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.NarrativeEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Group.NarrativeEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Group.narrativeViewers": - if e.complexity.Group.NarrativeViewers == nil { + if e.ComplexityRoot.Group.NarrativeViewers == nil { break } @@ -18629,24 +18612,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.NarrativeViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Group.NarrativeViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Group.owner": - if e.complexity.Group.Owner == nil { + if e.ComplexityRoot.Group.Owner == nil { break } - return e.complexity.Group.Owner(childComplexity), true + return e.ComplexityRoot.Group.Owner(childComplexity), true case "Group.ownerID": - if e.complexity.Group.OwnerID == nil { + if e.ComplexityRoot.Group.OwnerID == nil { break } - return e.complexity.Group.OwnerID(childComplexity), true + return e.ComplexityRoot.Group.OwnerID(childComplexity), true case "Group.permissions": - if e.complexity.Group.Permissions == nil { + if e.ComplexityRoot.Group.Permissions == nil { break } @@ -18655,10 +18638,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Permissions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Group.Permissions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Group.platformBlockedGroups": - if e.complexity.Group.PlatformBlockedGroups == nil { + if e.ComplexityRoot.Group.PlatformBlockedGroups == nil { break } @@ -18667,10 +18650,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.PlatformBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Group.PlatformBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Group.platformEditors": - if e.complexity.Group.PlatformEditors == nil { + if e.ComplexityRoot.Group.PlatformEditors == nil { break } @@ -18679,10 +18662,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.PlatformEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Group.PlatformEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Group.platformViewers": - if e.complexity.Group.PlatformViewers == nil { + if e.ComplexityRoot.Group.PlatformViewers == nil { break } @@ -18691,10 +18674,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.PlatformViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Group.PlatformViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Group.procedureBlockedGroups": - if e.complexity.Group.ProcedureBlockedGroups == nil { + if e.ComplexityRoot.Group.ProcedureBlockedGroups == nil { break } @@ -18703,10 +18686,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ProcedureBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Group.ProcedureBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Group.procedureEditors": - if e.complexity.Group.ProcedureEditors == nil { + if e.ComplexityRoot.Group.ProcedureEditors == nil { break } @@ -18715,10 +18698,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ProcedureEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Group.ProcedureEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Group.programBlockedGroups": - if e.complexity.Group.ProgramBlockedGroups == nil { + if e.ComplexityRoot.Group.ProgramBlockedGroups == nil { break } @@ -18727,10 +18710,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ProgramBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Group.ProgramBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Group.programEditors": - if e.complexity.Group.ProgramEditors == nil { + if e.ComplexityRoot.Group.ProgramEditors == nil { break } @@ -18739,10 +18722,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ProgramEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Group.ProgramEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Group.programViewers": - if e.complexity.Group.ProgramViewers == nil { + if e.ComplexityRoot.Group.ProgramViewers == nil { break } @@ -18751,10 +18734,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ProgramViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Group.ProgramViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Group.riskBlockedGroups": - if e.complexity.Group.RiskBlockedGroups == nil { + if e.ComplexityRoot.Group.RiskBlockedGroups == nil { break } @@ -18763,10 +18746,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.RiskBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Group.RiskBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Group.riskEditors": - if e.complexity.Group.RiskEditors == nil { + if e.ComplexityRoot.Group.RiskEditors == nil { break } @@ -18775,10 +18758,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.RiskEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Group.RiskEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Group.riskViewers": - if e.complexity.Group.RiskViewers == nil { + if e.ComplexityRoot.Group.RiskViewers == nil { break } @@ -18787,10 +18770,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.RiskViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Group.RiskViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Group.scanBlockedGroups": - if e.complexity.Group.ScanBlockedGroups == nil { + if e.ComplexityRoot.Group.ScanBlockedGroups == nil { break } @@ -18799,10 +18782,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ScanBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Group.ScanBlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Group.scanEditors": - if e.complexity.Group.ScanEditors == nil { + if e.ComplexityRoot.Group.ScanEditors == nil { break } @@ -18811,10 +18794,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ScanEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Group.ScanEditors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Group.scanViewers": - if e.complexity.Group.ScanViewers == nil { + if e.ComplexityRoot.Group.ScanViewers == nil { break } @@ -18823,52 +18806,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.ScanViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Group.ScanViewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Group.scimActive": - if e.complexity.Group.ScimActive == nil { + if e.ComplexityRoot.Group.ScimActive == nil { break } - return e.complexity.Group.ScimActive(childComplexity), true + return e.ComplexityRoot.Group.ScimActive(childComplexity), true case "Group.scimDisplayName": - if e.complexity.Group.ScimDisplayName == nil { + if e.ComplexityRoot.Group.ScimDisplayName == nil { break } - return e.complexity.Group.ScimDisplayName(childComplexity), true + return e.ComplexityRoot.Group.ScimDisplayName(childComplexity), true case "Group.scimExternalID": - if e.complexity.Group.ScimExternalID == nil { + if e.ComplexityRoot.Group.ScimExternalID == nil { break } - return e.complexity.Group.ScimExternalID(childComplexity), true + return e.ComplexityRoot.Group.ScimExternalID(childComplexity), true case "Group.scimGroupMailing": - if e.complexity.Group.ScimGroupMailing == nil { + if e.ComplexityRoot.Group.ScimGroupMailing == nil { break } - return e.complexity.Group.ScimGroupMailing(childComplexity), true + return e.ComplexityRoot.Group.ScimGroupMailing(childComplexity), true case "Group.setting": - if e.complexity.Group.Setting == nil { + if e.ComplexityRoot.Group.Setting == nil { break } - return e.complexity.Group.Setting(childComplexity), true + return e.ComplexityRoot.Group.Setting(childComplexity), true case "Group.tags": - if e.complexity.Group.Tags == nil { + if e.ComplexityRoot.Group.Tags == nil { break } - return e.complexity.Group.Tags(childComplexity), true + return e.ComplexityRoot.Group.Tags(childComplexity), true case "Group.tasks": - if e.complexity.Group.Tasks == nil { + if e.ComplexityRoot.Group.Tasks == nil { break } @@ -18877,24 +18860,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Group.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Group.updatedAt": - if e.complexity.Group.UpdatedAt == nil { + if e.ComplexityRoot.Group.UpdatedAt == nil { break } - return e.complexity.Group.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Group.UpdatedAt(childComplexity), true case "Group.updatedBy": - if e.complexity.Group.UpdatedBy == nil { + if e.ComplexityRoot.Group.UpdatedBy == nil { break } - return e.complexity.Group.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Group.UpdatedBy(childComplexity), true case "Group.users": - if e.complexity.Group.Users == nil { + if e.ComplexityRoot.Group.Users == nil { break } @@ -18903,101 +18886,101 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Group.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true + return e.ComplexityRoot.Group.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true case "GroupBulkCreatePayload.groups": - if e.complexity.GroupBulkCreatePayload.Groups == nil { + if e.ComplexityRoot.GroupBulkCreatePayload.Groups == nil { break } - return e.complexity.GroupBulkCreatePayload.Groups(childComplexity), true + return e.ComplexityRoot.GroupBulkCreatePayload.Groups(childComplexity), true case "GroupBulkDeletePayload.deletedIDs": - if e.complexity.GroupBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.GroupBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.GroupBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.GroupBulkDeletePayload.DeletedIDs(childComplexity), true case "GroupBulkUpdatePayload.groups": - if e.complexity.GroupBulkUpdatePayload.Groups == nil { + if e.ComplexityRoot.GroupBulkUpdatePayload.Groups == nil { break } - return e.complexity.GroupBulkUpdatePayload.Groups(childComplexity), true + return e.ComplexityRoot.GroupBulkUpdatePayload.Groups(childComplexity), true case "GroupBulkUpdatePayload.updatedIDs": - if e.complexity.GroupBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.GroupBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.GroupBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.GroupBulkUpdatePayload.UpdatedIDs(childComplexity), true case "GroupConnection.edges": - if e.complexity.GroupConnection.Edges == nil { + if e.ComplexityRoot.GroupConnection.Edges == nil { break } - return e.complexity.GroupConnection.Edges(childComplexity), true + return e.ComplexityRoot.GroupConnection.Edges(childComplexity), true case "GroupConnection.pageInfo": - if e.complexity.GroupConnection.PageInfo == nil { + if e.ComplexityRoot.GroupConnection.PageInfo == nil { break } - return e.complexity.GroupConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.GroupConnection.PageInfo(childComplexity), true case "GroupConnection.totalCount": - if e.complexity.GroupConnection.TotalCount == nil { + if e.ComplexityRoot.GroupConnection.TotalCount == nil { break } - return e.complexity.GroupConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.GroupConnection.TotalCount(childComplexity), true case "GroupCreatePayload.group": - if e.complexity.GroupCreatePayload.Group == nil { + if e.ComplexityRoot.GroupCreatePayload.Group == nil { break } - return e.complexity.GroupCreatePayload.Group(childComplexity), true + return e.ComplexityRoot.GroupCreatePayload.Group(childComplexity), true case "GroupDeletePayload.deletedID": - if e.complexity.GroupDeletePayload.DeletedID == nil { + if e.ComplexityRoot.GroupDeletePayload.DeletedID == nil { break } - return e.complexity.GroupDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.GroupDeletePayload.DeletedID(childComplexity), true case "GroupEdge.cursor": - if e.complexity.GroupEdge.Cursor == nil { + if e.ComplexityRoot.GroupEdge.Cursor == nil { break } - return e.complexity.GroupEdge.Cursor(childComplexity), true + return e.ComplexityRoot.GroupEdge.Cursor(childComplexity), true case "GroupEdge.node": - if e.complexity.GroupEdge.Node == nil { + if e.ComplexityRoot.GroupEdge.Node == nil { break } - return e.complexity.GroupEdge.Node(childComplexity), true + return e.ComplexityRoot.GroupEdge.Node(childComplexity), true case "GroupMembership.createdAt": - if e.complexity.GroupMembership.CreatedAt == nil { + if e.ComplexityRoot.GroupMembership.CreatedAt == nil { break } - return e.complexity.GroupMembership.CreatedAt(childComplexity), true + return e.ComplexityRoot.GroupMembership.CreatedAt(childComplexity), true case "GroupMembership.createdBy": - if e.complexity.GroupMembership.CreatedBy == nil { + if e.ComplexityRoot.GroupMembership.CreatedBy == nil { break } - return e.complexity.GroupMembership.CreatedBy(childComplexity), true + return e.ComplexityRoot.GroupMembership.CreatedBy(childComplexity), true case "GroupMembership.events": - if e.complexity.GroupMembership.Events == nil { + if e.ComplexityRoot.GroupMembership.Events == nil { break } @@ -19006,416 +18989,416 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.GroupMembership.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.GroupMembership.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "GroupMembership.group": - if e.complexity.GroupMembership.Group == nil { + if e.ComplexityRoot.GroupMembership.Group == nil { break } - return e.complexity.GroupMembership.Group(childComplexity), true + return e.ComplexityRoot.GroupMembership.Group(childComplexity), true case "GroupMembership.groupID": - if e.complexity.GroupMembership.GroupID == nil { + if e.ComplexityRoot.GroupMembership.GroupID == nil { break } - return e.complexity.GroupMembership.GroupID(childComplexity), true + return e.ComplexityRoot.GroupMembership.GroupID(childComplexity), true case "GroupMembership.id": - if e.complexity.GroupMembership.ID == nil { + if e.ComplexityRoot.GroupMembership.ID == nil { break } - return e.complexity.GroupMembership.ID(childComplexity), true + return e.ComplexityRoot.GroupMembership.ID(childComplexity), true case "GroupMembership.role": - if e.complexity.GroupMembership.Role == nil { + if e.ComplexityRoot.GroupMembership.Role == nil { break } - return e.complexity.GroupMembership.Role(childComplexity), true + return e.ComplexityRoot.GroupMembership.Role(childComplexity), true case "GroupMembership.updatedAt": - if e.complexity.GroupMembership.UpdatedAt == nil { + if e.ComplexityRoot.GroupMembership.UpdatedAt == nil { break } - return e.complexity.GroupMembership.UpdatedAt(childComplexity), true + return e.ComplexityRoot.GroupMembership.UpdatedAt(childComplexity), true case "GroupMembership.updatedBy": - if e.complexity.GroupMembership.UpdatedBy == nil { + if e.ComplexityRoot.GroupMembership.UpdatedBy == nil { break } - return e.complexity.GroupMembership.UpdatedBy(childComplexity), true + return e.ComplexityRoot.GroupMembership.UpdatedBy(childComplexity), true case "GroupMembership.user": - if e.complexity.GroupMembership.User == nil { + if e.ComplexityRoot.GroupMembership.User == nil { break } - return e.complexity.GroupMembership.User(childComplexity), true + return e.ComplexityRoot.GroupMembership.User(childComplexity), true case "GroupMembership.userID": - if e.complexity.GroupMembership.UserID == nil { + if e.ComplexityRoot.GroupMembership.UserID == nil { break } - return e.complexity.GroupMembership.UserID(childComplexity), true + return e.ComplexityRoot.GroupMembership.UserID(childComplexity), true case "GroupMembershipBulkCreatePayload.groupMemberships": - if e.complexity.GroupMembershipBulkCreatePayload.GroupMemberships == nil { + if e.ComplexityRoot.GroupMembershipBulkCreatePayload.GroupMemberships == nil { break } - return e.complexity.GroupMembershipBulkCreatePayload.GroupMemberships(childComplexity), true + return e.ComplexityRoot.GroupMembershipBulkCreatePayload.GroupMemberships(childComplexity), true case "GroupMembershipBulkDeletePayload.deletedIDs": - if e.complexity.GroupMembershipBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.GroupMembershipBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.GroupMembershipBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.GroupMembershipBulkDeletePayload.DeletedIDs(childComplexity), true case "GroupMembershipBulkUpdatePayload.groupMemberships": - if e.complexity.GroupMembershipBulkUpdatePayload.GroupMemberships == nil { + if e.ComplexityRoot.GroupMembershipBulkUpdatePayload.GroupMemberships == nil { break } - return e.complexity.GroupMembershipBulkUpdatePayload.GroupMemberships(childComplexity), true + return e.ComplexityRoot.GroupMembershipBulkUpdatePayload.GroupMemberships(childComplexity), true case "GroupMembershipBulkUpdatePayload.updatedIDs": - if e.complexity.GroupMembershipBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.GroupMembershipBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.GroupMembershipBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.GroupMembershipBulkUpdatePayload.UpdatedIDs(childComplexity), true case "GroupMembershipConnection.edges": - if e.complexity.GroupMembershipConnection.Edges == nil { + if e.ComplexityRoot.GroupMembershipConnection.Edges == nil { break } - return e.complexity.GroupMembershipConnection.Edges(childComplexity), true + return e.ComplexityRoot.GroupMembershipConnection.Edges(childComplexity), true case "GroupMembershipConnection.pageInfo": - if e.complexity.GroupMembershipConnection.PageInfo == nil { + if e.ComplexityRoot.GroupMembershipConnection.PageInfo == nil { break } - return e.complexity.GroupMembershipConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.GroupMembershipConnection.PageInfo(childComplexity), true case "GroupMembershipConnection.totalCount": - if e.complexity.GroupMembershipConnection.TotalCount == nil { + if e.ComplexityRoot.GroupMembershipConnection.TotalCount == nil { break } - return e.complexity.GroupMembershipConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.GroupMembershipConnection.TotalCount(childComplexity), true case "GroupMembershipCreatePayload.groupMembership": - if e.complexity.GroupMembershipCreatePayload.GroupMembership == nil { + if e.ComplexityRoot.GroupMembershipCreatePayload.GroupMembership == nil { break } - return e.complexity.GroupMembershipCreatePayload.GroupMembership(childComplexity), true + return e.ComplexityRoot.GroupMembershipCreatePayload.GroupMembership(childComplexity), true case "GroupMembershipDeletePayload.deletedID": - if e.complexity.GroupMembershipDeletePayload.DeletedID == nil { + if e.ComplexityRoot.GroupMembershipDeletePayload.DeletedID == nil { break } - return e.complexity.GroupMembershipDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.GroupMembershipDeletePayload.DeletedID(childComplexity), true case "GroupMembershipEdge.cursor": - if e.complexity.GroupMembershipEdge.Cursor == nil { + if e.ComplexityRoot.GroupMembershipEdge.Cursor == nil { break } - return e.complexity.GroupMembershipEdge.Cursor(childComplexity), true + return e.ComplexityRoot.GroupMembershipEdge.Cursor(childComplexity), true case "GroupMembershipEdge.node": - if e.complexity.GroupMembershipEdge.Node == nil { + if e.ComplexityRoot.GroupMembershipEdge.Node == nil { break } - return e.complexity.GroupMembershipEdge.Node(childComplexity), true + return e.ComplexityRoot.GroupMembershipEdge.Node(childComplexity), true case "GroupMembershipUpdatePayload.groupMembership": - if e.complexity.GroupMembershipUpdatePayload.GroupMembership == nil { + if e.ComplexityRoot.GroupMembershipUpdatePayload.GroupMembership == nil { break } - return e.complexity.GroupMembershipUpdatePayload.GroupMembership(childComplexity), true + return e.ComplexityRoot.GroupMembershipUpdatePayload.GroupMembership(childComplexity), true case "GroupPermission.displayID": - if e.complexity.GroupPermission.DisplayID == nil { + if e.ComplexityRoot.GroupPermission.DisplayID == nil { break } - return e.complexity.GroupPermission.DisplayID(childComplexity), true + return e.ComplexityRoot.GroupPermission.DisplayID(childComplexity), true case "GroupPermission.id": - if e.complexity.GroupPermission.ID == nil { + if e.ComplexityRoot.GroupPermission.ID == nil { break } - return e.complexity.GroupPermission.ID(childComplexity), true + return e.ComplexityRoot.GroupPermission.ID(childComplexity), true case "GroupPermission.name": - if e.complexity.GroupPermission.Name == nil { + if e.ComplexityRoot.GroupPermission.Name == nil { break } - return e.complexity.GroupPermission.Name(childComplexity), true + return e.ComplexityRoot.GroupPermission.Name(childComplexity), true case "GroupPermission.objectType": - if e.complexity.GroupPermission.ObjectType == nil { + if e.ComplexityRoot.GroupPermission.ObjectType == nil { break } - return e.complexity.GroupPermission.ObjectType(childComplexity), true + return e.ComplexityRoot.GroupPermission.ObjectType(childComplexity), true case "GroupPermission.permissions": - if e.complexity.GroupPermission.Permissions == nil { + if e.ComplexityRoot.GroupPermission.Permissions == nil { break } - return e.complexity.GroupPermission.Permissions(childComplexity), true + return e.ComplexityRoot.GroupPermission.Permissions(childComplexity), true case "GroupPermissionConnection.edges": - if e.complexity.GroupPermissionConnection.Edges == nil { + if e.ComplexityRoot.GroupPermissionConnection.Edges == nil { break } - return e.complexity.GroupPermissionConnection.Edges(childComplexity), true + return e.ComplexityRoot.GroupPermissionConnection.Edges(childComplexity), true case "GroupPermissionConnection.pageInfo": - if e.complexity.GroupPermissionConnection.PageInfo == nil { + if e.ComplexityRoot.GroupPermissionConnection.PageInfo == nil { break } - return e.complexity.GroupPermissionConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.GroupPermissionConnection.PageInfo(childComplexity), true case "GroupPermissionConnection.totalCount": - if e.complexity.GroupPermissionConnection.TotalCount == nil { + if e.ComplexityRoot.GroupPermissionConnection.TotalCount == nil { break } - return e.complexity.GroupPermissionConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.GroupPermissionConnection.TotalCount(childComplexity), true case "GroupPermissionEdge.cursor": - if e.complexity.GroupPermissionEdge.Cursor == nil { + if e.ComplexityRoot.GroupPermissionEdge.Cursor == nil { break } - return e.complexity.GroupPermissionEdge.Cursor(childComplexity), true + return e.ComplexityRoot.GroupPermissionEdge.Cursor(childComplexity), true case "GroupPermissionEdge.node": - if e.complexity.GroupPermissionEdge.Node == nil { + if e.ComplexityRoot.GroupPermissionEdge.Node == nil { break } - return e.complexity.GroupPermissionEdge.Node(childComplexity), true + return e.ComplexityRoot.GroupPermissionEdge.Node(childComplexity), true case "GroupSetting.createdAt": - if e.complexity.GroupSetting.CreatedAt == nil { + if e.ComplexityRoot.GroupSetting.CreatedAt == nil { break } - return e.complexity.GroupSetting.CreatedAt(childComplexity), true + return e.ComplexityRoot.GroupSetting.CreatedAt(childComplexity), true case "GroupSetting.createdBy": - if e.complexity.GroupSetting.CreatedBy == nil { + if e.ComplexityRoot.GroupSetting.CreatedBy == nil { break } - return e.complexity.GroupSetting.CreatedBy(childComplexity), true + return e.ComplexityRoot.GroupSetting.CreatedBy(childComplexity), true case "GroupSetting.group": - if e.complexity.GroupSetting.Group == nil { + if e.ComplexityRoot.GroupSetting.Group == nil { break } - return e.complexity.GroupSetting.Group(childComplexity), true + return e.ComplexityRoot.GroupSetting.Group(childComplexity), true case "GroupSetting.groupID": - if e.complexity.GroupSetting.GroupID == nil { + if e.ComplexityRoot.GroupSetting.GroupID == nil { break } - return e.complexity.GroupSetting.GroupID(childComplexity), true + return e.ComplexityRoot.GroupSetting.GroupID(childComplexity), true case "GroupSetting.id": - if e.complexity.GroupSetting.ID == nil { + if e.ComplexityRoot.GroupSetting.ID == nil { break } - return e.complexity.GroupSetting.ID(childComplexity), true + return e.ComplexityRoot.GroupSetting.ID(childComplexity), true case "GroupSetting.joinPolicy": - if e.complexity.GroupSetting.JoinPolicy == nil { + if e.ComplexityRoot.GroupSetting.JoinPolicy == nil { break } - return e.complexity.GroupSetting.JoinPolicy(childComplexity), true + return e.ComplexityRoot.GroupSetting.JoinPolicy(childComplexity), true case "GroupSetting.syncToGithub": - if e.complexity.GroupSetting.SyncToGithub == nil { + if e.ComplexityRoot.GroupSetting.SyncToGithub == nil { break } - return e.complexity.GroupSetting.SyncToGithub(childComplexity), true + return e.ComplexityRoot.GroupSetting.SyncToGithub(childComplexity), true case "GroupSetting.syncToSlack": - if e.complexity.GroupSetting.SyncToSlack == nil { + if e.ComplexityRoot.GroupSetting.SyncToSlack == nil { break } - return e.complexity.GroupSetting.SyncToSlack(childComplexity), true + return e.ComplexityRoot.GroupSetting.SyncToSlack(childComplexity), true case "GroupSetting.updatedAt": - if e.complexity.GroupSetting.UpdatedAt == nil { + if e.ComplexityRoot.GroupSetting.UpdatedAt == nil { break } - return e.complexity.GroupSetting.UpdatedAt(childComplexity), true + return e.ComplexityRoot.GroupSetting.UpdatedAt(childComplexity), true case "GroupSetting.updatedBy": - if e.complexity.GroupSetting.UpdatedBy == nil { + if e.ComplexityRoot.GroupSetting.UpdatedBy == nil { break } - return e.complexity.GroupSetting.UpdatedBy(childComplexity), true + return e.ComplexityRoot.GroupSetting.UpdatedBy(childComplexity), true case "GroupSetting.visibility": - if e.complexity.GroupSetting.Visibility == nil { + if e.ComplexityRoot.GroupSetting.Visibility == nil { break } - return e.complexity.GroupSetting.Visibility(childComplexity), true + return e.ComplexityRoot.GroupSetting.Visibility(childComplexity), true case "GroupSettingBulkCreatePayload.groupSettings": - if e.complexity.GroupSettingBulkCreatePayload.GroupSettings == nil { + if e.ComplexityRoot.GroupSettingBulkCreatePayload.GroupSettings == nil { break } - return e.complexity.GroupSettingBulkCreatePayload.GroupSettings(childComplexity), true + return e.ComplexityRoot.GroupSettingBulkCreatePayload.GroupSettings(childComplexity), true case "GroupSettingBulkDeletePayload.deletedIDs": - if e.complexity.GroupSettingBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.GroupSettingBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.GroupSettingBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.GroupSettingBulkDeletePayload.DeletedIDs(childComplexity), true case "GroupSettingBulkUpdatePayload.groupSettings": - if e.complexity.GroupSettingBulkUpdatePayload.GroupSettings == nil { + if e.ComplexityRoot.GroupSettingBulkUpdatePayload.GroupSettings == nil { break } - return e.complexity.GroupSettingBulkUpdatePayload.GroupSettings(childComplexity), true + return e.ComplexityRoot.GroupSettingBulkUpdatePayload.GroupSettings(childComplexity), true case "GroupSettingBulkUpdatePayload.updatedIDs": - if e.complexity.GroupSettingBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.GroupSettingBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.GroupSettingBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.GroupSettingBulkUpdatePayload.UpdatedIDs(childComplexity), true case "GroupSettingConnection.edges": - if e.complexity.GroupSettingConnection.Edges == nil { + if e.ComplexityRoot.GroupSettingConnection.Edges == nil { break } - return e.complexity.GroupSettingConnection.Edges(childComplexity), true + return e.ComplexityRoot.GroupSettingConnection.Edges(childComplexity), true case "GroupSettingConnection.pageInfo": - if e.complexity.GroupSettingConnection.PageInfo == nil { + if e.ComplexityRoot.GroupSettingConnection.PageInfo == nil { break } - return e.complexity.GroupSettingConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.GroupSettingConnection.PageInfo(childComplexity), true case "GroupSettingConnection.totalCount": - if e.complexity.GroupSettingConnection.TotalCount == nil { + if e.ComplexityRoot.GroupSettingConnection.TotalCount == nil { break } - return e.complexity.GroupSettingConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.GroupSettingConnection.TotalCount(childComplexity), true case "GroupSettingCreatePayload.groupSetting": - if e.complexity.GroupSettingCreatePayload.GroupSetting == nil { + if e.ComplexityRoot.GroupSettingCreatePayload.GroupSetting == nil { break } - return e.complexity.GroupSettingCreatePayload.GroupSetting(childComplexity), true + return e.ComplexityRoot.GroupSettingCreatePayload.GroupSetting(childComplexity), true case "GroupSettingDeletePayload.deletedID": - if e.complexity.GroupSettingDeletePayload.DeletedID == nil { + if e.ComplexityRoot.GroupSettingDeletePayload.DeletedID == nil { break } - return e.complexity.GroupSettingDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.GroupSettingDeletePayload.DeletedID(childComplexity), true case "GroupSettingEdge.cursor": - if e.complexity.GroupSettingEdge.Cursor == nil { + if e.ComplexityRoot.GroupSettingEdge.Cursor == nil { break } - return e.complexity.GroupSettingEdge.Cursor(childComplexity), true + return e.ComplexityRoot.GroupSettingEdge.Cursor(childComplexity), true case "GroupSettingEdge.node": - if e.complexity.GroupSettingEdge.Node == nil { + if e.ComplexityRoot.GroupSettingEdge.Node == nil { break } - return e.complexity.GroupSettingEdge.Node(childComplexity), true + return e.ComplexityRoot.GroupSettingEdge.Node(childComplexity), true case "GroupSettingUpdatePayload.groupSetting": - if e.complexity.GroupSettingUpdatePayload.GroupSetting == nil { + if e.ComplexityRoot.GroupSettingUpdatePayload.GroupSetting == nil { break } - return e.complexity.GroupSettingUpdatePayload.GroupSetting(childComplexity), true + return e.ComplexityRoot.GroupSettingUpdatePayload.GroupSetting(childComplexity), true case "GroupUpdatePayload.group": - if e.complexity.GroupUpdatePayload.Group == nil { + if e.ComplexityRoot.GroupUpdatePayload.Group == nil { break } - return e.complexity.GroupUpdatePayload.Group(childComplexity), true + return e.ComplexityRoot.GroupUpdatePayload.Group(childComplexity), true case "Hush.createdAt": - if e.complexity.Hush.CreatedAt == nil { + if e.ComplexityRoot.Hush.CreatedAt == nil { break } - return e.complexity.Hush.CreatedAt(childComplexity), true + return e.ComplexityRoot.Hush.CreatedAt(childComplexity), true case "Hush.createdBy": - if e.complexity.Hush.CreatedBy == nil { + if e.ComplexityRoot.Hush.CreatedBy == nil { break } - return e.complexity.Hush.CreatedBy(childComplexity), true + return e.ComplexityRoot.Hush.CreatedBy(childComplexity), true case "Hush.credentialSet": - if e.complexity.Hush.CredentialSet == nil { + if e.ComplexityRoot.Hush.CredentialSet == nil { break } - return e.complexity.Hush.CredentialSet(childComplexity), true + return e.ComplexityRoot.Hush.CredentialSet(childComplexity), true case "Hush.description": - if e.complexity.Hush.Description == nil { + if e.ComplexityRoot.Hush.Description == nil { break } - return e.complexity.Hush.Description(childComplexity), true + return e.ComplexityRoot.Hush.Description(childComplexity), true case "Hush.events": - if e.complexity.Hush.Events == nil { + if e.ComplexityRoot.Hush.Events == nil { break } @@ -19424,17 +19407,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Hush.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Hush.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Hush.expiresAt": - if e.complexity.Hush.ExpiresAt == nil { + if e.ComplexityRoot.Hush.ExpiresAt == nil { break } - return e.complexity.Hush.ExpiresAt(childComplexity), true + return e.ComplexityRoot.Hush.ExpiresAt(childComplexity), true case "Hush.files": - if e.complexity.Hush.Files == nil { + if e.ComplexityRoot.Hush.Files == nil { break } @@ -19443,17 +19426,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Hush.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Hush.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Hush.id": - if e.complexity.Hush.ID == nil { + if e.ComplexityRoot.Hush.ID == nil { break } - return e.complexity.Hush.ID(childComplexity), true + return e.ComplexityRoot.Hush.ID(childComplexity), true case "Hush.integrations": - if e.complexity.Hush.Integrations == nil { + if e.ComplexityRoot.Hush.Integrations == nil { break } @@ -19462,178 +19445,178 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Hush.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Hush.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Hush.internalNotes": - if e.complexity.Hush.InternalNotes == nil { + if e.ComplexityRoot.Hush.InternalNotes == nil { break } - return e.complexity.Hush.InternalNotes(childComplexity), true + return e.ComplexityRoot.Hush.InternalNotes(childComplexity), true case "Hush.kind": - if e.complexity.Hush.Kind == nil { + if e.ComplexityRoot.Hush.Kind == nil { break } - return e.complexity.Hush.Kind(childComplexity), true + return e.ComplexityRoot.Hush.Kind(childComplexity), true case "Hush.lastUsedAt": - if e.complexity.Hush.LastUsedAt == nil { + if e.ComplexityRoot.Hush.LastUsedAt == nil { break } - return e.complexity.Hush.LastUsedAt(childComplexity), true + return e.ComplexityRoot.Hush.LastUsedAt(childComplexity), true case "Hush.metadata": - if e.complexity.Hush.Metadata == nil { + if e.ComplexityRoot.Hush.Metadata == nil { break } - return e.complexity.Hush.Metadata(childComplexity), true + return e.ComplexityRoot.Hush.Metadata(childComplexity), true case "Hush.name": - if e.complexity.Hush.Name == nil { + if e.ComplexityRoot.Hush.Name == nil { break } - return e.complexity.Hush.Name(childComplexity), true + return e.ComplexityRoot.Hush.Name(childComplexity), true case "Hush.owner": - if e.complexity.Hush.Owner == nil { + if e.ComplexityRoot.Hush.Owner == nil { break } - return e.complexity.Hush.Owner(childComplexity), true + return e.ComplexityRoot.Hush.Owner(childComplexity), true case "Hush.ownerID": - if e.complexity.Hush.OwnerID == nil { + if e.ComplexityRoot.Hush.OwnerID == nil { break } - return e.complexity.Hush.OwnerID(childComplexity), true + return e.ComplexityRoot.Hush.OwnerID(childComplexity), true case "Hush.secretName": - if e.complexity.Hush.SecretName == nil { + if e.ComplexityRoot.Hush.SecretName == nil { break } - return e.complexity.Hush.SecretName(childComplexity), true + return e.ComplexityRoot.Hush.SecretName(childComplexity), true case "Hush.systemInternalID": - if e.complexity.Hush.SystemInternalID == nil { + if e.ComplexityRoot.Hush.SystemInternalID == nil { break } - return e.complexity.Hush.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Hush.SystemInternalID(childComplexity), true case "Hush.systemOwned": - if e.complexity.Hush.SystemOwned == nil { + if e.ComplexityRoot.Hush.SystemOwned == nil { break } - return e.complexity.Hush.SystemOwned(childComplexity), true + return e.ComplexityRoot.Hush.SystemOwned(childComplexity), true case "Hush.updatedAt": - if e.complexity.Hush.UpdatedAt == nil { + if e.ComplexityRoot.Hush.UpdatedAt == nil { break } - return e.complexity.Hush.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Hush.UpdatedAt(childComplexity), true case "Hush.updatedBy": - if e.complexity.Hush.UpdatedBy == nil { + if e.ComplexityRoot.Hush.UpdatedBy == nil { break } - return e.complexity.Hush.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Hush.UpdatedBy(childComplexity), true case "HushBulkCreatePayload.hushes": - if e.complexity.HushBulkCreatePayload.Hushes == nil { + if e.ComplexityRoot.HushBulkCreatePayload.Hushes == nil { break } - return e.complexity.HushBulkCreatePayload.Hushes(childComplexity), true + return e.ComplexityRoot.HushBulkCreatePayload.Hushes(childComplexity), true case "HushBulkDeletePayload.deletedIDs": - if e.complexity.HushBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.HushBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.HushBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.HushBulkDeletePayload.DeletedIDs(childComplexity), true case "HushBulkUpdatePayload.hushes": - if e.complexity.HushBulkUpdatePayload.Hushes == nil { + if e.ComplexityRoot.HushBulkUpdatePayload.Hushes == nil { break } - return e.complexity.HushBulkUpdatePayload.Hushes(childComplexity), true + return e.ComplexityRoot.HushBulkUpdatePayload.Hushes(childComplexity), true case "HushBulkUpdatePayload.updatedIDs": - if e.complexity.HushBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.HushBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.HushBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.HushBulkUpdatePayload.UpdatedIDs(childComplexity), true case "HushConnection.edges": - if e.complexity.HushConnection.Edges == nil { + if e.ComplexityRoot.HushConnection.Edges == nil { break } - return e.complexity.HushConnection.Edges(childComplexity), true + return e.ComplexityRoot.HushConnection.Edges(childComplexity), true case "HushConnection.pageInfo": - if e.complexity.HushConnection.PageInfo == nil { + if e.ComplexityRoot.HushConnection.PageInfo == nil { break } - return e.complexity.HushConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.HushConnection.PageInfo(childComplexity), true case "HushConnection.totalCount": - if e.complexity.HushConnection.TotalCount == nil { + if e.ComplexityRoot.HushConnection.TotalCount == nil { break } - return e.complexity.HushConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.HushConnection.TotalCount(childComplexity), true case "HushCreatePayload.hush": - if e.complexity.HushCreatePayload.Hush == nil { + if e.ComplexityRoot.HushCreatePayload.Hush == nil { break } - return e.complexity.HushCreatePayload.Hush(childComplexity), true + return e.ComplexityRoot.HushCreatePayload.Hush(childComplexity), true case "HushDeletePayload.deletedID": - if e.complexity.HushDeletePayload.DeletedID == nil { + if e.ComplexityRoot.HushDeletePayload.DeletedID == nil { break } - return e.complexity.HushDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.HushDeletePayload.DeletedID(childComplexity), true case "HushEdge.cursor": - if e.complexity.HushEdge.Cursor == nil { + if e.ComplexityRoot.HushEdge.Cursor == nil { break } - return e.complexity.HushEdge.Cursor(childComplexity), true + return e.ComplexityRoot.HushEdge.Cursor(childComplexity), true case "HushEdge.node": - if e.complexity.HushEdge.Node == nil { + if e.ComplexityRoot.HushEdge.Node == nil { break } - return e.complexity.HushEdge.Node(childComplexity), true + return e.ComplexityRoot.HushEdge.Node(childComplexity), true case "HushUpdatePayload.hush": - if e.complexity.HushUpdatePayload.Hush == nil { + if e.ComplexityRoot.HushUpdatePayload.Hush == nil { break } - return e.complexity.HushUpdatePayload.Hush(childComplexity), true + return e.ComplexityRoot.HushUpdatePayload.Hush(childComplexity), true case "IdentityHolder.accessPlatforms": - if e.complexity.IdentityHolder.AccessPlatforms == nil { + if e.ComplexityRoot.IdentityHolder.AccessPlatforms == nil { break } @@ -19642,24 +19625,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.AccessPlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.IdentityHolder.AccessPlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "IdentityHolder.activeWorkflowInstances": - if e.complexity.IdentityHolder.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.IdentityHolder.ActiveWorkflowInstances == nil { break } - return e.complexity.IdentityHolder.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.IdentityHolder.ActiveWorkflowInstances(childComplexity), true case "IdentityHolder.alternateEmail": - if e.complexity.IdentityHolder.AlternateEmail == nil { + if e.ComplexityRoot.IdentityHolder.AlternateEmail == nil { break } - return e.complexity.IdentityHolder.AlternateEmail(childComplexity), true + return e.ComplexityRoot.IdentityHolder.AlternateEmail(childComplexity), true case "IdentityHolder.assessmentResponses": - if e.complexity.IdentityHolder.AssessmentResponses == nil { + if e.ComplexityRoot.IdentityHolder.AssessmentResponses == nil { break } @@ -19668,10 +19651,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true + return e.ComplexityRoot.IdentityHolder.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true case "IdentityHolder.assessments": - if e.complexity.IdentityHolder.Assessments == nil { + if e.ComplexityRoot.IdentityHolder.Assessments == nil { break } @@ -19680,10 +19663,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true case "IdentityHolder.assets": - if e.complexity.IdentityHolder.Assets == nil { + if e.ComplexityRoot.IdentityHolder.Assets == nil { break } @@ -19692,10 +19675,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "IdentityHolder.blockedGroups": - if e.complexity.IdentityHolder.BlockedGroups == nil { + if e.ComplexityRoot.IdentityHolder.BlockedGroups == nil { break } @@ -19704,10 +19687,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.IdentityHolder.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "IdentityHolder.campaigns": - if e.complexity.IdentityHolder.Campaigns == nil { + if e.ComplexityRoot.IdentityHolder.Campaigns == nil { break } @@ -19716,31 +19699,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "IdentityHolder.createdAt": - if e.complexity.IdentityHolder.CreatedAt == nil { + if e.ComplexityRoot.IdentityHolder.CreatedAt == nil { break } - return e.complexity.IdentityHolder.CreatedAt(childComplexity), true + return e.ComplexityRoot.IdentityHolder.CreatedAt(childComplexity), true case "IdentityHolder.createdBy": - if e.complexity.IdentityHolder.CreatedBy == nil { + if e.ComplexityRoot.IdentityHolder.CreatedBy == nil { break } - return e.complexity.IdentityHolder.CreatedBy(childComplexity), true + return e.ComplexityRoot.IdentityHolder.CreatedBy(childComplexity), true case "IdentityHolder.department": - if e.complexity.IdentityHolder.Department == nil { + if e.ComplexityRoot.IdentityHolder.Department == nil { break } - return e.complexity.IdentityHolder.Department(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Department(childComplexity), true case "IdentityHolder.directoryAccounts": - if e.complexity.IdentityHolder.DirectoryAccounts == nil { + if e.ComplexityRoot.IdentityHolder.DirectoryAccounts == nil { break } @@ -19749,17 +19732,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.IdentityHolder.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "IdentityHolder.displayID": - if e.complexity.IdentityHolder.DisplayID == nil { + if e.ComplexityRoot.IdentityHolder.DisplayID == nil { break } - return e.complexity.IdentityHolder.DisplayID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.DisplayID(childComplexity), true case "IdentityHolder.editors": - if e.complexity.IdentityHolder.Editors == nil { + if e.ComplexityRoot.IdentityHolder.Editors == nil { break } @@ -19768,38 +19751,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "IdentityHolder.email": - if e.complexity.IdentityHolder.Email == nil { + if e.ComplexityRoot.IdentityHolder.Email == nil { break } - return e.complexity.IdentityHolder.Email(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Email(childComplexity), true case "IdentityHolder.employer": - if e.complexity.IdentityHolder.Employer == nil { + if e.ComplexityRoot.IdentityHolder.Employer == nil { break } - return e.complexity.IdentityHolder.Employer(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Employer(childComplexity), true case "IdentityHolder.employerEntityID": - if e.complexity.IdentityHolder.EmployerEntityID == nil { + if e.ComplexityRoot.IdentityHolder.EmployerEntityID == nil { break } - return e.complexity.IdentityHolder.EmployerEntityID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.EmployerEntityID(childComplexity), true case "IdentityHolder.endDate": - if e.complexity.IdentityHolder.EndDate == nil { + if e.ComplexityRoot.IdentityHolder.EndDate == nil { break } - return e.complexity.IdentityHolder.EndDate(childComplexity), true + return e.ComplexityRoot.IdentityHolder.EndDate(childComplexity), true case "IdentityHolder.entities": - if e.complexity.IdentityHolder.Entities == nil { + if e.ComplexityRoot.IdentityHolder.Entities == nil { break } @@ -19808,45 +19791,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "IdentityHolder.environment": - if e.complexity.IdentityHolder.Environment == nil { + if e.ComplexityRoot.IdentityHolder.Environment == nil { break } - return e.complexity.IdentityHolder.Environment(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Environment(childComplexity), true case "IdentityHolder.environmentID": - if e.complexity.IdentityHolder.EnvironmentID == nil { + if e.ComplexityRoot.IdentityHolder.EnvironmentID == nil { break } - return e.complexity.IdentityHolder.EnvironmentID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.EnvironmentID(childComplexity), true case "IdentityHolder.environmentName": - if e.complexity.IdentityHolder.EnvironmentName == nil { + if e.ComplexityRoot.IdentityHolder.EnvironmentName == nil { break } - return e.complexity.IdentityHolder.EnvironmentName(childComplexity), true + return e.ComplexityRoot.IdentityHolder.EnvironmentName(childComplexity), true case "IdentityHolder.externalReferenceID": - if e.complexity.IdentityHolder.ExternalReferenceID == nil { + if e.ComplexityRoot.IdentityHolder.ExternalReferenceID == nil { break } - return e.complexity.IdentityHolder.ExternalReferenceID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.ExternalReferenceID(childComplexity), true case "IdentityHolder.externalUserID": - if e.complexity.IdentityHolder.ExternalUserID == nil { + if e.ComplexityRoot.IdentityHolder.ExternalUserID == nil { break } - return e.complexity.IdentityHolder.ExternalUserID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.ExternalUserID(childComplexity), true case "IdentityHolder.findings": - if e.complexity.IdentityHolder.Findings == nil { + if e.ComplexityRoot.IdentityHolder.Findings == nil { break } @@ -19855,129 +19838,129 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "IdentityHolder.fullName": - if e.complexity.IdentityHolder.FullName == nil { + if e.ComplexityRoot.IdentityHolder.FullName == nil { break } - return e.complexity.IdentityHolder.FullName(childComplexity), true + return e.ComplexityRoot.IdentityHolder.FullName(childComplexity), true case "IdentityHolder.hasPendingWorkflow": - if e.complexity.IdentityHolder.HasPendingWorkflow == nil { + if e.ComplexityRoot.IdentityHolder.HasPendingWorkflow == nil { break } - return e.complexity.IdentityHolder.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.IdentityHolder.HasPendingWorkflow(childComplexity), true case "IdentityHolder.hasWorkflowHistory": - if e.complexity.IdentityHolder.HasWorkflowHistory == nil { + if e.ComplexityRoot.IdentityHolder.HasWorkflowHistory == nil { break } - return e.complexity.IdentityHolder.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.IdentityHolder.HasWorkflowHistory(childComplexity), true case "IdentityHolder.id": - if e.complexity.IdentityHolder.ID == nil { + if e.ComplexityRoot.IdentityHolder.ID == nil { break } - return e.complexity.IdentityHolder.ID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.ID(childComplexity), true case "IdentityHolder.identityHolderType": - if e.complexity.IdentityHolder.IdentityHolderType == nil { + if e.ComplexityRoot.IdentityHolder.IdentityHolderType == nil { break } - return e.complexity.IdentityHolder.IdentityHolderType(childComplexity), true + return e.ComplexityRoot.IdentityHolder.IdentityHolderType(childComplexity), true case "IdentityHolder.internalOwner": - if e.complexity.IdentityHolder.InternalOwner == nil { + if e.ComplexityRoot.IdentityHolder.InternalOwner == nil { break } - return e.complexity.IdentityHolder.InternalOwner(childComplexity), true + return e.ComplexityRoot.IdentityHolder.InternalOwner(childComplexity), true case "IdentityHolder.internalOwnerGroup": - if e.complexity.IdentityHolder.InternalOwnerGroup == nil { + if e.ComplexityRoot.IdentityHolder.InternalOwnerGroup == nil { break } - return e.complexity.IdentityHolder.InternalOwnerGroup(childComplexity), true + return e.ComplexityRoot.IdentityHolder.InternalOwnerGroup(childComplexity), true case "IdentityHolder.internalOwnerGroupID": - if e.complexity.IdentityHolder.InternalOwnerGroupID == nil { + if e.ComplexityRoot.IdentityHolder.InternalOwnerGroupID == nil { break } - return e.complexity.IdentityHolder.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.InternalOwnerGroupID(childComplexity), true case "IdentityHolder.internalOwnerUser": - if e.complexity.IdentityHolder.InternalOwnerUser == nil { + if e.ComplexityRoot.IdentityHolder.InternalOwnerUser == nil { break } - return e.complexity.IdentityHolder.InternalOwnerUser(childComplexity), true + return e.ComplexityRoot.IdentityHolder.InternalOwnerUser(childComplexity), true case "IdentityHolder.internalOwnerUserID": - if e.complexity.IdentityHolder.InternalOwnerUserID == nil { + if e.ComplexityRoot.IdentityHolder.InternalOwnerUserID == nil { break } - return e.complexity.IdentityHolder.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.InternalOwnerUserID(childComplexity), true case "IdentityHolder.isActive": - if e.complexity.IdentityHolder.IsActive == nil { + if e.ComplexityRoot.IdentityHolder.IsActive == nil { break } - return e.complexity.IdentityHolder.IsActive(childComplexity), true + return e.ComplexityRoot.IdentityHolder.IsActive(childComplexity), true case "IdentityHolder.isOpenlaneUser": - if e.complexity.IdentityHolder.IsOpenlaneUser == nil { + if e.ComplexityRoot.IdentityHolder.IsOpenlaneUser == nil { break } - return e.complexity.IdentityHolder.IsOpenlaneUser(childComplexity), true + return e.ComplexityRoot.IdentityHolder.IsOpenlaneUser(childComplexity), true case "IdentityHolder.location": - if e.complexity.IdentityHolder.Location == nil { + if e.ComplexityRoot.IdentityHolder.Location == nil { break } - return e.complexity.IdentityHolder.Location(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Location(childComplexity), true case "IdentityHolder.metadata": - if e.complexity.IdentityHolder.Metadata == nil { + if e.ComplexityRoot.IdentityHolder.Metadata == nil { break } - return e.complexity.IdentityHolder.Metadata(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Metadata(childComplexity), true case "IdentityHolder.owner": - if e.complexity.IdentityHolder.Owner == nil { + if e.ComplexityRoot.IdentityHolder.Owner == nil { break } - return e.complexity.IdentityHolder.Owner(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Owner(childComplexity), true case "IdentityHolder.ownerID": - if e.complexity.IdentityHolder.OwnerID == nil { + if e.ComplexityRoot.IdentityHolder.OwnerID == nil { break } - return e.complexity.IdentityHolder.OwnerID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.OwnerID(childComplexity), true case "IdentityHolder.phoneNumber": - if e.complexity.IdentityHolder.PhoneNumber == nil { + if e.ComplexityRoot.IdentityHolder.PhoneNumber == nil { break } - return e.complexity.IdentityHolder.PhoneNumber(childComplexity), true + return e.ComplexityRoot.IdentityHolder.PhoneNumber(childComplexity), true case "IdentityHolder.platforms": - if e.complexity.IdentityHolder.Platforms == nil { + if e.ComplexityRoot.IdentityHolder.Platforms == nil { break } @@ -19986,52 +19969,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "IdentityHolder.scope": - if e.complexity.IdentityHolder.Scope == nil { + if e.ComplexityRoot.IdentityHolder.Scope == nil { break } - return e.complexity.IdentityHolder.Scope(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Scope(childComplexity), true case "IdentityHolder.scopeID": - if e.complexity.IdentityHolder.ScopeID == nil { + if e.ComplexityRoot.IdentityHolder.ScopeID == nil { break } - return e.complexity.IdentityHolder.ScopeID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.ScopeID(childComplexity), true case "IdentityHolder.scopeName": - if e.complexity.IdentityHolder.ScopeName == nil { + if e.ComplexityRoot.IdentityHolder.ScopeName == nil { break } - return e.complexity.IdentityHolder.ScopeName(childComplexity), true + return e.ComplexityRoot.IdentityHolder.ScopeName(childComplexity), true case "IdentityHolder.startDate": - if e.complexity.IdentityHolder.StartDate == nil { + if e.ComplexityRoot.IdentityHolder.StartDate == nil { break } - return e.complexity.IdentityHolder.StartDate(childComplexity), true + return e.ComplexityRoot.IdentityHolder.StartDate(childComplexity), true case "IdentityHolder.status": - if e.complexity.IdentityHolder.Status == nil { + if e.ComplexityRoot.IdentityHolder.Status == nil { break } - return e.complexity.IdentityHolder.Status(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Status(childComplexity), true case "IdentityHolder.tags": - if e.complexity.IdentityHolder.Tags == nil { + if e.ComplexityRoot.IdentityHolder.Tags == nil { break } - return e.complexity.IdentityHolder.Tags(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Tags(childComplexity), true case "IdentityHolder.tasks": - if e.complexity.IdentityHolder.Tasks == nil { + if e.ComplexityRoot.IdentityHolder.Tasks == nil { break } @@ -20040,17 +20023,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "IdentityHolder.team": - if e.complexity.IdentityHolder.Team == nil { + if e.ComplexityRoot.IdentityHolder.Team == nil { break } - return e.complexity.IdentityHolder.Team(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Team(childComplexity), true case "IdentityHolder.templates": - if e.complexity.IdentityHolder.Templates == nil { + if e.ComplexityRoot.IdentityHolder.Templates == nil { break } @@ -20059,45 +20042,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true case "IdentityHolder.title": - if e.complexity.IdentityHolder.Title == nil { + if e.ComplexityRoot.IdentityHolder.Title == nil { break } - return e.complexity.IdentityHolder.Title(childComplexity), true + return e.ComplexityRoot.IdentityHolder.Title(childComplexity), true case "IdentityHolder.updatedAt": - if e.complexity.IdentityHolder.UpdatedAt == nil { + if e.ComplexityRoot.IdentityHolder.UpdatedAt == nil { break } - return e.complexity.IdentityHolder.UpdatedAt(childComplexity), true + return e.ComplexityRoot.IdentityHolder.UpdatedAt(childComplexity), true case "IdentityHolder.updatedBy": - if e.complexity.IdentityHolder.UpdatedBy == nil { + if e.ComplexityRoot.IdentityHolder.UpdatedBy == nil { break } - return e.complexity.IdentityHolder.UpdatedBy(childComplexity), true + return e.ComplexityRoot.IdentityHolder.UpdatedBy(childComplexity), true case "IdentityHolder.user": - if e.complexity.IdentityHolder.User == nil { + if e.ComplexityRoot.IdentityHolder.User == nil { break } - return e.complexity.IdentityHolder.User(childComplexity), true + return e.ComplexityRoot.IdentityHolder.User(childComplexity), true case "IdentityHolder.userID": - if e.complexity.IdentityHolder.UserID == nil { + if e.ComplexityRoot.IdentityHolder.UserID == nil { break } - return e.complexity.IdentityHolder.UserID(childComplexity), true + return e.ComplexityRoot.IdentityHolder.UserID(childComplexity), true case "IdentityHolder.viewers": - if e.complexity.IdentityHolder.Viewers == nil { + if e.ComplexityRoot.IdentityHolder.Viewers == nil { break } @@ -20106,17 +20089,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.IdentityHolder.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "IdentityHolder.workflowEligibleMarker": - if e.complexity.IdentityHolder.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.IdentityHolder.WorkflowEligibleMarker == nil { break } - return e.complexity.IdentityHolder.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.IdentityHolder.WorkflowEligibleMarker(childComplexity), true case "IdentityHolder.workflowObjectRefs": - if e.complexity.IdentityHolder.WorkflowObjectRefs == nil { + if e.ComplexityRoot.IdentityHolder.WorkflowObjectRefs == nil { break } @@ -20125,10 +20108,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.IdentityHolder.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "IdentityHolder.workflowTimeline": - if e.complexity.IdentityHolder.WorkflowTimeline == nil { + if e.ComplexityRoot.IdentityHolder.WorkflowTimeline == nil { break } @@ -20137,94 +20120,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.IdentityHolder.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.IdentityHolder.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "IdentityHolderBulkCreatePayload.identityHolders": - if e.complexity.IdentityHolderBulkCreatePayload.IdentityHolders == nil { + if e.ComplexityRoot.IdentityHolderBulkCreatePayload.IdentityHolders == nil { break } - return e.complexity.IdentityHolderBulkCreatePayload.IdentityHolders(childComplexity), true + return e.ComplexityRoot.IdentityHolderBulkCreatePayload.IdentityHolders(childComplexity), true case "IdentityHolderBulkDeletePayload.deletedIDs": - if e.complexity.IdentityHolderBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.IdentityHolderBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.IdentityHolderBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.IdentityHolderBulkDeletePayload.DeletedIDs(childComplexity), true case "IdentityHolderBulkUpdatePayload.identityHolders": - if e.complexity.IdentityHolderBulkUpdatePayload.IdentityHolders == nil { + if e.ComplexityRoot.IdentityHolderBulkUpdatePayload.IdentityHolders == nil { break } - return e.complexity.IdentityHolderBulkUpdatePayload.IdentityHolders(childComplexity), true + return e.ComplexityRoot.IdentityHolderBulkUpdatePayload.IdentityHolders(childComplexity), true case "IdentityHolderBulkUpdatePayload.updatedIDs": - if e.complexity.IdentityHolderBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.IdentityHolderBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.IdentityHolderBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.IdentityHolderBulkUpdatePayload.UpdatedIDs(childComplexity), true case "IdentityHolderConnection.edges": - if e.complexity.IdentityHolderConnection.Edges == nil { + if e.ComplexityRoot.IdentityHolderConnection.Edges == nil { break } - return e.complexity.IdentityHolderConnection.Edges(childComplexity), true + return e.ComplexityRoot.IdentityHolderConnection.Edges(childComplexity), true case "IdentityHolderConnection.pageInfo": - if e.complexity.IdentityHolderConnection.PageInfo == nil { + if e.ComplexityRoot.IdentityHolderConnection.PageInfo == nil { break } - return e.complexity.IdentityHolderConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.IdentityHolderConnection.PageInfo(childComplexity), true case "IdentityHolderConnection.totalCount": - if e.complexity.IdentityHolderConnection.TotalCount == nil { + if e.ComplexityRoot.IdentityHolderConnection.TotalCount == nil { break } - return e.complexity.IdentityHolderConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.IdentityHolderConnection.TotalCount(childComplexity), true case "IdentityHolderCreatePayload.identityHolder": - if e.complexity.IdentityHolderCreatePayload.IdentityHolder == nil { + if e.ComplexityRoot.IdentityHolderCreatePayload.IdentityHolder == nil { break } - return e.complexity.IdentityHolderCreatePayload.IdentityHolder(childComplexity), true + return e.ComplexityRoot.IdentityHolderCreatePayload.IdentityHolder(childComplexity), true case "IdentityHolderDeletePayload.deletedID": - if e.complexity.IdentityHolderDeletePayload.DeletedID == nil { + if e.ComplexityRoot.IdentityHolderDeletePayload.DeletedID == nil { break } - return e.complexity.IdentityHolderDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.IdentityHolderDeletePayload.DeletedID(childComplexity), true case "IdentityHolderEdge.cursor": - if e.complexity.IdentityHolderEdge.Cursor == nil { + if e.ComplexityRoot.IdentityHolderEdge.Cursor == nil { break } - return e.complexity.IdentityHolderEdge.Cursor(childComplexity), true + return e.ComplexityRoot.IdentityHolderEdge.Cursor(childComplexity), true case "IdentityHolderEdge.node": - if e.complexity.IdentityHolderEdge.Node == nil { + if e.ComplexityRoot.IdentityHolderEdge.Node == nil { break } - return e.complexity.IdentityHolderEdge.Node(childComplexity), true + return e.ComplexityRoot.IdentityHolderEdge.Node(childComplexity), true case "IdentityHolderUpdatePayload.identityHolder": - if e.complexity.IdentityHolderUpdatePayload.IdentityHolder == nil { + if e.ComplexityRoot.IdentityHolderUpdatePayload.IdentityHolder == nil { break } - return e.complexity.IdentityHolderUpdatePayload.IdentityHolder(childComplexity), true + return e.ComplexityRoot.IdentityHolderUpdatePayload.IdentityHolder(childComplexity), true case "Integration.actionPlans": - if e.complexity.Integration.ActionPlans == nil { + if e.ComplexityRoot.Integration.ActionPlans == nil { break } @@ -20233,31 +20216,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Integration.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Integration.createdAt": - if e.complexity.Integration.CreatedAt == nil { + if e.ComplexityRoot.Integration.CreatedAt == nil { break } - return e.complexity.Integration.CreatedAt(childComplexity), true + return e.ComplexityRoot.Integration.CreatedAt(childComplexity), true case "Integration.createdBy": - if e.complexity.Integration.CreatedBy == nil { + if e.ComplexityRoot.Integration.CreatedBy == nil { break } - return e.complexity.Integration.CreatedBy(childComplexity), true + return e.ComplexityRoot.Integration.CreatedBy(childComplexity), true case "Integration.description": - if e.complexity.Integration.Description == nil { + if e.ComplexityRoot.Integration.Description == nil { break } - return e.complexity.Integration.Description(childComplexity), true + return e.ComplexityRoot.Integration.Description(childComplexity), true case "Integration.directoryAccounts": - if e.complexity.Integration.DirectoryAccounts == nil { + if e.ComplexityRoot.Integration.DirectoryAccounts == nil { break } @@ -20266,10 +20249,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.Integration.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "Integration.directoryGroups": - if e.complexity.Integration.DirectoryGroups == nil { + if e.ComplexityRoot.Integration.DirectoryGroups == nil { break } @@ -20278,10 +20261,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true + return e.ComplexityRoot.Integration.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true case "Integration.directoryMemberships": - if e.complexity.Integration.DirectoryMemberships == nil { + if e.ComplexityRoot.Integration.DirectoryMemberships == nil { break } @@ -20290,10 +20273,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true + return e.ComplexityRoot.Integration.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true case "Integration.directorySyncRuns": - if e.complexity.Integration.DirectorySyncRuns == nil { + if e.ComplexityRoot.Integration.DirectorySyncRuns == nil { break } @@ -20302,10 +20285,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true + return e.ComplexityRoot.Integration.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true case "Integration.emailTemplates": - if e.complexity.Integration.EmailTemplates == nil { + if e.ComplexityRoot.Integration.EmailTemplates == nil { break } @@ -20314,10 +20297,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true + return e.ComplexityRoot.Integration.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true case "Integration.entities": - if e.complexity.Integration.Entities == nil { + if e.ComplexityRoot.Integration.Entities == nil { break } @@ -20326,31 +20309,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Integration.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Integration.environment": - if e.complexity.Integration.Environment == nil { + if e.ComplexityRoot.Integration.Environment == nil { break } - return e.complexity.Integration.Environment(childComplexity), true + return e.ComplexityRoot.Integration.Environment(childComplexity), true case "Integration.environmentID": - if e.complexity.Integration.EnvironmentID == nil { + if e.ComplexityRoot.Integration.EnvironmentID == nil { break } - return e.complexity.Integration.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Integration.EnvironmentID(childComplexity), true case "Integration.environmentName": - if e.complexity.Integration.EnvironmentName == nil { + if e.ComplexityRoot.Integration.EnvironmentName == nil { break } - return e.complexity.Integration.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Integration.EnvironmentName(childComplexity), true case "Integration.events": - if e.complexity.Integration.Events == nil { + if e.ComplexityRoot.Integration.Events == nil { break } @@ -20359,10 +20342,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Integration.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Integration.files": - if e.complexity.Integration.Files == nil { + if e.ComplexityRoot.Integration.Files == nil { break } @@ -20371,10 +20354,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Integration.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Integration.findings": - if e.complexity.Integration.Findings == nil { + if e.ComplexityRoot.Integration.Findings == nil { break } @@ -20383,52 +20366,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.Integration.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "Integration.id": - if e.complexity.Integration.ID == nil { + if e.ComplexityRoot.Integration.ID == nil { break } - return e.complexity.Integration.ID(childComplexity), true + return e.ComplexityRoot.Integration.ID(childComplexity), true case "Integration.integrationType": - if e.complexity.Integration.IntegrationType == nil { + if e.ComplexityRoot.Integration.IntegrationType == nil { break } - return e.complexity.Integration.IntegrationType(childComplexity), true + return e.ComplexityRoot.Integration.IntegrationType(childComplexity), true case "Integration.internalNotes": - if e.complexity.Integration.InternalNotes == nil { + if e.ComplexityRoot.Integration.InternalNotes == nil { break } - return e.complexity.Integration.InternalNotes(childComplexity), true + return e.ComplexityRoot.Integration.InternalNotes(childComplexity), true case "Integration.kind": - if e.complexity.Integration.Kind == nil { + if e.ComplexityRoot.Integration.Kind == nil { break } - return e.complexity.Integration.Kind(childComplexity), true + return e.ComplexityRoot.Integration.Kind(childComplexity), true case "Integration.metadata": - if e.complexity.Integration.Metadata == nil { + if e.ComplexityRoot.Integration.Metadata == nil { break } - return e.complexity.Integration.Metadata(childComplexity), true + return e.ComplexityRoot.Integration.Metadata(childComplexity), true case "Integration.name": - if e.complexity.Integration.Name == nil { + if e.ComplexityRoot.Integration.Name == nil { break } - return e.complexity.Integration.Name(childComplexity), true + return e.ComplexityRoot.Integration.Name(childComplexity), true case "Integration.notificationTemplates": - if e.complexity.Integration.NotificationTemplates == nil { + if e.ComplexityRoot.Integration.NotificationTemplates == nil { break } @@ -20437,38 +20420,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true + return e.ComplexityRoot.Integration.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true case "Integration.owner": - if e.complexity.Integration.Owner == nil { + if e.ComplexityRoot.Integration.Owner == nil { break } - return e.complexity.Integration.Owner(childComplexity), true + return e.ComplexityRoot.Integration.Owner(childComplexity), true case "Integration.ownerID": - if e.complexity.Integration.OwnerID == nil { + if e.ComplexityRoot.Integration.OwnerID == nil { break } - return e.complexity.Integration.OwnerID(childComplexity), true + return e.ComplexityRoot.Integration.OwnerID(childComplexity), true case "Integration.platform": - if e.complexity.Integration.Platform == nil { + if e.ComplexityRoot.Integration.Platform == nil { break } - return e.complexity.Integration.Platform(childComplexity), true + return e.ComplexityRoot.Integration.Platform(childComplexity), true case "Integration.platformID": - if e.complexity.Integration.PlatformID == nil { + if e.ComplexityRoot.Integration.PlatformID == nil { break } - return e.complexity.Integration.PlatformID(childComplexity), true + return e.ComplexityRoot.Integration.PlatformID(childComplexity), true case "Integration.remediations": - if e.complexity.Integration.Remediations == nil { + if e.ComplexityRoot.Integration.Remediations == nil { break } @@ -20477,10 +20460,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.Integration.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "Integration.reviews": - if e.complexity.Integration.Reviews == nil { + if e.ComplexityRoot.Integration.Reviews == nil { break } @@ -20489,31 +20472,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true + return e.ComplexityRoot.Integration.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true case "Integration.scope": - if e.complexity.Integration.Scope == nil { + if e.ComplexityRoot.Integration.Scope == nil { break } - return e.complexity.Integration.Scope(childComplexity), true + return e.ComplexityRoot.Integration.Scope(childComplexity), true case "Integration.scopeID": - if e.complexity.Integration.ScopeID == nil { + if e.ComplexityRoot.Integration.ScopeID == nil { break } - return e.complexity.Integration.ScopeID(childComplexity), true + return e.ComplexityRoot.Integration.ScopeID(childComplexity), true case "Integration.scopeName": - if e.complexity.Integration.ScopeName == nil { + if e.ComplexityRoot.Integration.ScopeName == nil { break } - return e.complexity.Integration.ScopeName(childComplexity), true + return e.ComplexityRoot.Integration.ScopeName(childComplexity), true case "Integration.secrets": - if e.complexity.Integration.Secrets == nil { + if e.ComplexityRoot.Integration.Secrets == nil { break } @@ -20522,31 +20505,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true + return e.ComplexityRoot.Integration.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true case "Integration.systemInternalID": - if e.complexity.Integration.SystemInternalID == nil { + if e.ComplexityRoot.Integration.SystemInternalID == nil { break } - return e.complexity.Integration.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Integration.SystemInternalID(childComplexity), true case "Integration.systemOwned": - if e.complexity.Integration.SystemOwned == nil { + if e.ComplexityRoot.Integration.SystemOwned == nil { break } - return e.complexity.Integration.SystemOwned(childComplexity), true + return e.ComplexityRoot.Integration.SystemOwned(childComplexity), true case "Integration.tags": - if e.complexity.Integration.Tags == nil { + if e.ComplexityRoot.Integration.Tags == nil { break } - return e.complexity.Integration.Tags(childComplexity), true + return e.ComplexityRoot.Integration.Tags(childComplexity), true case "Integration.tasks": - if e.complexity.Integration.Tasks == nil { + if e.ComplexityRoot.Integration.Tasks == nil { break } @@ -20555,24 +20538,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Integration.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Integration.updatedAt": - if e.complexity.Integration.UpdatedAt == nil { + if e.ComplexityRoot.Integration.UpdatedAt == nil { break } - return e.complexity.Integration.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Integration.UpdatedAt(childComplexity), true case "Integration.updatedBy": - if e.complexity.Integration.UpdatedBy == nil { + if e.ComplexityRoot.Integration.UpdatedBy == nil { break } - return e.complexity.Integration.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Integration.UpdatedBy(childComplexity), true case "Integration.vulnerabilities": - if e.complexity.Integration.Vulnerabilities == nil { + if e.ComplexityRoot.Integration.Vulnerabilities == nil { break } @@ -20581,80 +20564,80 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Integration.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Integration.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "IntegrationConnection.edges": - if e.complexity.IntegrationConnection.Edges == nil { + if e.ComplexityRoot.IntegrationConnection.Edges == nil { break } - return e.complexity.IntegrationConnection.Edges(childComplexity), true + return e.ComplexityRoot.IntegrationConnection.Edges(childComplexity), true case "IntegrationConnection.pageInfo": - if e.complexity.IntegrationConnection.PageInfo == nil { + if e.ComplexityRoot.IntegrationConnection.PageInfo == nil { break } - return e.complexity.IntegrationConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.IntegrationConnection.PageInfo(childComplexity), true case "IntegrationConnection.totalCount": - if e.complexity.IntegrationConnection.TotalCount == nil { + if e.ComplexityRoot.IntegrationConnection.TotalCount == nil { break } - return e.complexity.IntegrationConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.IntegrationConnection.TotalCount(childComplexity), true case "IntegrationDeletePayload.deletedID": - if e.complexity.IntegrationDeletePayload.DeletedID == nil { + if e.ComplexityRoot.IntegrationDeletePayload.DeletedID == nil { break } - return e.complexity.IntegrationDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.IntegrationDeletePayload.DeletedID(childComplexity), true case "IntegrationEdge.cursor": - if e.complexity.IntegrationEdge.Cursor == nil { + if e.ComplexityRoot.IntegrationEdge.Cursor == nil { break } - return e.complexity.IntegrationEdge.Cursor(childComplexity), true + return e.ComplexityRoot.IntegrationEdge.Cursor(childComplexity), true case "IntegrationEdge.node": - if e.complexity.IntegrationEdge.Node == nil { + if e.ComplexityRoot.IntegrationEdge.Node == nil { break } - return e.complexity.IntegrationEdge.Node(childComplexity), true + return e.ComplexityRoot.IntegrationEdge.Node(childComplexity), true case "InternalPolicy.activeWorkflowInstances": - if e.complexity.InternalPolicy.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.InternalPolicy.ActiveWorkflowInstances == nil { break } - return e.complexity.InternalPolicy.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ActiveWorkflowInstances(childComplexity), true case "InternalPolicy.approvalRequired": - if e.complexity.InternalPolicy.ApprovalRequired == nil { + if e.ComplexityRoot.InternalPolicy.ApprovalRequired == nil { break } - return e.complexity.InternalPolicy.ApprovalRequired(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ApprovalRequired(childComplexity), true case "InternalPolicy.approver": - if e.complexity.InternalPolicy.Approver == nil { + if e.ComplexityRoot.InternalPolicy.Approver == nil { break } - return e.complexity.InternalPolicy.Approver(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Approver(childComplexity), true case "InternalPolicy.approverID": - if e.complexity.InternalPolicy.ApproverID == nil { + if e.ComplexityRoot.InternalPolicy.ApproverID == nil { break } - return e.complexity.InternalPolicy.ApproverID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ApproverID(childComplexity), true case "InternalPolicy.blockedGroups": - if e.complexity.InternalPolicy.BlockedGroups == nil { + if e.ComplexityRoot.InternalPolicy.BlockedGroups == nil { break } @@ -20663,10 +20646,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.InternalPolicy.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "InternalPolicy.comments": - if e.complexity.InternalPolicy.Comments == nil { + if e.ComplexityRoot.InternalPolicy.Comments == nil { break } @@ -20675,10 +20658,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "InternalPolicy.controlImplementations": - if e.complexity.InternalPolicy.ControlImplementations == nil { + if e.ComplexityRoot.InternalPolicy.ControlImplementations == nil { break } @@ -20687,10 +20670,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.InternalPolicy.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "InternalPolicy.controlObjectives": - if e.complexity.InternalPolicy.ControlObjectives == nil { + if e.ComplexityRoot.InternalPolicy.ControlObjectives == nil { break } @@ -20699,17 +20682,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.InternalPolicy.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "InternalPolicy.controlSuggestions": - if e.complexity.InternalPolicy.ControlSuggestions == nil { + if e.ComplexityRoot.InternalPolicy.ControlSuggestions == nil { break } - return e.complexity.InternalPolicy.ControlSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ControlSuggestions(childComplexity), true case "InternalPolicy.controls": - if e.complexity.InternalPolicy.Controls == nil { + if e.ComplexityRoot.InternalPolicy.Controls == nil { break } @@ -20718,52 +20701,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "InternalPolicy.createdAt": - if e.complexity.InternalPolicy.CreatedAt == nil { + if e.ComplexityRoot.InternalPolicy.CreatedAt == nil { break } - return e.complexity.InternalPolicy.CreatedAt(childComplexity), true + return e.ComplexityRoot.InternalPolicy.CreatedAt(childComplexity), true case "InternalPolicy.createdBy": - if e.complexity.InternalPolicy.CreatedBy == nil { + if e.ComplexityRoot.InternalPolicy.CreatedBy == nil { break } - return e.complexity.InternalPolicy.CreatedBy(childComplexity), true + return e.ComplexityRoot.InternalPolicy.CreatedBy(childComplexity), true case "InternalPolicy.delegate": - if e.complexity.InternalPolicy.Delegate == nil { + if e.ComplexityRoot.InternalPolicy.Delegate == nil { break } - return e.complexity.InternalPolicy.Delegate(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Delegate(childComplexity), true case "InternalPolicy.delegateID": - if e.complexity.InternalPolicy.DelegateID == nil { + if e.ComplexityRoot.InternalPolicy.DelegateID == nil { break } - return e.complexity.InternalPolicy.DelegateID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.DelegateID(childComplexity), true case "InternalPolicy.details": - if e.complexity.InternalPolicy.Details == nil { + if e.ComplexityRoot.InternalPolicy.Details == nil { break } - return e.complexity.InternalPolicy.Details(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Details(childComplexity), true case "InternalPolicy.detailsJSON": - if e.complexity.InternalPolicy.DetailsJSON == nil { + if e.ComplexityRoot.InternalPolicy.DetailsJSON == nil { break } - return e.complexity.InternalPolicy.DetailsJSON(childComplexity), true + return e.ComplexityRoot.InternalPolicy.DetailsJSON(childComplexity), true case "InternalPolicy.discussions": - if e.complexity.InternalPolicy.Discussions == nil { + if e.ComplexityRoot.InternalPolicy.Discussions == nil { break } @@ -20772,38 +20755,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true case "InternalPolicy.dismissedControlSuggestions": - if e.complexity.InternalPolicy.DismissedControlSuggestions == nil { + if e.ComplexityRoot.InternalPolicy.DismissedControlSuggestions == nil { break } - return e.complexity.InternalPolicy.DismissedControlSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicy.DismissedControlSuggestions(childComplexity), true case "InternalPolicy.dismissedImprovementSuggestions": - if e.complexity.InternalPolicy.DismissedImprovementSuggestions == nil { + if e.ComplexityRoot.InternalPolicy.DismissedImprovementSuggestions == nil { break } - return e.complexity.InternalPolicy.DismissedImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicy.DismissedImprovementSuggestions(childComplexity), true case "InternalPolicy.dismissedTagSuggestions": - if e.complexity.InternalPolicy.DismissedTagSuggestions == nil { + if e.ComplexityRoot.InternalPolicy.DismissedTagSuggestions == nil { break } - return e.complexity.InternalPolicy.DismissedTagSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicy.DismissedTagSuggestions(childComplexity), true case "InternalPolicy.displayID": - if e.complexity.InternalPolicy.DisplayID == nil { + if e.ComplexityRoot.InternalPolicy.DisplayID == nil { break } - return e.complexity.InternalPolicy.DisplayID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.DisplayID(childComplexity), true case "InternalPolicy.editors": - if e.complexity.InternalPolicy.Editors == nil { + if e.ComplexityRoot.InternalPolicy.Editors == nil { break } @@ -20812,108 +20795,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "InternalPolicy.environment": - if e.complexity.InternalPolicy.Environment == nil { + if e.ComplexityRoot.InternalPolicy.Environment == nil { break } - return e.complexity.InternalPolicy.Environment(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Environment(childComplexity), true case "InternalPolicy.environmentID": - if e.complexity.InternalPolicy.EnvironmentID == nil { + if e.ComplexityRoot.InternalPolicy.EnvironmentID == nil { break } - return e.complexity.InternalPolicy.EnvironmentID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.EnvironmentID(childComplexity), true case "InternalPolicy.environmentName": - if e.complexity.InternalPolicy.EnvironmentName == nil { + if e.ComplexityRoot.InternalPolicy.EnvironmentName == nil { break } - return e.complexity.InternalPolicy.EnvironmentName(childComplexity), true + return e.ComplexityRoot.InternalPolicy.EnvironmentName(childComplexity), true case "InternalPolicy.file": - if e.complexity.InternalPolicy.File == nil { + if e.ComplexityRoot.InternalPolicy.File == nil { break } - return e.complexity.InternalPolicy.File(childComplexity), true + return e.ComplexityRoot.InternalPolicy.File(childComplexity), true case "InternalPolicy.fileID": - if e.complexity.InternalPolicy.FileID == nil { + if e.ComplexityRoot.InternalPolicy.FileID == nil { break } - return e.complexity.InternalPolicy.FileID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.FileID(childComplexity), true case "InternalPolicy.hasPendingWorkflow": - if e.complexity.InternalPolicy.HasPendingWorkflow == nil { + if e.ComplexityRoot.InternalPolicy.HasPendingWorkflow == nil { break } - return e.complexity.InternalPolicy.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.InternalPolicy.HasPendingWorkflow(childComplexity), true case "InternalPolicy.hasWorkflowHistory": - if e.complexity.InternalPolicy.HasWorkflowHistory == nil { + if e.ComplexityRoot.InternalPolicy.HasWorkflowHistory == nil { break } - return e.complexity.InternalPolicy.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.InternalPolicy.HasWorkflowHistory(childComplexity), true case "InternalPolicy.id": - if e.complexity.InternalPolicy.ID == nil { + if e.ComplexityRoot.InternalPolicy.ID == nil { break } - return e.complexity.InternalPolicy.ID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ID(childComplexity), true case "InternalPolicy.improvementSuggestions": - if e.complexity.InternalPolicy.ImprovementSuggestions == nil { + if e.ComplexityRoot.InternalPolicy.ImprovementSuggestions == nil { break } - return e.complexity.InternalPolicy.ImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ImprovementSuggestions(childComplexity), true case "InternalPolicy.internalNotes": - if e.complexity.InternalPolicy.InternalNotes == nil { + if e.ComplexityRoot.InternalPolicy.InternalNotes == nil { break } - return e.complexity.InternalPolicy.InternalNotes(childComplexity), true + return e.ComplexityRoot.InternalPolicy.InternalNotes(childComplexity), true case "InternalPolicy.internalPolicyKind": - if e.complexity.InternalPolicy.InternalPolicyKind == nil { + if e.ComplexityRoot.InternalPolicy.InternalPolicyKind == nil { break } - return e.complexity.InternalPolicy.InternalPolicyKind(childComplexity), true + return e.ComplexityRoot.InternalPolicy.InternalPolicyKind(childComplexity), true case "InternalPolicy.internalPolicyKindID": - if e.complexity.InternalPolicy.InternalPolicyKindID == nil { + if e.ComplexityRoot.InternalPolicy.InternalPolicyKindID == nil { break } - return e.complexity.InternalPolicy.InternalPolicyKindID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.InternalPolicyKindID(childComplexity), true case "InternalPolicy.internalPolicyKindName": - if e.complexity.InternalPolicy.InternalPolicyKindName == nil { + if e.ComplexityRoot.InternalPolicy.InternalPolicyKindName == nil { break } - return e.complexity.InternalPolicy.InternalPolicyKindName(childComplexity), true + return e.ComplexityRoot.InternalPolicy.InternalPolicyKindName(childComplexity), true case "InternalPolicy.name": - if e.complexity.InternalPolicy.Name == nil { + if e.ComplexityRoot.InternalPolicy.Name == nil { break } - return e.complexity.InternalPolicy.Name(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Name(childComplexity), true case "InternalPolicy.narratives": - if e.complexity.InternalPolicy.Narratives == nil { + if e.ComplexityRoot.InternalPolicy.Narratives == nil { break } @@ -20922,24 +20905,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "InternalPolicy.owner": - if e.complexity.InternalPolicy.Owner == nil { + if e.ComplexityRoot.InternalPolicy.Owner == nil { break } - return e.complexity.InternalPolicy.Owner(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Owner(childComplexity), true case "InternalPolicy.ownerID": - if e.complexity.InternalPolicy.OwnerID == nil { + if e.ComplexityRoot.InternalPolicy.OwnerID == nil { break } - return e.complexity.InternalPolicy.OwnerID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.OwnerID(childComplexity), true case "InternalPolicy.procedures": - if e.complexity.InternalPolicy.Procedures == nil { + if e.ComplexityRoot.InternalPolicy.Procedures == nil { break } @@ -20948,10 +20931,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "InternalPolicy.programs": - if e.complexity.InternalPolicy.Programs == nil { + if e.ComplexityRoot.InternalPolicy.Programs == nil { break } @@ -20960,31 +20943,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "InternalPolicy.reviewDue": - if e.complexity.InternalPolicy.ReviewDue == nil { + if e.ComplexityRoot.InternalPolicy.ReviewDue == nil { break } - return e.complexity.InternalPolicy.ReviewDue(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ReviewDue(childComplexity), true case "InternalPolicy.reviewFrequency": - if e.complexity.InternalPolicy.ReviewFrequency == nil { + if e.ComplexityRoot.InternalPolicy.ReviewFrequency == nil { break } - return e.complexity.InternalPolicy.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ReviewFrequency(childComplexity), true case "InternalPolicy.revision": - if e.complexity.InternalPolicy.Revision == nil { + if e.ComplexityRoot.InternalPolicy.Revision == nil { break } - return e.complexity.InternalPolicy.Revision(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Revision(childComplexity), true case "InternalPolicy.risks": - if e.complexity.InternalPolicy.Risks == nil { + if e.ComplexityRoot.InternalPolicy.Risks == nil { break } @@ -20993,38 +20976,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "InternalPolicy.scope": - if e.complexity.InternalPolicy.Scope == nil { + if e.ComplexityRoot.InternalPolicy.Scope == nil { break } - return e.complexity.InternalPolicy.Scope(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Scope(childComplexity), true case "InternalPolicy.scopeID": - if e.complexity.InternalPolicy.ScopeID == nil { + if e.ComplexityRoot.InternalPolicy.ScopeID == nil { break } - return e.complexity.InternalPolicy.ScopeID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ScopeID(childComplexity), true case "InternalPolicy.scopeName": - if e.complexity.InternalPolicy.ScopeName == nil { + if e.ComplexityRoot.InternalPolicy.ScopeName == nil { break } - return e.complexity.InternalPolicy.ScopeName(childComplexity), true + return e.ComplexityRoot.InternalPolicy.ScopeName(childComplexity), true case "InternalPolicy.status": - if e.complexity.InternalPolicy.Status == nil { + if e.ComplexityRoot.InternalPolicy.Status == nil { break } - return e.complexity.InternalPolicy.Status(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Status(childComplexity), true case "InternalPolicy.subcontrols": - if e.complexity.InternalPolicy.Subcontrols == nil { + if e.ComplexityRoot.InternalPolicy.Subcontrols == nil { break } @@ -21033,45 +21016,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "InternalPolicy.summary": - if e.complexity.InternalPolicy.Summary == nil { + if e.ComplexityRoot.InternalPolicy.Summary == nil { break } - return e.complexity.InternalPolicy.Summary(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Summary(childComplexity), true case "InternalPolicy.systemInternalID": - if e.complexity.InternalPolicy.SystemInternalID == nil { + if e.ComplexityRoot.InternalPolicy.SystemInternalID == nil { break } - return e.complexity.InternalPolicy.SystemInternalID(childComplexity), true + return e.ComplexityRoot.InternalPolicy.SystemInternalID(childComplexity), true case "InternalPolicy.systemOwned": - if e.complexity.InternalPolicy.SystemOwned == nil { + if e.ComplexityRoot.InternalPolicy.SystemOwned == nil { break } - return e.complexity.InternalPolicy.SystemOwned(childComplexity), true + return e.ComplexityRoot.InternalPolicy.SystemOwned(childComplexity), true case "InternalPolicy.tagSuggestions": - if e.complexity.InternalPolicy.TagSuggestions == nil { + if e.ComplexityRoot.InternalPolicy.TagSuggestions == nil { break } - return e.complexity.InternalPolicy.TagSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicy.TagSuggestions(childComplexity), true case "InternalPolicy.tags": - if e.complexity.InternalPolicy.Tags == nil { + if e.ComplexityRoot.InternalPolicy.Tags == nil { break } - return e.complexity.InternalPolicy.Tags(childComplexity), true + return e.ComplexityRoot.InternalPolicy.Tags(childComplexity), true case "InternalPolicy.tasks": - if e.complexity.InternalPolicy.Tasks == nil { + if e.ComplexityRoot.InternalPolicy.Tasks == nil { break } @@ -21080,38 +21063,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.InternalPolicy.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "InternalPolicy.url": - if e.complexity.InternalPolicy.URL == nil { + if e.ComplexityRoot.InternalPolicy.URL == nil { break } - return e.complexity.InternalPolicy.URL(childComplexity), true + return e.ComplexityRoot.InternalPolicy.URL(childComplexity), true case "InternalPolicy.updatedAt": - if e.complexity.InternalPolicy.UpdatedAt == nil { + if e.ComplexityRoot.InternalPolicy.UpdatedAt == nil { break } - return e.complexity.InternalPolicy.UpdatedAt(childComplexity), true + return e.ComplexityRoot.InternalPolicy.UpdatedAt(childComplexity), true case "InternalPolicy.updatedBy": - if e.complexity.InternalPolicy.UpdatedBy == nil { + if e.ComplexityRoot.InternalPolicy.UpdatedBy == nil { break } - return e.complexity.InternalPolicy.UpdatedBy(childComplexity), true + return e.ComplexityRoot.InternalPolicy.UpdatedBy(childComplexity), true case "InternalPolicy.workflowEligibleMarker": - if e.complexity.InternalPolicy.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.InternalPolicy.WorkflowEligibleMarker == nil { break } - return e.complexity.InternalPolicy.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.InternalPolicy.WorkflowEligibleMarker(childComplexity), true case "InternalPolicy.workflowObjectRefs": - if e.complexity.InternalPolicy.WorkflowObjectRefs == nil { + if e.ComplexityRoot.InternalPolicy.WorkflowObjectRefs == nil { break } @@ -21120,10 +21103,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.InternalPolicy.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "InternalPolicy.workflowTimeline": - if e.complexity.InternalPolicy.WorkflowTimeline == nil { + if e.ComplexityRoot.InternalPolicy.WorkflowTimeline == nil { break } @@ -21132,108 +21115,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.InternalPolicy.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.InternalPolicy.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "InternalPolicyBulkCreatePayload.internalPolicies": - if e.complexity.InternalPolicyBulkCreatePayload.InternalPolicies == nil { + if e.ComplexityRoot.InternalPolicyBulkCreatePayload.InternalPolicies == nil { break } - return e.complexity.InternalPolicyBulkCreatePayload.InternalPolicies(childComplexity), true + return e.ComplexityRoot.InternalPolicyBulkCreatePayload.InternalPolicies(childComplexity), true case "InternalPolicyBulkDeletePayload.deletedIDs": - if e.complexity.InternalPolicyBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.InternalPolicyBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.InternalPolicyBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.InternalPolicyBulkDeletePayload.DeletedIDs(childComplexity), true case "InternalPolicyBulkUpdatePayload.internalPolicies": - if e.complexity.InternalPolicyBulkUpdatePayload.InternalPolicies == nil { + if e.ComplexityRoot.InternalPolicyBulkUpdatePayload.InternalPolicies == nil { break } - return e.complexity.InternalPolicyBulkUpdatePayload.InternalPolicies(childComplexity), true + return e.ComplexityRoot.InternalPolicyBulkUpdatePayload.InternalPolicies(childComplexity), true case "InternalPolicyBulkUpdatePayload.updatedIDs": - if e.complexity.InternalPolicyBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.InternalPolicyBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.InternalPolicyBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.InternalPolicyBulkUpdatePayload.UpdatedIDs(childComplexity), true case "InternalPolicyConnection.edges": - if e.complexity.InternalPolicyConnection.Edges == nil { + if e.ComplexityRoot.InternalPolicyConnection.Edges == nil { break } - return e.complexity.InternalPolicyConnection.Edges(childComplexity), true + return e.ComplexityRoot.InternalPolicyConnection.Edges(childComplexity), true case "InternalPolicyConnection.pageInfo": - if e.complexity.InternalPolicyConnection.PageInfo == nil { + if e.ComplexityRoot.InternalPolicyConnection.PageInfo == nil { break } - return e.complexity.InternalPolicyConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.InternalPolicyConnection.PageInfo(childComplexity), true case "InternalPolicyConnection.totalCount": - if e.complexity.InternalPolicyConnection.TotalCount == nil { + if e.ComplexityRoot.InternalPolicyConnection.TotalCount == nil { break } - return e.complexity.InternalPolicyConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.InternalPolicyConnection.TotalCount(childComplexity), true case "InternalPolicyCreatePayload.internalPolicy": - if e.complexity.InternalPolicyCreatePayload.InternalPolicy == nil { + if e.ComplexityRoot.InternalPolicyCreatePayload.InternalPolicy == nil { break } - return e.complexity.InternalPolicyCreatePayload.InternalPolicy(childComplexity), true + return e.ComplexityRoot.InternalPolicyCreatePayload.InternalPolicy(childComplexity), true case "InternalPolicyDeletePayload.deletedID": - if e.complexity.InternalPolicyDeletePayload.DeletedID == nil { + if e.ComplexityRoot.InternalPolicyDeletePayload.DeletedID == nil { break } - return e.complexity.InternalPolicyDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.InternalPolicyDeletePayload.DeletedID(childComplexity), true case "InternalPolicyEdge.cursor": - if e.complexity.InternalPolicyEdge.Cursor == nil { + if e.ComplexityRoot.InternalPolicyEdge.Cursor == nil { break } - return e.complexity.InternalPolicyEdge.Cursor(childComplexity), true + return e.ComplexityRoot.InternalPolicyEdge.Cursor(childComplexity), true case "InternalPolicyEdge.node": - if e.complexity.InternalPolicyEdge.Node == nil { + if e.ComplexityRoot.InternalPolicyEdge.Node == nil { break } - return e.complexity.InternalPolicyEdge.Node(childComplexity), true + return e.ComplexityRoot.InternalPolicyEdge.Node(childComplexity), true case "InternalPolicyUpdatePayload.internalPolicy": - if e.complexity.InternalPolicyUpdatePayload.InternalPolicy == nil { + if e.ComplexityRoot.InternalPolicyUpdatePayload.InternalPolicy == nil { break } - return e.complexity.InternalPolicyUpdatePayload.InternalPolicy(childComplexity), true + return e.ComplexityRoot.InternalPolicyUpdatePayload.InternalPolicy(childComplexity), true case "Invite.createdAt": - if e.complexity.Invite.CreatedAt == nil { + if e.ComplexityRoot.Invite.CreatedAt == nil { break } - return e.complexity.Invite.CreatedAt(childComplexity), true + return e.ComplexityRoot.Invite.CreatedAt(childComplexity), true case "Invite.createdBy": - if e.complexity.Invite.CreatedBy == nil { + if e.ComplexityRoot.Invite.CreatedBy == nil { break } - return e.complexity.Invite.CreatedBy(childComplexity), true + return e.ComplexityRoot.Invite.CreatedBy(childComplexity), true case "Invite.events": - if e.complexity.Invite.Events == nil { + if e.ComplexityRoot.Invite.Events == nil { break } @@ -21242,17 +21225,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Invite.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Invite.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Invite.expires": - if e.complexity.Invite.Expires == nil { + if e.ComplexityRoot.Invite.Expires == nil { break } - return e.complexity.Invite.Expires(childComplexity), true + return e.ComplexityRoot.Invite.Expires(childComplexity), true case "Invite.groups": - if e.complexity.Invite.Groups == nil { + if e.ComplexityRoot.Invite.Groups == nil { break } @@ -21261,381 +21244,381 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Invite.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Invite.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Invite.id": - if e.complexity.Invite.ID == nil { + if e.ComplexityRoot.Invite.ID == nil { break } - return e.complexity.Invite.ID(childComplexity), true + return e.ComplexityRoot.Invite.ID(childComplexity), true case "Invite.owner": - if e.complexity.Invite.Owner == nil { + if e.ComplexityRoot.Invite.Owner == nil { break } - return e.complexity.Invite.Owner(childComplexity), true + return e.ComplexityRoot.Invite.Owner(childComplexity), true case "Invite.ownerID": - if e.complexity.Invite.OwnerID == nil { + if e.ComplexityRoot.Invite.OwnerID == nil { break } - return e.complexity.Invite.OwnerID(childComplexity), true + return e.ComplexityRoot.Invite.OwnerID(childComplexity), true case "Invite.ownershipTransfer": - if e.complexity.Invite.OwnershipTransfer == nil { + if e.ComplexityRoot.Invite.OwnershipTransfer == nil { break } - return e.complexity.Invite.OwnershipTransfer(childComplexity), true + return e.ComplexityRoot.Invite.OwnershipTransfer(childComplexity), true case "Invite.recipient": - if e.complexity.Invite.Recipient == nil { + if e.ComplexityRoot.Invite.Recipient == nil { break } - return e.complexity.Invite.Recipient(childComplexity), true + return e.ComplexityRoot.Invite.Recipient(childComplexity), true case "Invite.requestorID": - if e.complexity.Invite.RequestorID == nil { + if e.ComplexityRoot.Invite.RequestorID == nil { break } - return e.complexity.Invite.RequestorID(childComplexity), true + return e.ComplexityRoot.Invite.RequestorID(childComplexity), true case "Invite.role": - if e.complexity.Invite.Role == nil { + if e.ComplexityRoot.Invite.Role == nil { break } - return e.complexity.Invite.Role(childComplexity), true + return e.ComplexityRoot.Invite.Role(childComplexity), true case "Invite.sendAttempts": - if e.complexity.Invite.SendAttempts == nil { + if e.ComplexityRoot.Invite.SendAttempts == nil { break } - return e.complexity.Invite.SendAttempts(childComplexity), true + return e.ComplexityRoot.Invite.SendAttempts(childComplexity), true case "Invite.status": - if e.complexity.Invite.Status == nil { + if e.ComplexityRoot.Invite.Status == nil { break } - return e.complexity.Invite.Status(childComplexity), true + return e.ComplexityRoot.Invite.Status(childComplexity), true case "Invite.updatedAt": - if e.complexity.Invite.UpdatedAt == nil { + if e.ComplexityRoot.Invite.UpdatedAt == nil { break } - return e.complexity.Invite.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Invite.UpdatedAt(childComplexity), true case "Invite.updatedBy": - if e.complexity.Invite.UpdatedBy == nil { + if e.ComplexityRoot.Invite.UpdatedBy == nil { break } - return e.complexity.Invite.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Invite.UpdatedBy(childComplexity), true case "InviteBulkCreatePayload.invites": - if e.complexity.InviteBulkCreatePayload.Invites == nil { + if e.ComplexityRoot.InviteBulkCreatePayload.Invites == nil { break } - return e.complexity.InviteBulkCreatePayload.Invites(childComplexity), true + return e.ComplexityRoot.InviteBulkCreatePayload.Invites(childComplexity), true case "InviteBulkDeletePayload.deletedIDs": - if e.complexity.InviteBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.InviteBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.InviteBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.InviteBulkDeletePayload.DeletedIDs(childComplexity), true case "InviteBulkUpdatePayload.invites": - if e.complexity.InviteBulkUpdatePayload.Invites == nil { + if e.ComplexityRoot.InviteBulkUpdatePayload.Invites == nil { break } - return e.complexity.InviteBulkUpdatePayload.Invites(childComplexity), true + return e.ComplexityRoot.InviteBulkUpdatePayload.Invites(childComplexity), true case "InviteBulkUpdatePayload.updatedIDs": - if e.complexity.InviteBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.InviteBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.InviteBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.InviteBulkUpdatePayload.UpdatedIDs(childComplexity), true case "InviteConnection.edges": - if e.complexity.InviteConnection.Edges == nil { + if e.ComplexityRoot.InviteConnection.Edges == nil { break } - return e.complexity.InviteConnection.Edges(childComplexity), true + return e.ComplexityRoot.InviteConnection.Edges(childComplexity), true case "InviteConnection.pageInfo": - if e.complexity.InviteConnection.PageInfo == nil { + if e.ComplexityRoot.InviteConnection.PageInfo == nil { break } - return e.complexity.InviteConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.InviteConnection.PageInfo(childComplexity), true case "InviteConnection.totalCount": - if e.complexity.InviteConnection.TotalCount == nil { + if e.ComplexityRoot.InviteConnection.TotalCount == nil { break } - return e.complexity.InviteConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.InviteConnection.TotalCount(childComplexity), true case "InviteCreatePayload.invite": - if e.complexity.InviteCreatePayload.Invite == nil { + if e.ComplexityRoot.InviteCreatePayload.Invite == nil { break } - return e.complexity.InviteCreatePayload.Invite(childComplexity), true + return e.ComplexityRoot.InviteCreatePayload.Invite(childComplexity), true case "InviteDeletePayload.deletedID": - if e.complexity.InviteDeletePayload.DeletedID == nil { + if e.ComplexityRoot.InviteDeletePayload.DeletedID == nil { break } - return e.complexity.InviteDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.InviteDeletePayload.DeletedID(childComplexity), true case "InviteEdge.cursor": - if e.complexity.InviteEdge.Cursor == nil { + if e.ComplexityRoot.InviteEdge.Cursor == nil { break } - return e.complexity.InviteEdge.Cursor(childComplexity), true + return e.ComplexityRoot.InviteEdge.Cursor(childComplexity), true case "InviteEdge.node": - if e.complexity.InviteEdge.Node == nil { + if e.ComplexityRoot.InviteEdge.Node == nil { break } - return e.complexity.InviteEdge.Node(childComplexity), true + return e.ComplexityRoot.InviteEdge.Node(childComplexity), true case "InviteUpdatePayload.invite": - if e.complexity.InviteUpdatePayload.Invite == nil { + if e.ComplexityRoot.InviteUpdatePayload.Invite == nil { break } - return e.complexity.InviteUpdatePayload.Invite(childComplexity), true + return e.ComplexityRoot.InviteUpdatePayload.Invite(childComplexity), true case "JobResult.createdAt": - if e.complexity.JobResult.CreatedAt == nil { + if e.ComplexityRoot.JobResult.CreatedAt == nil { break } - return e.complexity.JobResult.CreatedAt(childComplexity), true + return e.ComplexityRoot.JobResult.CreatedAt(childComplexity), true case "JobResult.createdBy": - if e.complexity.JobResult.CreatedBy == nil { + if e.ComplexityRoot.JobResult.CreatedBy == nil { break } - return e.complexity.JobResult.CreatedBy(childComplexity), true + return e.ComplexityRoot.JobResult.CreatedBy(childComplexity), true case "JobResult.exitCode": - if e.complexity.JobResult.ExitCode == nil { + if e.ComplexityRoot.JobResult.ExitCode == nil { break } - return e.complexity.JobResult.ExitCode(childComplexity), true + return e.ComplexityRoot.JobResult.ExitCode(childComplexity), true case "JobResult.file": - if e.complexity.JobResult.File == nil { + if e.ComplexityRoot.JobResult.File == nil { break } - return e.complexity.JobResult.File(childComplexity), true + return e.ComplexityRoot.JobResult.File(childComplexity), true case "JobResult.fileID": - if e.complexity.JobResult.FileID == nil { + if e.ComplexityRoot.JobResult.FileID == nil { break } - return e.complexity.JobResult.FileID(childComplexity), true + return e.ComplexityRoot.JobResult.FileID(childComplexity), true case "JobResult.finishedAt": - if e.complexity.JobResult.FinishedAt == nil { + if e.ComplexityRoot.JobResult.FinishedAt == nil { break } - return e.complexity.JobResult.FinishedAt(childComplexity), true + return e.ComplexityRoot.JobResult.FinishedAt(childComplexity), true case "JobResult.id": - if e.complexity.JobResult.ID == nil { + if e.ComplexityRoot.JobResult.ID == nil { break } - return e.complexity.JobResult.ID(childComplexity), true + return e.ComplexityRoot.JobResult.ID(childComplexity), true case "JobResult.log": - if e.complexity.JobResult.Log == nil { + if e.ComplexityRoot.JobResult.Log == nil { break } - return e.complexity.JobResult.Log(childComplexity), true + return e.ComplexityRoot.JobResult.Log(childComplexity), true case "JobResult.owner": - if e.complexity.JobResult.Owner == nil { + if e.ComplexityRoot.JobResult.Owner == nil { break } - return e.complexity.JobResult.Owner(childComplexity), true + return e.ComplexityRoot.JobResult.Owner(childComplexity), true case "JobResult.ownerID": - if e.complexity.JobResult.OwnerID == nil { + if e.ComplexityRoot.JobResult.OwnerID == nil { break } - return e.complexity.JobResult.OwnerID(childComplexity), true + return e.ComplexityRoot.JobResult.OwnerID(childComplexity), true case "JobResult.scheduledJob": - if e.complexity.JobResult.ScheduledJob == nil { + if e.ComplexityRoot.JobResult.ScheduledJob == nil { break } - return e.complexity.JobResult.ScheduledJob(childComplexity), true + return e.ComplexityRoot.JobResult.ScheduledJob(childComplexity), true case "JobResult.scheduledJobID": - if e.complexity.JobResult.ScheduledJobID == nil { + if e.ComplexityRoot.JobResult.ScheduledJobID == nil { break } - return e.complexity.JobResult.ScheduledJobID(childComplexity), true + return e.ComplexityRoot.JobResult.ScheduledJobID(childComplexity), true case "JobResult.startedAt": - if e.complexity.JobResult.StartedAt == nil { + if e.ComplexityRoot.JobResult.StartedAt == nil { break } - return e.complexity.JobResult.StartedAt(childComplexity), true + return e.ComplexityRoot.JobResult.StartedAt(childComplexity), true case "JobResult.status": - if e.complexity.JobResult.Status == nil { + if e.ComplexityRoot.JobResult.Status == nil { break } - return e.complexity.JobResult.Status(childComplexity), true + return e.ComplexityRoot.JobResult.Status(childComplexity), true case "JobResult.updatedAt": - if e.complexity.JobResult.UpdatedAt == nil { + if e.ComplexityRoot.JobResult.UpdatedAt == nil { break } - return e.complexity.JobResult.UpdatedAt(childComplexity), true + return e.ComplexityRoot.JobResult.UpdatedAt(childComplexity), true case "JobResult.updatedBy": - if e.complexity.JobResult.UpdatedBy == nil { + if e.ComplexityRoot.JobResult.UpdatedBy == nil { break } - return e.complexity.JobResult.UpdatedBy(childComplexity), true + return e.ComplexityRoot.JobResult.UpdatedBy(childComplexity), true case "JobResultConnection.edges": - if e.complexity.JobResultConnection.Edges == nil { + if e.ComplexityRoot.JobResultConnection.Edges == nil { break } - return e.complexity.JobResultConnection.Edges(childComplexity), true + return e.ComplexityRoot.JobResultConnection.Edges(childComplexity), true case "JobResultConnection.pageInfo": - if e.complexity.JobResultConnection.PageInfo == nil { + if e.ComplexityRoot.JobResultConnection.PageInfo == nil { break } - return e.complexity.JobResultConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.JobResultConnection.PageInfo(childComplexity), true case "JobResultConnection.totalCount": - if e.complexity.JobResultConnection.TotalCount == nil { + if e.ComplexityRoot.JobResultConnection.TotalCount == nil { break } - return e.complexity.JobResultConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.JobResultConnection.TotalCount(childComplexity), true case "JobResultCreatePayload.jobResult": - if e.complexity.JobResultCreatePayload.JobResult == nil { + if e.ComplexityRoot.JobResultCreatePayload.JobResult == nil { break } - return e.complexity.JobResultCreatePayload.JobResult(childComplexity), true + return e.ComplexityRoot.JobResultCreatePayload.JobResult(childComplexity), true case "JobResultDeletePayload.deletedID": - if e.complexity.JobResultDeletePayload.DeletedID == nil { + if e.ComplexityRoot.JobResultDeletePayload.DeletedID == nil { break } - return e.complexity.JobResultDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.JobResultDeletePayload.DeletedID(childComplexity), true case "JobResultEdge.cursor": - if e.complexity.JobResultEdge.Cursor == nil { + if e.ComplexityRoot.JobResultEdge.Cursor == nil { break } - return e.complexity.JobResultEdge.Cursor(childComplexity), true + return e.ComplexityRoot.JobResultEdge.Cursor(childComplexity), true case "JobResultEdge.node": - if e.complexity.JobResultEdge.Node == nil { + if e.ComplexityRoot.JobResultEdge.Node == nil { break } - return e.complexity.JobResultEdge.Node(childComplexity), true + return e.ComplexityRoot.JobResultEdge.Node(childComplexity), true case "JobResultUpdatePayload.jobResult": - if e.complexity.JobResultUpdatePayload.JobResult == nil { + if e.ComplexityRoot.JobResultUpdatePayload.JobResult == nil { break } - return e.complexity.JobResultUpdatePayload.JobResult(childComplexity), true + return e.ComplexityRoot.JobResultUpdatePayload.JobResult(childComplexity), true case "JobRunner.createdAt": - if e.complexity.JobRunner.CreatedAt == nil { + if e.ComplexityRoot.JobRunner.CreatedAt == nil { break } - return e.complexity.JobRunner.CreatedAt(childComplexity), true + return e.ComplexityRoot.JobRunner.CreatedAt(childComplexity), true case "JobRunner.createdBy": - if e.complexity.JobRunner.CreatedBy == nil { + if e.ComplexityRoot.JobRunner.CreatedBy == nil { break } - return e.complexity.JobRunner.CreatedBy(childComplexity), true + return e.ComplexityRoot.JobRunner.CreatedBy(childComplexity), true case "JobRunner.displayID": - if e.complexity.JobRunner.DisplayID == nil { + if e.ComplexityRoot.JobRunner.DisplayID == nil { break } - return e.complexity.JobRunner.DisplayID(childComplexity), true + return e.ComplexityRoot.JobRunner.DisplayID(childComplexity), true case "JobRunner.id": - if e.complexity.JobRunner.ID == nil { + if e.ComplexityRoot.JobRunner.ID == nil { break } - return e.complexity.JobRunner.ID(childComplexity), true + return e.ComplexityRoot.JobRunner.ID(childComplexity), true case "JobRunner.ipAddress": - if e.complexity.JobRunner.IPAddress == nil { + if e.ComplexityRoot.JobRunner.IPAddress == nil { break } - return e.complexity.JobRunner.IPAddress(childComplexity), true + return e.ComplexityRoot.JobRunner.IPAddress(childComplexity), true case "JobRunner.internalNotes": - if e.complexity.JobRunner.InternalNotes == nil { + if e.ComplexityRoot.JobRunner.InternalNotes == nil { break } - return e.complexity.JobRunner.InternalNotes(childComplexity), true + return e.ComplexityRoot.JobRunner.InternalNotes(childComplexity), true case "JobRunner.jobRunnerTokens": - if e.complexity.JobRunner.JobRunnerTokens == nil { + if e.ComplexityRoot.JobRunner.JobRunnerTokens == nil { break } @@ -21644,325 +21627,325 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.JobRunner.JobRunnerTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerTokenOrder), args["where"].(*generated.JobRunnerTokenWhereInput)), true + return e.ComplexityRoot.JobRunner.JobRunnerTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerTokenOrder), args["where"].(*generated.JobRunnerTokenWhereInput)), true case "JobRunner.lastSeen": - if e.complexity.JobRunner.LastSeen == nil { + if e.ComplexityRoot.JobRunner.LastSeen == nil { break } - return e.complexity.JobRunner.LastSeen(childComplexity), true + return e.ComplexityRoot.JobRunner.LastSeen(childComplexity), true case "JobRunner.name": - if e.complexity.JobRunner.Name == nil { + if e.ComplexityRoot.JobRunner.Name == nil { break } - return e.complexity.JobRunner.Name(childComplexity), true + return e.ComplexityRoot.JobRunner.Name(childComplexity), true case "JobRunner.os": - if e.complexity.JobRunner.Os == nil { + if e.ComplexityRoot.JobRunner.Os == nil { break } - return e.complexity.JobRunner.Os(childComplexity), true + return e.ComplexityRoot.JobRunner.Os(childComplexity), true case "JobRunner.owner": - if e.complexity.JobRunner.Owner == nil { + if e.ComplexityRoot.JobRunner.Owner == nil { break } - return e.complexity.JobRunner.Owner(childComplexity), true + return e.ComplexityRoot.JobRunner.Owner(childComplexity), true case "JobRunner.ownerID": - if e.complexity.JobRunner.OwnerID == nil { + if e.ComplexityRoot.JobRunner.OwnerID == nil { break } - return e.complexity.JobRunner.OwnerID(childComplexity), true + return e.ComplexityRoot.JobRunner.OwnerID(childComplexity), true case "JobRunner.status": - if e.complexity.JobRunner.Status == nil { + if e.ComplexityRoot.JobRunner.Status == nil { break } - return e.complexity.JobRunner.Status(childComplexity), true + return e.ComplexityRoot.JobRunner.Status(childComplexity), true case "JobRunner.systemInternalID": - if e.complexity.JobRunner.SystemInternalID == nil { + if e.ComplexityRoot.JobRunner.SystemInternalID == nil { break } - return e.complexity.JobRunner.SystemInternalID(childComplexity), true + return e.ComplexityRoot.JobRunner.SystemInternalID(childComplexity), true case "JobRunner.systemOwned": - if e.complexity.JobRunner.SystemOwned == nil { + if e.ComplexityRoot.JobRunner.SystemOwned == nil { break } - return e.complexity.JobRunner.SystemOwned(childComplexity), true + return e.ComplexityRoot.JobRunner.SystemOwned(childComplexity), true case "JobRunner.tags": - if e.complexity.JobRunner.Tags == nil { + if e.ComplexityRoot.JobRunner.Tags == nil { break } - return e.complexity.JobRunner.Tags(childComplexity), true + return e.ComplexityRoot.JobRunner.Tags(childComplexity), true case "JobRunner.updatedAt": - if e.complexity.JobRunner.UpdatedAt == nil { + if e.ComplexityRoot.JobRunner.UpdatedAt == nil { break } - return e.complexity.JobRunner.UpdatedAt(childComplexity), true + return e.ComplexityRoot.JobRunner.UpdatedAt(childComplexity), true case "JobRunner.updatedBy": - if e.complexity.JobRunner.UpdatedBy == nil { + if e.ComplexityRoot.JobRunner.UpdatedBy == nil { break } - return e.complexity.JobRunner.UpdatedBy(childComplexity), true + return e.ComplexityRoot.JobRunner.UpdatedBy(childComplexity), true case "JobRunner.version": - if e.complexity.JobRunner.Version == nil { + if e.ComplexityRoot.JobRunner.Version == nil { break } - return e.complexity.JobRunner.Version(childComplexity), true + return e.ComplexityRoot.JobRunner.Version(childComplexity), true case "JobRunnerConnection.edges": - if e.complexity.JobRunnerConnection.Edges == nil { + if e.ComplexityRoot.JobRunnerConnection.Edges == nil { break } - return e.complexity.JobRunnerConnection.Edges(childComplexity), true + return e.ComplexityRoot.JobRunnerConnection.Edges(childComplexity), true case "JobRunnerConnection.pageInfo": - if e.complexity.JobRunnerConnection.PageInfo == nil { + if e.ComplexityRoot.JobRunnerConnection.PageInfo == nil { break } - return e.complexity.JobRunnerConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.JobRunnerConnection.PageInfo(childComplexity), true case "JobRunnerConnection.totalCount": - if e.complexity.JobRunnerConnection.TotalCount == nil { + if e.ComplexityRoot.JobRunnerConnection.TotalCount == nil { break } - return e.complexity.JobRunnerConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.JobRunnerConnection.TotalCount(childComplexity), true case "JobRunnerCreatePayload.jobRunner": - if e.complexity.JobRunnerCreatePayload.JobRunner == nil { + if e.ComplexityRoot.JobRunnerCreatePayload.JobRunner == nil { break } - return e.complexity.JobRunnerCreatePayload.JobRunner(childComplexity), true + return e.ComplexityRoot.JobRunnerCreatePayload.JobRunner(childComplexity), true case "JobRunnerDeletePayload.deletedID": - if e.complexity.JobRunnerDeletePayload.DeletedID == nil { + if e.ComplexityRoot.JobRunnerDeletePayload.DeletedID == nil { break } - return e.complexity.JobRunnerDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.JobRunnerDeletePayload.DeletedID(childComplexity), true case "JobRunnerEdge.cursor": - if e.complexity.JobRunnerEdge.Cursor == nil { + if e.ComplexityRoot.JobRunnerEdge.Cursor == nil { break } - return e.complexity.JobRunnerEdge.Cursor(childComplexity), true + return e.ComplexityRoot.JobRunnerEdge.Cursor(childComplexity), true case "JobRunnerEdge.node": - if e.complexity.JobRunnerEdge.Node == nil { + if e.ComplexityRoot.JobRunnerEdge.Node == nil { break } - return e.complexity.JobRunnerEdge.Node(childComplexity), true + return e.ComplexityRoot.JobRunnerEdge.Node(childComplexity), true case "JobRunnerRegistrationToken.createdAt": - if e.complexity.JobRunnerRegistrationToken.CreatedAt == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.CreatedAt == nil { break } - return e.complexity.JobRunnerRegistrationToken.CreatedAt(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.CreatedAt(childComplexity), true case "JobRunnerRegistrationToken.createdBy": - if e.complexity.JobRunnerRegistrationToken.CreatedBy == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.CreatedBy == nil { break } - return e.complexity.JobRunnerRegistrationToken.CreatedBy(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.CreatedBy(childComplexity), true case "JobRunnerRegistrationToken.expiresAt": - if e.complexity.JobRunnerRegistrationToken.ExpiresAt == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.ExpiresAt == nil { break } - return e.complexity.JobRunnerRegistrationToken.ExpiresAt(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.ExpiresAt(childComplexity), true case "JobRunnerRegistrationToken.id": - if e.complexity.JobRunnerRegistrationToken.ID == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.ID == nil { break } - return e.complexity.JobRunnerRegistrationToken.ID(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.ID(childComplexity), true case "JobRunnerRegistrationToken.jobRunner": - if e.complexity.JobRunnerRegistrationToken.JobRunner == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.JobRunner == nil { break } - return e.complexity.JobRunnerRegistrationToken.JobRunner(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.JobRunner(childComplexity), true case "JobRunnerRegistrationToken.jobRunnerID": - if e.complexity.JobRunnerRegistrationToken.JobRunnerID == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.JobRunnerID == nil { break } - return e.complexity.JobRunnerRegistrationToken.JobRunnerID(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.JobRunnerID(childComplexity), true case "JobRunnerRegistrationToken.lastUsedAt": - if e.complexity.JobRunnerRegistrationToken.LastUsedAt == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.LastUsedAt == nil { break } - return e.complexity.JobRunnerRegistrationToken.LastUsedAt(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.LastUsedAt(childComplexity), true case "JobRunnerRegistrationToken.owner": - if e.complexity.JobRunnerRegistrationToken.Owner == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.Owner == nil { break } - return e.complexity.JobRunnerRegistrationToken.Owner(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.Owner(childComplexity), true case "JobRunnerRegistrationToken.ownerID": - if e.complexity.JobRunnerRegistrationToken.OwnerID == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.OwnerID == nil { break } - return e.complexity.JobRunnerRegistrationToken.OwnerID(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.OwnerID(childComplexity), true case "JobRunnerRegistrationToken.tags": - if e.complexity.JobRunnerRegistrationToken.Tags == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.Tags == nil { break } - return e.complexity.JobRunnerRegistrationToken.Tags(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.Tags(childComplexity), true case "JobRunnerRegistrationToken.token": - if e.complexity.JobRunnerRegistrationToken.Token == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.Token == nil { break } - return e.complexity.JobRunnerRegistrationToken.Token(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.Token(childComplexity), true case "JobRunnerRegistrationToken.updatedAt": - if e.complexity.JobRunnerRegistrationToken.UpdatedAt == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.UpdatedAt == nil { break } - return e.complexity.JobRunnerRegistrationToken.UpdatedAt(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.UpdatedAt(childComplexity), true case "JobRunnerRegistrationToken.updatedBy": - if e.complexity.JobRunnerRegistrationToken.UpdatedBy == nil { + if e.ComplexityRoot.JobRunnerRegistrationToken.UpdatedBy == nil { break } - return e.complexity.JobRunnerRegistrationToken.UpdatedBy(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationToken.UpdatedBy(childComplexity), true case "JobRunnerRegistrationTokenBulkCreatePayload.jobRunnerRegistrationTokens": - if e.complexity.JobRunnerRegistrationTokenBulkCreatePayload.JobRunnerRegistrationTokens == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenBulkCreatePayload.JobRunnerRegistrationTokens == nil { break } - return e.complexity.JobRunnerRegistrationTokenBulkCreatePayload.JobRunnerRegistrationTokens(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenBulkCreatePayload.JobRunnerRegistrationTokens(childComplexity), true case "JobRunnerRegistrationTokenConnection.edges": - if e.complexity.JobRunnerRegistrationTokenConnection.Edges == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenConnection.Edges == nil { break } - return e.complexity.JobRunnerRegistrationTokenConnection.Edges(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenConnection.Edges(childComplexity), true case "JobRunnerRegistrationTokenConnection.pageInfo": - if e.complexity.JobRunnerRegistrationTokenConnection.PageInfo == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenConnection.PageInfo == nil { break } - return e.complexity.JobRunnerRegistrationTokenConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenConnection.PageInfo(childComplexity), true case "JobRunnerRegistrationTokenConnection.totalCount": - if e.complexity.JobRunnerRegistrationTokenConnection.TotalCount == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenConnection.TotalCount == nil { break } - return e.complexity.JobRunnerRegistrationTokenConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenConnection.TotalCount(childComplexity), true case "JobRunnerRegistrationTokenCreatePayload.jobRunnerRegistrationToken": - if e.complexity.JobRunnerRegistrationTokenCreatePayload.JobRunnerRegistrationToken == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenCreatePayload.JobRunnerRegistrationToken == nil { break } - return e.complexity.JobRunnerRegistrationTokenCreatePayload.JobRunnerRegistrationToken(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenCreatePayload.JobRunnerRegistrationToken(childComplexity), true case "JobRunnerRegistrationTokenDeletePayload.deletedID": - if e.complexity.JobRunnerRegistrationTokenDeletePayload.DeletedID == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenDeletePayload.DeletedID == nil { break } - return e.complexity.JobRunnerRegistrationTokenDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenDeletePayload.DeletedID(childComplexity), true case "JobRunnerRegistrationTokenEdge.cursor": - if e.complexity.JobRunnerRegistrationTokenEdge.Cursor == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenEdge.Cursor == nil { break } - return e.complexity.JobRunnerRegistrationTokenEdge.Cursor(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenEdge.Cursor(childComplexity), true case "JobRunnerRegistrationTokenEdge.node": - if e.complexity.JobRunnerRegistrationTokenEdge.Node == nil { + if e.ComplexityRoot.JobRunnerRegistrationTokenEdge.Node == nil { break } - return e.complexity.JobRunnerRegistrationTokenEdge.Node(childComplexity), true + return e.ComplexityRoot.JobRunnerRegistrationTokenEdge.Node(childComplexity), true case "JobRunnerToken.createdAt": - if e.complexity.JobRunnerToken.CreatedAt == nil { + if e.ComplexityRoot.JobRunnerToken.CreatedAt == nil { break } - return e.complexity.JobRunnerToken.CreatedAt(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.CreatedAt(childComplexity), true case "JobRunnerToken.createdBy": - if e.complexity.JobRunnerToken.CreatedBy == nil { + if e.ComplexityRoot.JobRunnerToken.CreatedBy == nil { break } - return e.complexity.JobRunnerToken.CreatedBy(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.CreatedBy(childComplexity), true case "JobRunnerToken.expiresAt": - if e.complexity.JobRunnerToken.ExpiresAt == nil { + if e.ComplexityRoot.JobRunnerToken.ExpiresAt == nil { break } - return e.complexity.JobRunnerToken.ExpiresAt(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.ExpiresAt(childComplexity), true case "JobRunnerToken.id": - if e.complexity.JobRunnerToken.ID == nil { + if e.ComplexityRoot.JobRunnerToken.ID == nil { break } - return e.complexity.JobRunnerToken.ID(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.ID(childComplexity), true case "JobRunnerToken.isActive": - if e.complexity.JobRunnerToken.IsActive == nil { + if e.ComplexityRoot.JobRunnerToken.IsActive == nil { break } - return e.complexity.JobRunnerToken.IsActive(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.IsActive(childComplexity), true case "JobRunnerToken.jobRunners": - if e.complexity.JobRunnerToken.JobRunners == nil { + if e.ComplexityRoot.JobRunnerToken.JobRunners == nil { break } @@ -21971,227 +21954,227 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.JobRunnerToken.JobRunners(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerOrder), args["where"].(*generated.JobRunnerWhereInput)), true + return e.ComplexityRoot.JobRunnerToken.JobRunners(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerOrder), args["where"].(*generated.JobRunnerWhereInput)), true case "JobRunnerToken.lastUsedAt": - if e.complexity.JobRunnerToken.LastUsedAt == nil { + if e.ComplexityRoot.JobRunnerToken.LastUsedAt == nil { break } - return e.complexity.JobRunnerToken.LastUsedAt(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.LastUsedAt(childComplexity), true case "JobRunnerToken.owner": - if e.complexity.JobRunnerToken.Owner == nil { + if e.ComplexityRoot.JobRunnerToken.Owner == nil { break } - return e.complexity.JobRunnerToken.Owner(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.Owner(childComplexity), true case "JobRunnerToken.ownerID": - if e.complexity.JobRunnerToken.OwnerID == nil { + if e.ComplexityRoot.JobRunnerToken.OwnerID == nil { break } - return e.complexity.JobRunnerToken.OwnerID(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.OwnerID(childComplexity), true case "JobRunnerToken.revokedAt": - if e.complexity.JobRunnerToken.RevokedAt == nil { + if e.ComplexityRoot.JobRunnerToken.RevokedAt == nil { break } - return e.complexity.JobRunnerToken.RevokedAt(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.RevokedAt(childComplexity), true case "JobRunnerToken.revokedBy": - if e.complexity.JobRunnerToken.RevokedBy == nil { + if e.ComplexityRoot.JobRunnerToken.RevokedBy == nil { break } - return e.complexity.JobRunnerToken.RevokedBy(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.RevokedBy(childComplexity), true case "JobRunnerToken.revokedReason": - if e.complexity.JobRunnerToken.RevokedReason == nil { + if e.ComplexityRoot.JobRunnerToken.RevokedReason == nil { break } - return e.complexity.JobRunnerToken.RevokedReason(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.RevokedReason(childComplexity), true case "JobRunnerToken.tags": - if e.complexity.JobRunnerToken.Tags == nil { + if e.ComplexityRoot.JobRunnerToken.Tags == nil { break } - return e.complexity.JobRunnerToken.Tags(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.Tags(childComplexity), true case "JobRunnerToken.token": - if e.complexity.JobRunnerToken.Token == nil { + if e.ComplexityRoot.JobRunnerToken.Token == nil { break } - return e.complexity.JobRunnerToken.Token(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.Token(childComplexity), true case "JobRunnerToken.updatedAt": - if e.complexity.JobRunnerToken.UpdatedAt == nil { + if e.ComplexityRoot.JobRunnerToken.UpdatedAt == nil { break } - return e.complexity.JobRunnerToken.UpdatedAt(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.UpdatedAt(childComplexity), true case "JobRunnerToken.updatedBy": - if e.complexity.JobRunnerToken.UpdatedBy == nil { + if e.ComplexityRoot.JobRunnerToken.UpdatedBy == nil { break } - return e.complexity.JobRunnerToken.UpdatedBy(childComplexity), true + return e.ComplexityRoot.JobRunnerToken.UpdatedBy(childComplexity), true case "JobRunnerTokenConnection.edges": - if e.complexity.JobRunnerTokenConnection.Edges == nil { + if e.ComplexityRoot.JobRunnerTokenConnection.Edges == nil { break } - return e.complexity.JobRunnerTokenConnection.Edges(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenConnection.Edges(childComplexity), true case "JobRunnerTokenConnection.pageInfo": - if e.complexity.JobRunnerTokenConnection.PageInfo == nil { + if e.ComplexityRoot.JobRunnerTokenConnection.PageInfo == nil { break } - return e.complexity.JobRunnerTokenConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenConnection.PageInfo(childComplexity), true case "JobRunnerTokenConnection.totalCount": - if e.complexity.JobRunnerTokenConnection.TotalCount == nil { + if e.ComplexityRoot.JobRunnerTokenConnection.TotalCount == nil { break } - return e.complexity.JobRunnerTokenConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenConnection.TotalCount(childComplexity), true case "JobRunnerTokenCreatePayload.jobRunnerToken": - if e.complexity.JobRunnerTokenCreatePayload.JobRunnerToken == nil { + if e.ComplexityRoot.JobRunnerTokenCreatePayload.JobRunnerToken == nil { break } - return e.complexity.JobRunnerTokenCreatePayload.JobRunnerToken(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenCreatePayload.JobRunnerToken(childComplexity), true case "JobRunnerTokenDeletePayload.deletedID": - if e.complexity.JobRunnerTokenDeletePayload.DeletedID == nil { + if e.ComplexityRoot.JobRunnerTokenDeletePayload.DeletedID == nil { break } - return e.complexity.JobRunnerTokenDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenDeletePayload.DeletedID(childComplexity), true case "JobRunnerTokenEdge.cursor": - if e.complexity.JobRunnerTokenEdge.Cursor == nil { + if e.ComplexityRoot.JobRunnerTokenEdge.Cursor == nil { break } - return e.complexity.JobRunnerTokenEdge.Cursor(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenEdge.Cursor(childComplexity), true case "JobRunnerTokenEdge.node": - if e.complexity.JobRunnerTokenEdge.Node == nil { + if e.ComplexityRoot.JobRunnerTokenEdge.Node == nil { break } - return e.complexity.JobRunnerTokenEdge.Node(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenEdge.Node(childComplexity), true case "JobRunnerTokenUpdatePayload.jobRunnerToken": - if e.complexity.JobRunnerTokenUpdatePayload.JobRunnerToken == nil { + if e.ComplexityRoot.JobRunnerTokenUpdatePayload.JobRunnerToken == nil { break } - return e.complexity.JobRunnerTokenUpdatePayload.JobRunnerToken(childComplexity), true + return e.ComplexityRoot.JobRunnerTokenUpdatePayload.JobRunnerToken(childComplexity), true case "JobRunnerUpdatePayload.jobRunner": - if e.complexity.JobRunnerUpdatePayload.JobRunner == nil { + if e.ComplexityRoot.JobRunnerUpdatePayload.JobRunner == nil { break } - return e.complexity.JobRunnerUpdatePayload.JobRunner(childComplexity), true + return e.ComplexityRoot.JobRunnerUpdatePayload.JobRunner(childComplexity), true case "JobTemplate.configuration": - if e.complexity.JobTemplate.Configuration == nil { + if e.ComplexityRoot.JobTemplate.Configuration == nil { break } - return e.complexity.JobTemplate.Configuration(childComplexity), true + return e.ComplexityRoot.JobTemplate.Configuration(childComplexity), true case "JobTemplate.createdAt": - if e.complexity.JobTemplate.CreatedAt == nil { + if e.ComplexityRoot.JobTemplate.CreatedAt == nil { break } - return e.complexity.JobTemplate.CreatedAt(childComplexity), true + return e.ComplexityRoot.JobTemplate.CreatedAt(childComplexity), true case "JobTemplate.createdBy": - if e.complexity.JobTemplate.CreatedBy == nil { + if e.ComplexityRoot.JobTemplate.CreatedBy == nil { break } - return e.complexity.JobTemplate.CreatedBy(childComplexity), true + return e.ComplexityRoot.JobTemplate.CreatedBy(childComplexity), true case "JobTemplate.cron": - if e.complexity.JobTemplate.Cron == nil { + if e.ComplexityRoot.JobTemplate.Cron == nil { break } - return e.complexity.JobTemplate.Cron(childComplexity), true + return e.ComplexityRoot.JobTemplate.Cron(childComplexity), true case "JobTemplate.description": - if e.complexity.JobTemplate.Description == nil { + if e.ComplexityRoot.JobTemplate.Description == nil { break } - return e.complexity.JobTemplate.Description(childComplexity), true + return e.ComplexityRoot.JobTemplate.Description(childComplexity), true case "JobTemplate.displayID": - if e.complexity.JobTemplate.DisplayID == nil { + if e.ComplexityRoot.JobTemplate.DisplayID == nil { break } - return e.complexity.JobTemplate.DisplayID(childComplexity), true + return e.ComplexityRoot.JobTemplate.DisplayID(childComplexity), true case "JobTemplate.downloadURL": - if e.complexity.JobTemplate.DownloadURL == nil { + if e.ComplexityRoot.JobTemplate.DownloadURL == nil { break } - return e.complexity.JobTemplate.DownloadURL(childComplexity), true + return e.ComplexityRoot.JobTemplate.DownloadURL(childComplexity), true case "JobTemplate.id": - if e.complexity.JobTemplate.ID == nil { + if e.ComplexityRoot.JobTemplate.ID == nil { break } - return e.complexity.JobTemplate.ID(childComplexity), true + return e.ComplexityRoot.JobTemplate.ID(childComplexity), true case "JobTemplate.internalNotes": - if e.complexity.JobTemplate.InternalNotes == nil { + if e.ComplexityRoot.JobTemplate.InternalNotes == nil { break } - return e.complexity.JobTemplate.InternalNotes(childComplexity), true + return e.ComplexityRoot.JobTemplate.InternalNotes(childComplexity), true case "JobTemplate.owner": - if e.complexity.JobTemplate.Owner == nil { + if e.ComplexityRoot.JobTemplate.Owner == nil { break } - return e.complexity.JobTemplate.Owner(childComplexity), true + return e.ComplexityRoot.JobTemplate.Owner(childComplexity), true case "JobTemplate.ownerID": - if e.complexity.JobTemplate.OwnerID == nil { + if e.ComplexityRoot.JobTemplate.OwnerID == nil { break } - return e.complexity.JobTemplate.OwnerID(childComplexity), true + return e.ComplexityRoot.JobTemplate.OwnerID(childComplexity), true case "JobTemplate.platform": - if e.complexity.JobTemplate.Platform == nil { + if e.ComplexityRoot.JobTemplate.Platform == nil { break } - return e.complexity.JobTemplate.Platform(childComplexity), true + return e.ComplexityRoot.JobTemplate.Platform(childComplexity), true case "JobTemplate.scheduledJobs": - if e.complexity.JobTemplate.ScheduledJobs == nil { + if e.ComplexityRoot.JobTemplate.ScheduledJobs == nil { break } @@ -22200,150 +22183,150 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.JobTemplate.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true + return e.ComplexityRoot.JobTemplate.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true case "JobTemplate.systemInternalID": - if e.complexity.JobTemplate.SystemInternalID == nil { + if e.ComplexityRoot.JobTemplate.SystemInternalID == nil { break } - return e.complexity.JobTemplate.SystemInternalID(childComplexity), true + return e.ComplexityRoot.JobTemplate.SystemInternalID(childComplexity), true case "JobTemplate.systemOwned": - if e.complexity.JobTemplate.SystemOwned == nil { + if e.ComplexityRoot.JobTemplate.SystemOwned == nil { break } - return e.complexity.JobTemplate.SystemOwned(childComplexity), true + return e.ComplexityRoot.JobTemplate.SystemOwned(childComplexity), true case "JobTemplate.tags": - if e.complexity.JobTemplate.Tags == nil { + if e.ComplexityRoot.JobTemplate.Tags == nil { break } - return e.complexity.JobTemplate.Tags(childComplexity), true + return e.ComplexityRoot.JobTemplate.Tags(childComplexity), true case "JobTemplate.title": - if e.complexity.JobTemplate.Title == nil { + if e.ComplexityRoot.JobTemplate.Title == nil { break } - return e.complexity.JobTemplate.Title(childComplexity), true + return e.ComplexityRoot.JobTemplate.Title(childComplexity), true case "JobTemplate.updatedAt": - if e.complexity.JobTemplate.UpdatedAt == nil { + if e.ComplexityRoot.JobTemplate.UpdatedAt == nil { break } - return e.complexity.JobTemplate.UpdatedAt(childComplexity), true + return e.ComplexityRoot.JobTemplate.UpdatedAt(childComplexity), true case "JobTemplate.updatedBy": - if e.complexity.JobTemplate.UpdatedBy == nil { + if e.ComplexityRoot.JobTemplate.UpdatedBy == nil { break } - return e.complexity.JobTemplate.UpdatedBy(childComplexity), true + return e.ComplexityRoot.JobTemplate.UpdatedBy(childComplexity), true case "JobTemplateBulkCreatePayload.jobTemplates": - if e.complexity.JobTemplateBulkCreatePayload.JobTemplates == nil { + if e.ComplexityRoot.JobTemplateBulkCreatePayload.JobTemplates == nil { break } - return e.complexity.JobTemplateBulkCreatePayload.JobTemplates(childComplexity), true + return e.ComplexityRoot.JobTemplateBulkCreatePayload.JobTemplates(childComplexity), true case "JobTemplateBulkDeletePayload.deletedIDs": - if e.complexity.JobTemplateBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.JobTemplateBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.JobTemplateBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.JobTemplateBulkDeletePayload.DeletedIDs(childComplexity), true case "JobTemplateBulkUpdatePayload.jobTemplates": - if e.complexity.JobTemplateBulkUpdatePayload.JobTemplates == nil { + if e.ComplexityRoot.JobTemplateBulkUpdatePayload.JobTemplates == nil { break } - return e.complexity.JobTemplateBulkUpdatePayload.JobTemplates(childComplexity), true + return e.ComplexityRoot.JobTemplateBulkUpdatePayload.JobTemplates(childComplexity), true case "JobTemplateBulkUpdatePayload.updatedIDs": - if e.complexity.JobTemplateBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.JobTemplateBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.JobTemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.JobTemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true case "JobTemplateConnection.edges": - if e.complexity.JobTemplateConnection.Edges == nil { + if e.ComplexityRoot.JobTemplateConnection.Edges == nil { break } - return e.complexity.JobTemplateConnection.Edges(childComplexity), true + return e.ComplexityRoot.JobTemplateConnection.Edges(childComplexity), true case "JobTemplateConnection.pageInfo": - if e.complexity.JobTemplateConnection.PageInfo == nil { + if e.ComplexityRoot.JobTemplateConnection.PageInfo == nil { break } - return e.complexity.JobTemplateConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.JobTemplateConnection.PageInfo(childComplexity), true case "JobTemplateConnection.totalCount": - if e.complexity.JobTemplateConnection.TotalCount == nil { + if e.ComplexityRoot.JobTemplateConnection.TotalCount == nil { break } - return e.complexity.JobTemplateConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.JobTemplateConnection.TotalCount(childComplexity), true case "JobTemplateCreatePayload.jobTemplate": - if e.complexity.JobTemplateCreatePayload.JobTemplate == nil { + if e.ComplexityRoot.JobTemplateCreatePayload.JobTemplate == nil { break } - return e.complexity.JobTemplateCreatePayload.JobTemplate(childComplexity), true + return e.ComplexityRoot.JobTemplateCreatePayload.JobTemplate(childComplexity), true case "JobTemplateDeletePayload.deletedID": - if e.complexity.JobTemplateDeletePayload.DeletedID == nil { + if e.ComplexityRoot.JobTemplateDeletePayload.DeletedID == nil { break } - return e.complexity.JobTemplateDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.JobTemplateDeletePayload.DeletedID(childComplexity), true case "JobTemplateEdge.cursor": - if e.complexity.JobTemplateEdge.Cursor == nil { + if e.ComplexityRoot.JobTemplateEdge.Cursor == nil { break } - return e.complexity.JobTemplateEdge.Cursor(childComplexity), true + return e.ComplexityRoot.JobTemplateEdge.Cursor(childComplexity), true case "JobTemplateEdge.node": - if e.complexity.JobTemplateEdge.Node == nil { + if e.ComplexityRoot.JobTemplateEdge.Node == nil { break } - return e.complexity.JobTemplateEdge.Node(childComplexity), true + return e.ComplexityRoot.JobTemplateEdge.Node(childComplexity), true case "JobTemplateUpdatePayload.jobTemplate": - if e.complexity.JobTemplateUpdatePayload.JobTemplate == nil { + if e.ComplexityRoot.JobTemplateUpdatePayload.JobTemplate == nil { break } - return e.complexity.JobTemplateUpdatePayload.JobTemplate(childComplexity), true + return e.ComplexityRoot.JobTemplateUpdatePayload.JobTemplate(childComplexity), true case "MappableDomain.createdAt": - if e.complexity.MappableDomain.CreatedAt == nil { + if e.ComplexityRoot.MappableDomain.CreatedAt == nil { break } - return e.complexity.MappableDomain.CreatedAt(childComplexity), true + return e.ComplexityRoot.MappableDomain.CreatedAt(childComplexity), true case "MappableDomain.createdBy": - if e.complexity.MappableDomain.CreatedBy == nil { + if e.ComplexityRoot.MappableDomain.CreatedBy == nil { break } - return e.complexity.MappableDomain.CreatedBy(childComplexity), true + return e.ComplexityRoot.MappableDomain.CreatedBy(childComplexity), true case "MappableDomain.customDomains": - if e.complexity.MappableDomain.CustomDomains == nil { + if e.ComplexityRoot.MappableDomain.CustomDomains == nil { break } @@ -22352,136 +22335,136 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.MappableDomain.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true + return e.ComplexityRoot.MappableDomain.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true case "MappableDomain.id": - if e.complexity.MappableDomain.ID == nil { + if e.ComplexityRoot.MappableDomain.ID == nil { break } - return e.complexity.MappableDomain.ID(childComplexity), true + return e.ComplexityRoot.MappableDomain.ID(childComplexity), true case "MappableDomain.name": - if e.complexity.MappableDomain.Name == nil { + if e.ComplexityRoot.MappableDomain.Name == nil { break } - return e.complexity.MappableDomain.Name(childComplexity), true + return e.ComplexityRoot.MappableDomain.Name(childComplexity), true case "MappableDomain.tags": - if e.complexity.MappableDomain.Tags == nil { + if e.ComplexityRoot.MappableDomain.Tags == nil { break } - return e.complexity.MappableDomain.Tags(childComplexity), true + return e.ComplexityRoot.MappableDomain.Tags(childComplexity), true case "MappableDomain.updatedAt": - if e.complexity.MappableDomain.UpdatedAt == nil { + if e.ComplexityRoot.MappableDomain.UpdatedAt == nil { break } - return e.complexity.MappableDomain.UpdatedAt(childComplexity), true + return e.ComplexityRoot.MappableDomain.UpdatedAt(childComplexity), true case "MappableDomain.updatedBy": - if e.complexity.MappableDomain.UpdatedBy == nil { + if e.ComplexityRoot.MappableDomain.UpdatedBy == nil { break } - return e.complexity.MappableDomain.UpdatedBy(childComplexity), true + return e.ComplexityRoot.MappableDomain.UpdatedBy(childComplexity), true case "MappableDomain.zoneID": - if e.complexity.MappableDomain.ZoneID == nil { + if e.ComplexityRoot.MappableDomain.ZoneID == nil { break } - return e.complexity.MappableDomain.ZoneID(childComplexity), true + return e.ComplexityRoot.MappableDomain.ZoneID(childComplexity), true case "MappableDomainBulkCreatePayload.mappableDomains": - if e.complexity.MappableDomainBulkCreatePayload.MappableDomains == nil { + if e.ComplexityRoot.MappableDomainBulkCreatePayload.MappableDomains == nil { break } - return e.complexity.MappableDomainBulkCreatePayload.MappableDomains(childComplexity), true + return e.ComplexityRoot.MappableDomainBulkCreatePayload.MappableDomains(childComplexity), true case "MappableDomainBulkDeletePayload.deletedIDs": - if e.complexity.MappableDomainBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.MappableDomainBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.MappableDomainBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.MappableDomainBulkDeletePayload.DeletedIDs(childComplexity), true case "MappableDomainBulkUpdatePayload.mappableDomains": - if e.complexity.MappableDomainBulkUpdatePayload.MappableDomains == nil { + if e.ComplexityRoot.MappableDomainBulkUpdatePayload.MappableDomains == nil { break } - return e.complexity.MappableDomainBulkUpdatePayload.MappableDomains(childComplexity), true + return e.ComplexityRoot.MappableDomainBulkUpdatePayload.MappableDomains(childComplexity), true case "MappableDomainBulkUpdatePayload.updatedIDs": - if e.complexity.MappableDomainBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.MappableDomainBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.MappableDomainBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.MappableDomainBulkUpdatePayload.UpdatedIDs(childComplexity), true case "MappableDomainConnection.edges": - if e.complexity.MappableDomainConnection.Edges == nil { + if e.ComplexityRoot.MappableDomainConnection.Edges == nil { break } - return e.complexity.MappableDomainConnection.Edges(childComplexity), true + return e.ComplexityRoot.MappableDomainConnection.Edges(childComplexity), true case "MappableDomainConnection.pageInfo": - if e.complexity.MappableDomainConnection.PageInfo == nil { + if e.ComplexityRoot.MappableDomainConnection.PageInfo == nil { break } - return e.complexity.MappableDomainConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.MappableDomainConnection.PageInfo(childComplexity), true case "MappableDomainConnection.totalCount": - if e.complexity.MappableDomainConnection.TotalCount == nil { + if e.ComplexityRoot.MappableDomainConnection.TotalCount == nil { break } - return e.complexity.MappableDomainConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.MappableDomainConnection.TotalCount(childComplexity), true case "MappableDomainCreatePayload.mappableDomain": - if e.complexity.MappableDomainCreatePayload.MappableDomain == nil { + if e.ComplexityRoot.MappableDomainCreatePayload.MappableDomain == nil { break } - return e.complexity.MappableDomainCreatePayload.MappableDomain(childComplexity), true + return e.ComplexityRoot.MappableDomainCreatePayload.MappableDomain(childComplexity), true case "MappableDomainDeletePayload.deletedID": - if e.complexity.MappableDomainDeletePayload.DeletedID == nil { + if e.ComplexityRoot.MappableDomainDeletePayload.DeletedID == nil { break } - return e.complexity.MappableDomainDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.MappableDomainDeletePayload.DeletedID(childComplexity), true case "MappableDomainEdge.cursor": - if e.complexity.MappableDomainEdge.Cursor == nil { + if e.ComplexityRoot.MappableDomainEdge.Cursor == nil { break } - return e.complexity.MappableDomainEdge.Cursor(childComplexity), true + return e.ComplexityRoot.MappableDomainEdge.Cursor(childComplexity), true case "MappableDomainEdge.node": - if e.complexity.MappableDomainEdge.Node == nil { + if e.ComplexityRoot.MappableDomainEdge.Node == nil { break } - return e.complexity.MappableDomainEdge.Node(childComplexity), true + return e.ComplexityRoot.MappableDomainEdge.Node(childComplexity), true case "MappableDomainUpdatePayload.mappableDomain": - if e.complexity.MappableDomainUpdatePayload.MappableDomain == nil { + if e.ComplexityRoot.MappableDomainUpdatePayload.MappableDomain == nil { break } - return e.complexity.MappableDomainUpdatePayload.MappableDomain(childComplexity), true + return e.ComplexityRoot.MappableDomainUpdatePayload.MappableDomain(childComplexity), true case "MappedControl.blockedGroups": - if e.complexity.MappedControl.BlockedGroups == nil { + if e.ComplexityRoot.MappedControl.BlockedGroups == nil { break } @@ -22490,31 +22473,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.MappedControl.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.MappedControl.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "MappedControl.confidence": - if e.complexity.MappedControl.Confidence == nil { + if e.ComplexityRoot.MappedControl.Confidence == nil { break } - return e.complexity.MappedControl.Confidence(childComplexity), true + return e.ComplexityRoot.MappedControl.Confidence(childComplexity), true case "MappedControl.createdAt": - if e.complexity.MappedControl.CreatedAt == nil { + if e.ComplexityRoot.MappedControl.CreatedAt == nil { break } - return e.complexity.MappedControl.CreatedAt(childComplexity), true + return e.ComplexityRoot.MappedControl.CreatedAt(childComplexity), true case "MappedControl.createdBy": - if e.complexity.MappedControl.CreatedBy == nil { + if e.ComplexityRoot.MappedControl.CreatedBy == nil { break } - return e.complexity.MappedControl.CreatedBy(childComplexity), true + return e.ComplexityRoot.MappedControl.CreatedBy(childComplexity), true case "MappedControl.editors": - if e.complexity.MappedControl.Editors == nil { + if e.ComplexityRoot.MappedControl.Editors == nil { break } @@ -22523,10 +22506,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.MappedControl.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.MappedControl.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "MappedControl.fromControls": - if e.complexity.MappedControl.FromControls == nil { + if e.ComplexityRoot.MappedControl.FromControls == nil { break } @@ -22535,10 +22518,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.MappedControl.FromControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.MappedControl.FromControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "MappedControl.fromSubcontrols": - if e.complexity.MappedControl.FromSubcontrols == nil { + if e.ComplexityRoot.MappedControl.FromSubcontrols == nil { break } @@ -22547,80 +22530,80 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.MappedControl.FromSubcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.MappedControl.FromSubcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "MappedControl.id": - if e.complexity.MappedControl.ID == nil { + if e.ComplexityRoot.MappedControl.ID == nil { break } - return e.complexity.MappedControl.ID(childComplexity), true + return e.ComplexityRoot.MappedControl.ID(childComplexity), true case "MappedControl.internalNotes": - if e.complexity.MappedControl.InternalNotes == nil { + if e.ComplexityRoot.MappedControl.InternalNotes == nil { break } - return e.complexity.MappedControl.InternalNotes(childComplexity), true + return e.ComplexityRoot.MappedControl.InternalNotes(childComplexity), true case "MappedControl.mappingType": - if e.complexity.MappedControl.MappingType == nil { + if e.ComplexityRoot.MappedControl.MappingType == nil { break } - return e.complexity.MappedControl.MappingType(childComplexity), true + return e.ComplexityRoot.MappedControl.MappingType(childComplexity), true case "MappedControl.owner": - if e.complexity.MappedControl.Owner == nil { + if e.ComplexityRoot.MappedControl.Owner == nil { break } - return e.complexity.MappedControl.Owner(childComplexity), true + return e.ComplexityRoot.MappedControl.Owner(childComplexity), true case "MappedControl.ownerID": - if e.complexity.MappedControl.OwnerID == nil { + if e.ComplexityRoot.MappedControl.OwnerID == nil { break } - return e.complexity.MappedControl.OwnerID(childComplexity), true + return e.ComplexityRoot.MappedControl.OwnerID(childComplexity), true case "MappedControl.relation": - if e.complexity.MappedControl.Relation == nil { + if e.ComplexityRoot.MappedControl.Relation == nil { break } - return e.complexity.MappedControl.Relation(childComplexity), true + return e.ComplexityRoot.MappedControl.Relation(childComplexity), true case "MappedControl.source": - if e.complexity.MappedControl.Source == nil { + if e.ComplexityRoot.MappedControl.Source == nil { break } - return e.complexity.MappedControl.Source(childComplexity), true + return e.ComplexityRoot.MappedControl.Source(childComplexity), true case "MappedControl.systemInternalID": - if e.complexity.MappedControl.SystemInternalID == nil { + if e.ComplexityRoot.MappedControl.SystemInternalID == nil { break } - return e.complexity.MappedControl.SystemInternalID(childComplexity), true + return e.ComplexityRoot.MappedControl.SystemInternalID(childComplexity), true case "MappedControl.systemOwned": - if e.complexity.MappedControl.SystemOwned == nil { + if e.ComplexityRoot.MappedControl.SystemOwned == nil { break } - return e.complexity.MappedControl.SystemOwned(childComplexity), true + return e.ComplexityRoot.MappedControl.SystemOwned(childComplexity), true case "MappedControl.tags": - if e.complexity.MappedControl.Tags == nil { + if e.ComplexityRoot.MappedControl.Tags == nil { break } - return e.complexity.MappedControl.Tags(childComplexity), true + return e.ComplexityRoot.MappedControl.Tags(childComplexity), true case "MappedControl.toControls": - if e.complexity.MappedControl.ToControls == nil { + if e.ComplexityRoot.MappedControl.ToControls == nil { break } @@ -22629,10 +22612,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.MappedControl.ToControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.MappedControl.ToControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "MappedControl.toSubcontrols": - if e.complexity.MappedControl.ToSubcontrols == nil { + if e.ComplexityRoot.MappedControl.ToSubcontrols == nil { break } @@ -22641,108 +22624,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.MappedControl.ToSubcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.MappedControl.ToSubcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "MappedControl.updatedAt": - if e.complexity.MappedControl.UpdatedAt == nil { + if e.ComplexityRoot.MappedControl.UpdatedAt == nil { break } - return e.complexity.MappedControl.UpdatedAt(childComplexity), true + return e.ComplexityRoot.MappedControl.UpdatedAt(childComplexity), true case "MappedControl.updatedBy": - if e.complexity.MappedControl.UpdatedBy == nil { + if e.ComplexityRoot.MappedControl.UpdatedBy == nil { break } - return e.complexity.MappedControl.UpdatedBy(childComplexity), true + return e.ComplexityRoot.MappedControl.UpdatedBy(childComplexity), true case "MappedControlBulkCreatePayload.mappedControls": - if e.complexity.MappedControlBulkCreatePayload.MappedControls == nil { + if e.ComplexityRoot.MappedControlBulkCreatePayload.MappedControls == nil { break } - return e.complexity.MappedControlBulkCreatePayload.MappedControls(childComplexity), true + return e.ComplexityRoot.MappedControlBulkCreatePayload.MappedControls(childComplexity), true case "MappedControlBulkDeletePayload.deletedIDs": - if e.complexity.MappedControlBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.MappedControlBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.MappedControlBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.MappedControlBulkDeletePayload.DeletedIDs(childComplexity), true case "MappedControlBulkUpdatePayload.mappedControls": - if e.complexity.MappedControlBulkUpdatePayload.MappedControls == nil { + if e.ComplexityRoot.MappedControlBulkUpdatePayload.MappedControls == nil { break } - return e.complexity.MappedControlBulkUpdatePayload.MappedControls(childComplexity), true + return e.ComplexityRoot.MappedControlBulkUpdatePayload.MappedControls(childComplexity), true case "MappedControlBulkUpdatePayload.updatedIDs": - if e.complexity.MappedControlBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.MappedControlBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.MappedControlBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.MappedControlBulkUpdatePayload.UpdatedIDs(childComplexity), true case "MappedControlConnection.edges": - if e.complexity.MappedControlConnection.Edges == nil { + if e.ComplexityRoot.MappedControlConnection.Edges == nil { break } - return e.complexity.MappedControlConnection.Edges(childComplexity), true + return e.ComplexityRoot.MappedControlConnection.Edges(childComplexity), true case "MappedControlConnection.pageInfo": - if e.complexity.MappedControlConnection.PageInfo == nil { + if e.ComplexityRoot.MappedControlConnection.PageInfo == nil { break } - return e.complexity.MappedControlConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.MappedControlConnection.PageInfo(childComplexity), true case "MappedControlConnection.totalCount": - if e.complexity.MappedControlConnection.TotalCount == nil { + if e.ComplexityRoot.MappedControlConnection.TotalCount == nil { break } - return e.complexity.MappedControlConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.MappedControlConnection.TotalCount(childComplexity), true case "MappedControlCreatePayload.mappedControl": - if e.complexity.MappedControlCreatePayload.MappedControl == nil { + if e.ComplexityRoot.MappedControlCreatePayload.MappedControl == nil { break } - return e.complexity.MappedControlCreatePayload.MappedControl(childComplexity), true + return e.ComplexityRoot.MappedControlCreatePayload.MappedControl(childComplexity), true case "MappedControlDeletePayload.deletedID": - if e.complexity.MappedControlDeletePayload.DeletedID == nil { + if e.ComplexityRoot.MappedControlDeletePayload.DeletedID == nil { break } - return e.complexity.MappedControlDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.MappedControlDeletePayload.DeletedID(childComplexity), true case "MappedControlEdge.cursor": - if e.complexity.MappedControlEdge.Cursor == nil { + if e.ComplexityRoot.MappedControlEdge.Cursor == nil { break } - return e.complexity.MappedControlEdge.Cursor(childComplexity), true + return e.ComplexityRoot.MappedControlEdge.Cursor(childComplexity), true case "MappedControlEdge.node": - if e.complexity.MappedControlEdge.Node == nil { + if e.ComplexityRoot.MappedControlEdge.Node == nil { break } - return e.complexity.MappedControlEdge.Node(childComplexity), true + return e.ComplexityRoot.MappedControlEdge.Node(childComplexity), true case "MappedControlUpdatePayload.mappedControl": - if e.complexity.MappedControlUpdatePayload.MappedControl == nil { + if e.ComplexityRoot.MappedControlUpdatePayload.MappedControl == nil { break } - return e.complexity.MappedControlUpdatePayload.MappedControl(childComplexity), true + return e.ComplexityRoot.MappedControlUpdatePayload.MappedControl(childComplexity), true case "Mutation.adminReassignWorkflowAssignment": - if e.complexity.Mutation.AdminReassignWorkflowAssignment == nil { + if e.ComplexityRoot.Mutation.AdminReassignWorkflowAssignment == nil { break } @@ -22751,10 +22734,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.AdminReassignWorkflowAssignment(childComplexity, args["input"].(model.ReassignWorkflowAssignmentInput)), true + return e.ComplexityRoot.Mutation.AdminReassignWorkflowAssignment(childComplexity, args["input"].(model.ReassignWorkflowAssignmentInput)), true case "Mutation.approveNDARequests": - if e.complexity.Mutation.ApproveNDARequests == nil { + if e.ComplexityRoot.Mutation.ApproveNDARequests == nil { break } @@ -22763,10 +22746,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.ApproveNDARequests(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.ApproveNDARequests(childComplexity, args["ids"].([]string)), true case "Mutation.approveWorkflowAssignment": - if e.complexity.Mutation.ApproveWorkflowAssignment == nil { + if e.ComplexityRoot.Mutation.ApproveWorkflowAssignment == nil { break } @@ -22775,10 +22758,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.ApproveWorkflowAssignment(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.ApproveWorkflowAssignment(childComplexity, args["id"].(string)), true case "Mutation.bulkCancelWorkflowInstances": - if e.complexity.Mutation.BulkCancelWorkflowInstances == nil { + if e.ComplexityRoot.Mutation.BulkCancelWorkflowInstances == nil { break } @@ -22787,10 +22770,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.BulkCancelWorkflowInstances(childComplexity, args["ids"].([]string), args["reason"].(*string)), true + return e.ComplexityRoot.Mutation.BulkCancelWorkflowInstances(childComplexity, args["ids"].([]string), args["reason"].(*string)), true case "Mutation.bulkForceCompleteWorkflowInstances": - if e.complexity.Mutation.BulkForceCompleteWorkflowInstances == nil { + if e.ComplexityRoot.Mutation.BulkForceCompleteWorkflowInstances == nil { break } @@ -22799,10 +22782,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.BulkForceCompleteWorkflowInstances(childComplexity, args["ids"].([]string), args["applyProposal"].(*bool)), true + return e.ComplexityRoot.Mutation.BulkForceCompleteWorkflowInstances(childComplexity, args["ids"].([]string), args["applyProposal"].(*bool)), true case "Mutation.cancelWorkflowInstance": - if e.complexity.Mutation.CancelWorkflowInstance == nil { + if e.ComplexityRoot.Mutation.CancelWorkflowInstance == nil { break } @@ -22811,10 +22794,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CancelWorkflowInstance(childComplexity, args["id"].(string), args["reason"].(*string)), true + return e.ComplexityRoot.Mutation.CancelWorkflowInstance(childComplexity, args["id"].(string), args["reason"].(*string)), true case "Mutation.cloneBulkCSVControl": - if e.complexity.Mutation.CloneBulkCSVControl == nil { + if e.ComplexityRoot.Mutation.CloneBulkCSVControl == nil { break } @@ -22823,10 +22806,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CloneBulkCSVControl(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CloneBulkCSVControl(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createAPIToken": - if e.complexity.Mutation.CreateAPIToken == nil { + if e.ComplexityRoot.Mutation.CreateAPIToken == nil { break } @@ -22835,10 +22818,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateAPIToken(childComplexity, args["input"].(generated.CreateAPITokenInput)), true + return e.ComplexityRoot.Mutation.CreateAPIToken(childComplexity, args["input"].(generated.CreateAPITokenInput)), true case "Mutation.createActionPlan": - if e.complexity.Mutation.CreateActionPlan == nil { + if e.ComplexityRoot.Mutation.CreateActionPlan == nil { break } @@ -22847,10 +22830,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateActionPlan(childComplexity, args["input"].(generated.CreateActionPlanInput)), true + return e.ComplexityRoot.Mutation.CreateActionPlan(childComplexity, args["input"].(generated.CreateActionPlanInput)), true case "Mutation.createAssessment": - if e.complexity.Mutation.CreateAssessment == nil { + if e.ComplexityRoot.Mutation.CreateAssessment == nil { break } @@ -22859,10 +22842,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateAssessment(childComplexity, args["input"].(generated.CreateAssessmentInput)), true + return e.ComplexityRoot.Mutation.CreateAssessment(childComplexity, args["input"].(generated.CreateAssessmentInput)), true case "Mutation.createAssessmentResponse": - if e.complexity.Mutation.CreateAssessmentResponse == nil { + if e.ComplexityRoot.Mutation.CreateAssessmentResponse == nil { break } @@ -22871,10 +22854,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateAssessmentResponse(childComplexity, args["input"].(generated.CreateAssessmentResponseInput)), true + return e.ComplexityRoot.Mutation.CreateAssessmentResponse(childComplexity, args["input"].(generated.CreateAssessmentResponseInput)), true case "Mutation.createAsset": - if e.complexity.Mutation.CreateAsset == nil { + if e.ComplexityRoot.Mutation.CreateAsset == nil { break } @@ -22883,10 +22866,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateAsset(childComplexity, args["input"].(generated.CreateAssetInput)), true + return e.ComplexityRoot.Mutation.CreateAsset(childComplexity, args["input"].(generated.CreateAssetInput)), true case "Mutation.createBulkAPIToken": - if e.complexity.Mutation.CreateBulkAPIToken == nil { + if e.ComplexityRoot.Mutation.CreateBulkAPIToken == nil { break } @@ -22895,10 +22878,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkAPIToken(childComplexity, args["input"].([]*generated.CreateAPITokenInput)), true + return e.ComplexityRoot.Mutation.CreateBulkAPIToken(childComplexity, args["input"].([]*generated.CreateAPITokenInput)), true case "Mutation.createBulkActionPlan": - if e.complexity.Mutation.CreateBulkActionPlan == nil { + if e.ComplexityRoot.Mutation.CreateBulkActionPlan == nil { break } @@ -22907,10 +22890,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkActionPlan(childComplexity, args["input"].([]*generated.CreateActionPlanInput)), true + return e.ComplexityRoot.Mutation.CreateBulkActionPlan(childComplexity, args["input"].([]*generated.CreateActionPlanInput)), true case "Mutation.createBulkAsset": - if e.complexity.Mutation.CreateBulkAsset == nil { + if e.ComplexityRoot.Mutation.CreateBulkAsset == nil { break } @@ -22919,10 +22902,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkAsset(childComplexity, args["input"].([]*generated.CreateAssetInput)), true + return e.ComplexityRoot.Mutation.CreateBulkAsset(childComplexity, args["input"].([]*generated.CreateAssetInput)), true case "Mutation.createBulkCSVAPIToken": - if e.complexity.Mutation.CreateBulkCSVAPIToken == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVAPIToken == nil { break } @@ -22931,10 +22914,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVAPIToken(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVAPIToken(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVActionPlan": - if e.complexity.Mutation.CreateBulkCSVActionPlan == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVActionPlan == nil { break } @@ -22943,10 +22926,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVActionPlan(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVActionPlan(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVAsset": - if e.complexity.Mutation.CreateBulkCSVAsset == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVAsset == nil { break } @@ -22955,10 +22938,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVAsset(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVAsset(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVCampaign": - if e.complexity.Mutation.CreateBulkCSVCampaign == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVCampaign == nil { break } @@ -22967,10 +22950,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVCampaign(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVCampaign(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVCampaignTarget": - if e.complexity.Mutation.CreateBulkCSVCampaignTarget == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVCampaignTarget == nil { break } @@ -22979,10 +22962,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVCampaignTarget(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVCampaignTarget(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVContact": - if e.complexity.Mutation.CreateBulkCSVContact == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVContact == nil { break } @@ -22991,10 +22974,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVContact(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVContact(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVControl": - if e.complexity.Mutation.CreateBulkCSVControl == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVControl == nil { break } @@ -23003,10 +22986,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVControl(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVControl(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVControlImplementation": - if e.complexity.Mutation.CreateBulkCSVControlImplementation == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVControlImplementation == nil { break } @@ -23015,10 +22998,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVControlImplementation(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVControlImplementation(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVControlObjective": - if e.complexity.Mutation.CreateBulkCSVControlObjective == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVControlObjective == nil { break } @@ -23027,10 +23010,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVControlObjective(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVControlObjective(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVCustomDomain": - if e.complexity.Mutation.CreateBulkCSVCustomDomain == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVCustomDomain == nil { break } @@ -23039,10 +23022,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVCustomDomain(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVCustomDomain(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVCustomTypeEnum": - if e.complexity.Mutation.CreateBulkCSVCustomTypeEnum == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVCustomTypeEnum == nil { break } @@ -23051,10 +23034,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVCustomTypeEnum(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVCustomTypeEnum(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVDNSVerification": - if e.complexity.Mutation.CreateBulkCSVDNSVerification == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVDNSVerification == nil { break } @@ -23063,10 +23046,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVDNSVerification(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVDNSVerification(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVDirectoryAccount": - if e.complexity.Mutation.CreateBulkCSVDirectoryAccount == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVDirectoryAccount == nil { break } @@ -23075,10 +23058,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVDirectoryAccount(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVDirectoryAccount(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVDirectoryGroup": - if e.complexity.Mutation.CreateBulkCSVDirectoryGroup == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVDirectoryGroup == nil { break } @@ -23087,10 +23070,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVDirectoryGroup(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVDirectoryGroup(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVDirectoryMembership": - if e.complexity.Mutation.CreateBulkCSVDirectoryMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVDirectoryMembership == nil { break } @@ -23099,10 +23082,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVDirectoryMembership(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVDirectoryMembership(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVDirectorySyncRun": - if e.complexity.Mutation.CreateBulkCSVDirectorySyncRun == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVDirectorySyncRun == nil { break } @@ -23111,10 +23094,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVDirectorySyncRun(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVDirectorySyncRun(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVDiscussion": - if e.complexity.Mutation.CreateBulkCSVDiscussion == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVDiscussion == nil { break } @@ -23123,10 +23106,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVDiscussion(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVDiscussion(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVDocumentData": - if e.complexity.Mutation.CreateBulkCSVDocumentData == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVDocumentData == nil { break } @@ -23135,10 +23118,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVDocumentData(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVDocumentData(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVEmailBranding": - if e.complexity.Mutation.CreateBulkCSVEmailBranding == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVEmailBranding == nil { break } @@ -23147,10 +23130,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVEmailBranding(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVEmailBranding(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVEmailTemplate": - if e.complexity.Mutation.CreateBulkCSVEmailTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVEmailTemplate == nil { break } @@ -23159,10 +23142,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVEmailTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVEmailTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVEntity": - if e.complexity.Mutation.CreateBulkCSVEntity == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVEntity == nil { break } @@ -23171,10 +23154,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVEntity(childComplexity, args["input"].(graphql.Upload), args["entityTypeName"].(*string)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVEntity(childComplexity, args["input"].(graphql.Upload), args["entityTypeName"].(*string)), true case "Mutation.createBulkCSVEntityType": - if e.complexity.Mutation.CreateBulkCSVEntityType == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVEntityType == nil { break } @@ -23183,10 +23166,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVEntityType(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVEntityType(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVEvent": - if e.complexity.Mutation.CreateBulkCSVEvent == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVEvent == nil { break } @@ -23195,10 +23178,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVEvent(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVEvent(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVEvidence": - if e.complexity.Mutation.CreateBulkCSVEvidence == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVEvidence == nil { break } @@ -23207,10 +23190,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVEvidence(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVEvidence(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVFinding": - if e.complexity.Mutation.CreateBulkCSVFinding == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVFinding == nil { break } @@ -23219,10 +23202,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVFinding(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVFinding(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVFindingControl": - if e.complexity.Mutation.CreateBulkCSVFindingControl == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVFindingControl == nil { break } @@ -23231,10 +23214,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVFindingControl(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVFindingControl(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVGroup": - if e.complexity.Mutation.CreateBulkCSVGroup == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVGroup == nil { break } @@ -23243,10 +23226,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVGroup(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVGroup(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVGroupMembership": - if e.complexity.Mutation.CreateBulkCSVGroupMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVGroupMembership == nil { break } @@ -23255,10 +23238,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVGroupMembership(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVGroupMembership(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVGroupSetting": - if e.complexity.Mutation.CreateBulkCSVGroupSetting == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVGroupSetting == nil { break } @@ -23267,10 +23250,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVGroupSetting(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVGroupSetting(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVHush": - if e.complexity.Mutation.CreateBulkCSVHush == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVHush == nil { break } @@ -23279,10 +23262,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVHush(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVHush(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVIdentityHolder": - if e.complexity.Mutation.CreateBulkCSVIdentityHolder == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVIdentityHolder == nil { break } @@ -23291,10 +23274,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVIdentityHolder(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVIdentityHolder(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVInternalPolicy": - if e.complexity.Mutation.CreateBulkCSVInternalPolicy == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVInternalPolicy == nil { break } @@ -23303,10 +23286,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVInternalPolicy(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVInternalPolicy(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVInvite": - if e.complexity.Mutation.CreateBulkCSVInvite == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVInvite == nil { break } @@ -23315,10 +23298,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVInvite(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVInvite(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVJobTemplate": - if e.complexity.Mutation.CreateBulkCSVJobTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVJobTemplate == nil { break } @@ -23327,10 +23310,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVJobTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVJobTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVMappableDomain": - if e.complexity.Mutation.CreateBulkCSVMappableDomain == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVMappableDomain == nil { break } @@ -23339,10 +23322,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVMappableDomain(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVMappableDomain(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVMappedControl": - if e.complexity.Mutation.CreateBulkCSVMappedControl == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVMappedControl == nil { break } @@ -23351,10 +23334,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVMappedControl(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVMappedControl(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVNarrative": - if e.complexity.Mutation.CreateBulkCSVNarrative == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVNarrative == nil { break } @@ -23363,10 +23346,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVNarrative(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVNarrative(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVNotificationPreference": - if e.complexity.Mutation.CreateBulkCSVNotificationPreference == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVNotificationPreference == nil { break } @@ -23375,10 +23358,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVNotificationPreference(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVNotificationPreference(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVNotificationTemplate": - if e.complexity.Mutation.CreateBulkCSVNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVNotificationTemplate == nil { break } @@ -23387,10 +23370,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVNotificationTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVNotificationTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVOrgMembership": - if e.complexity.Mutation.CreateBulkCSVOrgMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVOrgMembership == nil { break } @@ -23399,10 +23382,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVOrgMembership(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVOrgMembership(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVOrganizationSetting": - if e.complexity.Mutation.CreateBulkCSVOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVOrganizationSetting == nil { break } @@ -23411,10 +23394,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVOrganizationSetting(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVOrganizationSetting(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVPlatform": - if e.complexity.Mutation.CreateBulkCSVPlatform == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVPlatform == nil { break } @@ -23423,10 +23406,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVPlatform(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVPlatform(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVProcedure": - if e.complexity.Mutation.CreateBulkCSVProcedure == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVProcedure == nil { break } @@ -23435,10 +23418,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVProcedure(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVProcedure(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVProgram": - if e.complexity.Mutation.CreateBulkCSVProgram == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVProgram == nil { break } @@ -23447,10 +23430,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVProgram(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVProgram(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVProgramMembership": - if e.complexity.Mutation.CreateBulkCSVProgramMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVProgramMembership == nil { break } @@ -23459,10 +23442,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVProgramMembership(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVProgramMembership(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVRemediation": - if e.complexity.Mutation.CreateBulkCSVRemediation == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVRemediation == nil { break } @@ -23471,10 +23454,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVRemediation(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVRemediation(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVReview": - if e.complexity.Mutation.CreateBulkCSVReview == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVReview == nil { break } @@ -23483,10 +23466,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVReview(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVReview(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVRisk": - if e.complexity.Mutation.CreateBulkCSVRisk == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVRisk == nil { break } @@ -23495,10 +23478,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVRisk(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVRisk(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVScan": - if e.complexity.Mutation.CreateBulkCSVScan == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVScan == nil { break } @@ -23507,10 +23490,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVScan(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVScan(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVScheduledJob": - if e.complexity.Mutation.CreateBulkCSVScheduledJob == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVScheduledJob == nil { break } @@ -23519,10 +23502,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVScheduledJob(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVScheduledJob(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVSubcontrol": - if e.complexity.Mutation.CreateBulkCSVSubcontrol == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVSubcontrol == nil { break } @@ -23531,10 +23514,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVSubcontrol(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVSubcontrol(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVSubprocessor": - if e.complexity.Mutation.CreateBulkCSVSubprocessor == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVSubprocessor == nil { break } @@ -23543,10 +23526,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVSubprocessor(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVSubprocessor(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVSubscriber": - if e.complexity.Mutation.CreateBulkCSVSubscriber == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVSubscriber == nil { break } @@ -23555,10 +23538,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVSubscriber(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVSubscriber(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTagDefinition": - if e.complexity.Mutation.CreateBulkCSVTagDefinition == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTagDefinition == nil { break } @@ -23567,10 +23550,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTagDefinition(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTagDefinition(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTask": - if e.complexity.Mutation.CreateBulkCSVTask == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTask == nil { break } @@ -23579,10 +23562,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTask(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTask(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTemplate": - if e.complexity.Mutation.CreateBulkCSVTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTemplate == nil { break } @@ -23591,10 +23574,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTrustCenterCompliance": - if e.complexity.Mutation.CreateBulkCSVTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterCompliance == nil { break } @@ -23603,10 +23586,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTrustCenterCompliance(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterCompliance(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTrustCenterDoc": - if e.complexity.Mutation.CreateBulkCSVTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterDoc == nil { break } @@ -23615,10 +23598,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTrustCenterDoc(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterDoc(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTrustCenterEntity": - if e.complexity.Mutation.CreateBulkCSVTrustCenterEntity == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterEntity == nil { break } @@ -23627,10 +23610,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTrustCenterEntity(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterEntity(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTrustCenterFAQ": - if e.complexity.Mutation.CreateBulkCSVTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterFaq == nil { break } @@ -23639,10 +23622,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTrustCenterFaq(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterFaq(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTrustCenterNDARequest": - if e.complexity.Mutation.CreateBulkCSVTrustCenterNDARequest == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterNDARequest == nil { break } @@ -23651,10 +23634,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTrustCenterNDARequest(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterNDARequest(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVTrustCenterSubprocessor": - if e.complexity.Mutation.CreateBulkCSVTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterSubprocessor == nil { break } @@ -23663,10 +23646,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVTrustCenterSubprocessor(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVTrustCenterSubprocessor(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVUserSetting": - if e.complexity.Mutation.CreateBulkCSVUserSetting == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVUserSetting == nil { break } @@ -23675,10 +23658,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVUserSetting(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVUserSetting(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVVulnerability": - if e.complexity.Mutation.CreateBulkCSVVulnerability == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVVulnerability == nil { break } @@ -23687,10 +23670,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVVulnerability(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVVulnerability(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCSVWorkflowDefinition": - if e.complexity.Mutation.CreateBulkCSVWorkflowDefinition == nil { + if e.ComplexityRoot.Mutation.CreateBulkCSVWorkflowDefinition == nil { break } @@ -23699,10 +23682,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCSVWorkflowDefinition(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateBulkCSVWorkflowDefinition(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.createBulkCampaign": - if e.complexity.Mutation.CreateBulkCampaign == nil { + if e.ComplexityRoot.Mutation.CreateBulkCampaign == nil { break } @@ -23711,10 +23694,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCampaign(childComplexity, args["input"].([]*generated.CreateCampaignInput)), true + return e.ComplexityRoot.Mutation.CreateBulkCampaign(childComplexity, args["input"].([]*generated.CreateCampaignInput)), true case "Mutation.createBulkCampaignTarget": - if e.complexity.Mutation.CreateBulkCampaignTarget == nil { + if e.ComplexityRoot.Mutation.CreateBulkCampaignTarget == nil { break } @@ -23723,10 +23706,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCampaignTarget(childComplexity, args["input"].([]*generated.CreateCampaignTargetInput)), true + return e.ComplexityRoot.Mutation.CreateBulkCampaignTarget(childComplexity, args["input"].([]*generated.CreateCampaignTargetInput)), true case "Mutation.createBulkContact": - if e.complexity.Mutation.CreateBulkContact == nil { + if e.ComplexityRoot.Mutation.CreateBulkContact == nil { break } @@ -23735,10 +23718,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkContact(childComplexity, args["input"].([]*generated.CreateContactInput)), true + return e.ComplexityRoot.Mutation.CreateBulkContact(childComplexity, args["input"].([]*generated.CreateContactInput)), true case "Mutation.createBulkControl": - if e.complexity.Mutation.CreateBulkControl == nil { + if e.ComplexityRoot.Mutation.CreateBulkControl == nil { break } @@ -23747,10 +23730,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkControl(childComplexity, args["input"].([]*generated.CreateControlInput)), true + return e.ComplexityRoot.Mutation.CreateBulkControl(childComplexity, args["input"].([]*generated.CreateControlInput)), true case "Mutation.createBulkControlImplementation": - if e.complexity.Mutation.CreateBulkControlImplementation == nil { + if e.ComplexityRoot.Mutation.CreateBulkControlImplementation == nil { break } @@ -23759,10 +23742,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkControlImplementation(childComplexity, args["input"].([]*generated.CreateControlImplementationInput)), true + return e.ComplexityRoot.Mutation.CreateBulkControlImplementation(childComplexity, args["input"].([]*generated.CreateControlImplementationInput)), true case "Mutation.createBulkControlObjective": - if e.complexity.Mutation.CreateBulkControlObjective == nil { + if e.ComplexityRoot.Mutation.CreateBulkControlObjective == nil { break } @@ -23771,10 +23754,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkControlObjective(childComplexity, args["input"].([]*generated.CreateControlObjectiveInput)), true + return e.ComplexityRoot.Mutation.CreateBulkControlObjective(childComplexity, args["input"].([]*generated.CreateControlObjectiveInput)), true case "Mutation.createBulkCustomDomain": - if e.complexity.Mutation.CreateBulkCustomDomain == nil { + if e.ComplexityRoot.Mutation.CreateBulkCustomDomain == nil { break } @@ -23783,10 +23766,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCustomDomain(childComplexity, args["input"].([]*generated.CreateCustomDomainInput)), true + return e.ComplexityRoot.Mutation.CreateBulkCustomDomain(childComplexity, args["input"].([]*generated.CreateCustomDomainInput)), true case "Mutation.createBulkCustomTypeEnum": - if e.complexity.Mutation.CreateBulkCustomTypeEnum == nil { + if e.ComplexityRoot.Mutation.CreateBulkCustomTypeEnum == nil { break } @@ -23795,10 +23778,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkCustomTypeEnum(childComplexity, args["input"].([]*generated.CreateCustomTypeEnumInput)), true + return e.ComplexityRoot.Mutation.CreateBulkCustomTypeEnum(childComplexity, args["input"].([]*generated.CreateCustomTypeEnumInput)), true case "Mutation.createBulkDNSVerification": - if e.complexity.Mutation.CreateBulkDNSVerification == nil { + if e.ComplexityRoot.Mutation.CreateBulkDNSVerification == nil { break } @@ -23807,10 +23790,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkDNSVerification(childComplexity, args["input"].([]*generated.CreateDNSVerificationInput)), true + return e.ComplexityRoot.Mutation.CreateBulkDNSVerification(childComplexity, args["input"].([]*generated.CreateDNSVerificationInput)), true case "Mutation.createBulkDirectoryAccount": - if e.complexity.Mutation.CreateBulkDirectoryAccount == nil { + if e.ComplexityRoot.Mutation.CreateBulkDirectoryAccount == nil { break } @@ -23819,10 +23802,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkDirectoryAccount(childComplexity, args["input"].([]*generated.CreateDirectoryAccountInput)), true + return e.ComplexityRoot.Mutation.CreateBulkDirectoryAccount(childComplexity, args["input"].([]*generated.CreateDirectoryAccountInput)), true case "Mutation.createBulkDirectoryGroup": - if e.complexity.Mutation.CreateBulkDirectoryGroup == nil { + if e.ComplexityRoot.Mutation.CreateBulkDirectoryGroup == nil { break } @@ -23831,10 +23814,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkDirectoryGroup(childComplexity, args["input"].([]*generated.CreateDirectoryGroupInput)), true + return e.ComplexityRoot.Mutation.CreateBulkDirectoryGroup(childComplexity, args["input"].([]*generated.CreateDirectoryGroupInput)), true case "Mutation.createBulkDirectoryMembership": - if e.complexity.Mutation.CreateBulkDirectoryMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkDirectoryMembership == nil { break } @@ -23843,10 +23826,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkDirectoryMembership(childComplexity, args["input"].([]*generated.CreateDirectoryMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateBulkDirectoryMembership(childComplexity, args["input"].([]*generated.CreateDirectoryMembershipInput)), true case "Mutation.createBulkDirectorySyncRun": - if e.complexity.Mutation.CreateBulkDirectorySyncRun == nil { + if e.ComplexityRoot.Mutation.CreateBulkDirectorySyncRun == nil { break } @@ -23855,10 +23838,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkDirectorySyncRun(childComplexity, args["input"].([]*generated.CreateDirectorySyncRunInput)), true + return e.ComplexityRoot.Mutation.CreateBulkDirectorySyncRun(childComplexity, args["input"].([]*generated.CreateDirectorySyncRunInput)), true case "Mutation.createBulkDiscussion": - if e.complexity.Mutation.CreateBulkDiscussion == nil { + if e.ComplexityRoot.Mutation.CreateBulkDiscussion == nil { break } @@ -23867,10 +23850,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkDiscussion(childComplexity, args["input"].([]*generated.CreateDiscussionInput)), true + return e.ComplexityRoot.Mutation.CreateBulkDiscussion(childComplexity, args["input"].([]*generated.CreateDiscussionInput)), true case "Mutation.createBulkDocumentData": - if e.complexity.Mutation.CreateBulkDocumentData == nil { + if e.ComplexityRoot.Mutation.CreateBulkDocumentData == nil { break } @@ -23879,10 +23862,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkDocumentData(childComplexity, args["input"].([]*generated.CreateDocumentDataInput)), true + return e.ComplexityRoot.Mutation.CreateBulkDocumentData(childComplexity, args["input"].([]*generated.CreateDocumentDataInput)), true case "Mutation.createBulkEmailBranding": - if e.complexity.Mutation.CreateBulkEmailBranding == nil { + if e.ComplexityRoot.Mutation.CreateBulkEmailBranding == nil { break } @@ -23891,10 +23874,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkEmailBranding(childComplexity, args["input"].([]*generated.CreateEmailBrandingInput)), true + return e.ComplexityRoot.Mutation.CreateBulkEmailBranding(childComplexity, args["input"].([]*generated.CreateEmailBrandingInput)), true case "Mutation.createBulkEmailTemplate": - if e.complexity.Mutation.CreateBulkEmailTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkEmailTemplate == nil { break } @@ -23903,10 +23886,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkEmailTemplate(childComplexity, args["input"].([]*generated.CreateEmailTemplateInput)), true + return e.ComplexityRoot.Mutation.CreateBulkEmailTemplate(childComplexity, args["input"].([]*generated.CreateEmailTemplateInput)), true case "Mutation.createBulkEntity": - if e.complexity.Mutation.CreateBulkEntity == nil { + if e.ComplexityRoot.Mutation.CreateBulkEntity == nil { break } @@ -23915,10 +23898,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkEntity(childComplexity, args["input"].([]*generated.CreateEntityInput), args["entityTypeName"].(*string)), true + return e.ComplexityRoot.Mutation.CreateBulkEntity(childComplexity, args["input"].([]*generated.CreateEntityInput), args["entityTypeName"].(*string)), true case "Mutation.createBulkEntityType": - if e.complexity.Mutation.CreateBulkEntityType == nil { + if e.ComplexityRoot.Mutation.CreateBulkEntityType == nil { break } @@ -23927,10 +23910,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkEntityType(childComplexity, args["input"].([]*generated.CreateEntityTypeInput)), true + return e.ComplexityRoot.Mutation.CreateBulkEntityType(childComplexity, args["input"].([]*generated.CreateEntityTypeInput)), true case "Mutation.createBulkEvent": - if e.complexity.Mutation.CreateBulkEvent == nil { + if e.ComplexityRoot.Mutation.CreateBulkEvent == nil { break } @@ -23939,10 +23922,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkEvent(childComplexity, args["input"].([]*generated.CreateEventInput)), true + return e.ComplexityRoot.Mutation.CreateBulkEvent(childComplexity, args["input"].([]*generated.CreateEventInput)), true case "Mutation.createBulkEvidence": - if e.complexity.Mutation.CreateBulkEvidence == nil { + if e.ComplexityRoot.Mutation.CreateBulkEvidence == nil { break } @@ -23951,10 +23934,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkEvidence(childComplexity, args["input"].([]*generated.CreateEvidenceInput)), true + return e.ComplexityRoot.Mutation.CreateBulkEvidence(childComplexity, args["input"].([]*generated.CreateEvidenceInput)), true case "Mutation.createBulkFinding": - if e.complexity.Mutation.CreateBulkFinding == nil { + if e.ComplexityRoot.Mutation.CreateBulkFinding == nil { break } @@ -23963,10 +23946,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkFinding(childComplexity, args["input"].([]*generated.CreateFindingInput)), true + return e.ComplexityRoot.Mutation.CreateBulkFinding(childComplexity, args["input"].([]*generated.CreateFindingInput)), true case "Mutation.createBulkFindingControl": - if e.complexity.Mutation.CreateBulkFindingControl == nil { + if e.ComplexityRoot.Mutation.CreateBulkFindingControl == nil { break } @@ -23975,10 +23958,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkFindingControl(childComplexity, args["input"].([]*generated.CreateFindingControlInput)), true + return e.ComplexityRoot.Mutation.CreateBulkFindingControl(childComplexity, args["input"].([]*generated.CreateFindingControlInput)), true case "Mutation.createBulkGroup": - if e.complexity.Mutation.CreateBulkGroup == nil { + if e.ComplexityRoot.Mutation.CreateBulkGroup == nil { break } @@ -23987,10 +23970,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkGroup(childComplexity, args["input"].([]*generated.CreateGroupInput)), true + return e.ComplexityRoot.Mutation.CreateBulkGroup(childComplexity, args["input"].([]*generated.CreateGroupInput)), true case "Mutation.createBulkGroupMembership": - if e.complexity.Mutation.CreateBulkGroupMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkGroupMembership == nil { break } @@ -23999,10 +23982,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkGroupMembership(childComplexity, args["input"].([]*generated.CreateGroupMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateBulkGroupMembership(childComplexity, args["input"].([]*generated.CreateGroupMembershipInput)), true case "Mutation.createBulkGroupSetting": - if e.complexity.Mutation.CreateBulkGroupSetting == nil { + if e.ComplexityRoot.Mutation.CreateBulkGroupSetting == nil { break } @@ -24011,10 +23994,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkGroupSetting(childComplexity, args["input"].([]*generated.CreateGroupSettingInput)), true + return e.ComplexityRoot.Mutation.CreateBulkGroupSetting(childComplexity, args["input"].([]*generated.CreateGroupSettingInput)), true case "Mutation.createBulkHush": - if e.complexity.Mutation.CreateBulkHush == nil { + if e.ComplexityRoot.Mutation.CreateBulkHush == nil { break } @@ -24023,10 +24006,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkHush(childComplexity, args["input"].([]*generated.CreateHushInput)), true + return e.ComplexityRoot.Mutation.CreateBulkHush(childComplexity, args["input"].([]*generated.CreateHushInput)), true case "Mutation.createBulkIdentityHolder": - if e.complexity.Mutation.CreateBulkIdentityHolder == nil { + if e.ComplexityRoot.Mutation.CreateBulkIdentityHolder == nil { break } @@ -24035,10 +24018,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkIdentityHolder(childComplexity, args["input"].([]*generated.CreateIdentityHolderInput)), true + return e.ComplexityRoot.Mutation.CreateBulkIdentityHolder(childComplexity, args["input"].([]*generated.CreateIdentityHolderInput)), true case "Mutation.createBulkInternalPolicy": - if e.complexity.Mutation.CreateBulkInternalPolicy == nil { + if e.ComplexityRoot.Mutation.CreateBulkInternalPolicy == nil { break } @@ -24047,10 +24030,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkInternalPolicy(childComplexity, args["input"].([]*generated.CreateInternalPolicyInput)), true + return e.ComplexityRoot.Mutation.CreateBulkInternalPolicy(childComplexity, args["input"].([]*generated.CreateInternalPolicyInput)), true case "Mutation.createBulkInvite": - if e.complexity.Mutation.CreateBulkInvite == nil { + if e.ComplexityRoot.Mutation.CreateBulkInvite == nil { break } @@ -24059,10 +24042,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkInvite(childComplexity, args["input"].([]*generated.CreateInviteInput)), true + return e.ComplexityRoot.Mutation.CreateBulkInvite(childComplexity, args["input"].([]*generated.CreateInviteInput)), true case "Mutation.createBulkJobTemplate": - if e.complexity.Mutation.CreateBulkJobTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkJobTemplate == nil { break } @@ -24071,10 +24054,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkJobTemplate(childComplexity, args["input"].([]*generated.CreateJobTemplateInput)), true + return e.ComplexityRoot.Mutation.CreateBulkJobTemplate(childComplexity, args["input"].([]*generated.CreateJobTemplateInput)), true case "Mutation.createBulkMappableDomain": - if e.complexity.Mutation.CreateBulkMappableDomain == nil { + if e.ComplexityRoot.Mutation.CreateBulkMappableDomain == nil { break } @@ -24083,10 +24066,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkMappableDomain(childComplexity, args["input"].([]*generated.CreateMappableDomainInput)), true + return e.ComplexityRoot.Mutation.CreateBulkMappableDomain(childComplexity, args["input"].([]*generated.CreateMappableDomainInput)), true case "Mutation.createBulkMappedControl": - if e.complexity.Mutation.CreateBulkMappedControl == nil { + if e.ComplexityRoot.Mutation.CreateBulkMappedControl == nil { break } @@ -24095,10 +24078,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkMappedControl(childComplexity, args["input"].([]*generated.CreateMappedControlInput)), true + return e.ComplexityRoot.Mutation.CreateBulkMappedControl(childComplexity, args["input"].([]*generated.CreateMappedControlInput)), true case "Mutation.createBulkNarrative": - if e.complexity.Mutation.CreateBulkNarrative == nil { + if e.ComplexityRoot.Mutation.CreateBulkNarrative == nil { break } @@ -24107,10 +24090,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkNarrative(childComplexity, args["input"].([]*generated.CreateNarrativeInput)), true + return e.ComplexityRoot.Mutation.CreateBulkNarrative(childComplexity, args["input"].([]*generated.CreateNarrativeInput)), true case "Mutation.createBulkNotificationPreference": - if e.complexity.Mutation.CreateBulkNotificationPreference == nil { + if e.ComplexityRoot.Mutation.CreateBulkNotificationPreference == nil { break } @@ -24119,10 +24102,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkNotificationPreference(childComplexity, args["input"].([]*generated.CreateNotificationPreferenceInput)), true + return e.ComplexityRoot.Mutation.CreateBulkNotificationPreference(childComplexity, args["input"].([]*generated.CreateNotificationPreferenceInput)), true case "Mutation.createBulkNotificationTemplate": - if e.complexity.Mutation.CreateBulkNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkNotificationTemplate == nil { break } @@ -24131,10 +24114,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkNotificationTemplate(childComplexity, args["input"].([]*generated.CreateNotificationTemplateInput)), true + return e.ComplexityRoot.Mutation.CreateBulkNotificationTemplate(childComplexity, args["input"].([]*generated.CreateNotificationTemplateInput)), true case "Mutation.createBulkOrgMembership": - if e.complexity.Mutation.CreateBulkOrgMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkOrgMembership == nil { break } @@ -24143,10 +24126,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkOrgMembership(childComplexity, args["input"].([]*generated.CreateOrgMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateBulkOrgMembership(childComplexity, args["input"].([]*generated.CreateOrgMembershipInput)), true case "Mutation.createBulkOrganizationSetting": - if e.complexity.Mutation.CreateBulkOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.CreateBulkOrganizationSetting == nil { break } @@ -24155,10 +24138,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkOrganizationSetting(childComplexity, args["input"].([]*generated.CreateOrganizationSettingInput)), true + return e.ComplexityRoot.Mutation.CreateBulkOrganizationSetting(childComplexity, args["input"].([]*generated.CreateOrganizationSettingInput)), true case "Mutation.createBulkPlatform": - if e.complexity.Mutation.CreateBulkPlatform == nil { + if e.ComplexityRoot.Mutation.CreateBulkPlatform == nil { break } @@ -24167,10 +24150,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkPlatform(childComplexity, args["input"].([]*generated.CreatePlatformInput)), true + return e.ComplexityRoot.Mutation.CreateBulkPlatform(childComplexity, args["input"].([]*generated.CreatePlatformInput)), true case "Mutation.createBulkProcedure": - if e.complexity.Mutation.CreateBulkProcedure == nil { + if e.ComplexityRoot.Mutation.CreateBulkProcedure == nil { break } @@ -24179,10 +24162,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkProcedure(childComplexity, args["input"].([]*generated.CreateProcedureInput)), true + return e.ComplexityRoot.Mutation.CreateBulkProcedure(childComplexity, args["input"].([]*generated.CreateProcedureInput)), true case "Mutation.createBulkProgram": - if e.complexity.Mutation.CreateBulkProgram == nil { + if e.ComplexityRoot.Mutation.CreateBulkProgram == nil { break } @@ -24191,10 +24174,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkProgram(childComplexity, args["input"].([]*generated.CreateProgramInput)), true + return e.ComplexityRoot.Mutation.CreateBulkProgram(childComplexity, args["input"].([]*generated.CreateProgramInput)), true case "Mutation.createBulkProgramMembership": - if e.complexity.Mutation.CreateBulkProgramMembership == nil { + if e.ComplexityRoot.Mutation.CreateBulkProgramMembership == nil { break } @@ -24203,10 +24186,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkProgramMembership(childComplexity, args["input"].([]*generated.CreateProgramMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateBulkProgramMembership(childComplexity, args["input"].([]*generated.CreateProgramMembershipInput)), true case "Mutation.createBulkRemediation": - if e.complexity.Mutation.CreateBulkRemediation == nil { + if e.ComplexityRoot.Mutation.CreateBulkRemediation == nil { break } @@ -24215,10 +24198,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkRemediation(childComplexity, args["input"].([]*generated.CreateRemediationInput)), true + return e.ComplexityRoot.Mutation.CreateBulkRemediation(childComplexity, args["input"].([]*generated.CreateRemediationInput)), true case "Mutation.createBulkReview": - if e.complexity.Mutation.CreateBulkReview == nil { + if e.ComplexityRoot.Mutation.CreateBulkReview == nil { break } @@ -24227,10 +24210,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkReview(childComplexity, args["input"].([]*generated.CreateReviewInput)), true + return e.ComplexityRoot.Mutation.CreateBulkReview(childComplexity, args["input"].([]*generated.CreateReviewInput)), true case "Mutation.createBulkRisk": - if e.complexity.Mutation.CreateBulkRisk == nil { + if e.ComplexityRoot.Mutation.CreateBulkRisk == nil { break } @@ -24239,10 +24222,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkRisk(childComplexity, args["input"].([]*generated.CreateRiskInput)), true + return e.ComplexityRoot.Mutation.CreateBulkRisk(childComplexity, args["input"].([]*generated.CreateRiskInput)), true case "Mutation.createBulkScan": - if e.complexity.Mutation.CreateBulkScan == nil { + if e.ComplexityRoot.Mutation.CreateBulkScan == nil { break } @@ -24251,10 +24234,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkScan(childComplexity, args["input"].([]*generated.CreateScanInput)), true + return e.ComplexityRoot.Mutation.CreateBulkScan(childComplexity, args["input"].([]*generated.CreateScanInput)), true case "Mutation.createBulkScheduledJob": - if e.complexity.Mutation.CreateBulkScheduledJob == nil { + if e.ComplexityRoot.Mutation.CreateBulkScheduledJob == nil { break } @@ -24263,10 +24246,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkScheduledJob(childComplexity, args["input"].([]*generated.CreateScheduledJobInput)), true + return e.ComplexityRoot.Mutation.CreateBulkScheduledJob(childComplexity, args["input"].([]*generated.CreateScheduledJobInput)), true case "Mutation.createBulkSubcontrol": - if e.complexity.Mutation.CreateBulkSubcontrol == nil { + if e.ComplexityRoot.Mutation.CreateBulkSubcontrol == nil { break } @@ -24275,10 +24258,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkSubcontrol(childComplexity, args["input"].([]*generated.CreateSubcontrolInput)), true + return e.ComplexityRoot.Mutation.CreateBulkSubcontrol(childComplexity, args["input"].([]*generated.CreateSubcontrolInput)), true case "Mutation.createBulkSubprocessor": - if e.complexity.Mutation.CreateBulkSubprocessor == nil { + if e.ComplexityRoot.Mutation.CreateBulkSubprocessor == nil { break } @@ -24287,10 +24270,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkSubprocessor(childComplexity, args["input"].([]*generated.CreateSubprocessorInput)), true + return e.ComplexityRoot.Mutation.CreateBulkSubprocessor(childComplexity, args["input"].([]*generated.CreateSubprocessorInput)), true case "Mutation.createBulkSubscriber": - if e.complexity.Mutation.CreateBulkSubscriber == nil { + if e.ComplexityRoot.Mutation.CreateBulkSubscriber == nil { break } @@ -24299,10 +24282,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkSubscriber(childComplexity, args["input"].([]*generated.CreateSubscriberInput)), true + return e.ComplexityRoot.Mutation.CreateBulkSubscriber(childComplexity, args["input"].([]*generated.CreateSubscriberInput)), true case "Mutation.createBulkTagDefinition": - if e.complexity.Mutation.CreateBulkTagDefinition == nil { + if e.ComplexityRoot.Mutation.CreateBulkTagDefinition == nil { break } @@ -24311,10 +24294,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTagDefinition(childComplexity, args["input"].([]*generated.CreateTagDefinitionInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTagDefinition(childComplexity, args["input"].([]*generated.CreateTagDefinitionInput)), true case "Mutation.createBulkTask": - if e.complexity.Mutation.CreateBulkTask == nil { + if e.ComplexityRoot.Mutation.CreateBulkTask == nil { break } @@ -24323,10 +24306,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTask(childComplexity, args["input"].([]*generated.CreateTaskInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTask(childComplexity, args["input"].([]*generated.CreateTaskInput)), true case "Mutation.createBulkTemplate": - if e.complexity.Mutation.CreateBulkTemplate == nil { + if e.ComplexityRoot.Mutation.CreateBulkTemplate == nil { break } @@ -24335,10 +24318,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTemplate(childComplexity, args["input"].([]*generated.CreateTemplateInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTemplate(childComplexity, args["input"].([]*generated.CreateTemplateInput)), true case "Mutation.createBulkTrustCenterCompliance": - if e.complexity.Mutation.CreateBulkTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.CreateBulkTrustCenterCompliance == nil { break } @@ -24347,10 +24330,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTrustCenterCompliance(childComplexity, args["input"].([]*generated.CreateTrustCenterComplianceInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTrustCenterCompliance(childComplexity, args["input"].([]*generated.CreateTrustCenterComplianceInput)), true case "Mutation.createBulkTrustCenterDoc": - if e.complexity.Mutation.CreateBulkTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.CreateBulkTrustCenterDoc == nil { break } @@ -24359,10 +24342,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTrustCenterDoc(childComplexity, args["input"].([]*generated.CreateTrustCenterDocInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTrustCenterDoc(childComplexity, args["input"].([]*generated.CreateTrustCenterDocInput)), true case "Mutation.createBulkTrustCenterEntity": - if e.complexity.Mutation.CreateBulkTrustCenterEntity == nil { + if e.ComplexityRoot.Mutation.CreateBulkTrustCenterEntity == nil { break } @@ -24371,10 +24354,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTrustCenterEntity(childComplexity, args["input"].([]*generated.CreateTrustCenterEntityInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTrustCenterEntity(childComplexity, args["input"].([]*generated.CreateTrustCenterEntityInput)), true case "Mutation.createBulkTrustCenterFAQ": - if e.complexity.Mutation.CreateBulkTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.CreateBulkTrustCenterFaq == nil { break } @@ -24383,10 +24366,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTrustCenterFaq(childComplexity, args["input"].([]*generated.CreateTrustCenterFAQInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTrustCenterFaq(childComplexity, args["input"].([]*generated.CreateTrustCenterFAQInput)), true case "Mutation.createBulkTrustCenterNDARequest": - if e.complexity.Mutation.CreateBulkTrustCenterNDARequest == nil { + if e.ComplexityRoot.Mutation.CreateBulkTrustCenterNDARequest == nil { break } @@ -24395,10 +24378,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTrustCenterNDARequest(childComplexity, args["input"].([]*generated.CreateTrustCenterNDARequestInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTrustCenterNDARequest(childComplexity, args["input"].([]*generated.CreateTrustCenterNDARequestInput)), true case "Mutation.createBulkTrustCenterSubprocessor": - if e.complexity.Mutation.CreateBulkTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.CreateBulkTrustCenterSubprocessor == nil { break } @@ -24407,10 +24390,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkTrustCenterSubprocessor(childComplexity, args["input"].([]*generated.CreateTrustCenterSubprocessorInput)), true + return e.ComplexityRoot.Mutation.CreateBulkTrustCenterSubprocessor(childComplexity, args["input"].([]*generated.CreateTrustCenterSubprocessorInput)), true case "Mutation.createBulkUserSetting": - if e.complexity.Mutation.CreateBulkUserSetting == nil { + if e.ComplexityRoot.Mutation.CreateBulkUserSetting == nil { break } @@ -24419,10 +24402,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkUserSetting(childComplexity, args["input"].([]*generated.CreateUserSettingInput)), true + return e.ComplexityRoot.Mutation.CreateBulkUserSetting(childComplexity, args["input"].([]*generated.CreateUserSettingInput)), true case "Mutation.createBulkVulnerability": - if e.complexity.Mutation.CreateBulkVulnerability == nil { + if e.ComplexityRoot.Mutation.CreateBulkVulnerability == nil { break } @@ -24431,10 +24414,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkVulnerability(childComplexity, args["input"].([]*generated.CreateVulnerabilityInput)), true + return e.ComplexityRoot.Mutation.CreateBulkVulnerability(childComplexity, args["input"].([]*generated.CreateVulnerabilityInput)), true case "Mutation.createBulkWorkflowDefinition": - if e.complexity.Mutation.CreateBulkWorkflowDefinition == nil { + if e.ComplexityRoot.Mutation.CreateBulkWorkflowDefinition == nil { break } @@ -24443,10 +24426,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateBulkWorkflowDefinition(childComplexity, args["input"].([]*generated.CreateWorkflowDefinitionInput)), true + return e.ComplexityRoot.Mutation.CreateBulkWorkflowDefinition(childComplexity, args["input"].([]*generated.CreateWorkflowDefinitionInput)), true case "Mutation.createCampaign": - if e.complexity.Mutation.CreateCampaign == nil { + if e.ComplexityRoot.Mutation.CreateCampaign == nil { break } @@ -24455,10 +24438,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateCampaign(childComplexity, args["input"].(generated.CreateCampaignInput)), true + return e.ComplexityRoot.Mutation.CreateCampaign(childComplexity, args["input"].(generated.CreateCampaignInput)), true case "Mutation.createCampaignTarget": - if e.complexity.Mutation.CreateCampaignTarget == nil { + if e.ComplexityRoot.Mutation.CreateCampaignTarget == nil { break } @@ -24467,10 +24450,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateCampaignTarget(childComplexity, args["input"].(generated.CreateCampaignTargetInput)), true + return e.ComplexityRoot.Mutation.CreateCampaignTarget(childComplexity, args["input"].(generated.CreateCampaignTargetInput)), true case "Mutation.createCampaignWithTargets": - if e.complexity.Mutation.CreateCampaignWithTargets == nil { + if e.ComplexityRoot.Mutation.CreateCampaignWithTargets == nil { break } @@ -24479,10 +24462,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateCampaignWithTargets(childComplexity, args["input"].(model.CreateCampaignWithTargetsInput)), true + return e.ComplexityRoot.Mutation.CreateCampaignWithTargets(childComplexity, args["input"].(model.CreateCampaignWithTargetsInput)), true case "Mutation.createCampaignWithTargetsCSV": - if e.complexity.Mutation.CreateCampaignWithTargetsCSV == nil { + if e.ComplexityRoot.Mutation.CreateCampaignWithTargetsCSV == nil { break } @@ -24491,10 +24474,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateCampaignWithTargetsCSV(childComplexity, args["campaign"].(generated.CreateCampaignInput), args["targets"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateCampaignWithTargetsCSV(childComplexity, args["campaign"].(generated.CreateCampaignInput), args["targets"].(graphql.Upload)), true case "Mutation.createContact": - if e.complexity.Mutation.CreateContact == nil { + if e.ComplexityRoot.Mutation.CreateContact == nil { break } @@ -24503,10 +24486,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateContact(childComplexity, args["input"].(generated.CreateContactInput)), true + return e.ComplexityRoot.Mutation.CreateContact(childComplexity, args["input"].(generated.CreateContactInput)), true case "Mutation.createControl": - if e.complexity.Mutation.CreateControl == nil { + if e.ComplexityRoot.Mutation.CreateControl == nil { break } @@ -24515,10 +24498,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateControl(childComplexity, args["input"].(generated.CreateControlInput)), true + return e.ComplexityRoot.Mutation.CreateControl(childComplexity, args["input"].(generated.CreateControlInput)), true case "Mutation.createControlImplementation": - if e.complexity.Mutation.CreateControlImplementation == nil { + if e.ComplexityRoot.Mutation.CreateControlImplementation == nil { break } @@ -24527,10 +24510,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateControlImplementation(childComplexity, args["input"].(generated.CreateControlImplementationInput)), true + return e.ComplexityRoot.Mutation.CreateControlImplementation(childComplexity, args["input"].(generated.CreateControlImplementationInput)), true case "Mutation.createControlObjective": - if e.complexity.Mutation.CreateControlObjective == nil { + if e.ComplexityRoot.Mutation.CreateControlObjective == nil { break } @@ -24539,10 +24522,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateControlObjective(childComplexity, args["input"].(generated.CreateControlObjectiveInput)), true + return e.ComplexityRoot.Mutation.CreateControlObjective(childComplexity, args["input"].(generated.CreateControlObjectiveInput)), true case "Mutation.createControlWithSubcontrols": - if e.complexity.Mutation.CreateControlWithSubcontrols == nil { + if e.ComplexityRoot.Mutation.CreateControlWithSubcontrols == nil { break } @@ -24551,10 +24534,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateControlWithSubcontrols(childComplexity, args["input"].(model.CreateControlWithSubcontrolsInput)), true + return e.ComplexityRoot.Mutation.CreateControlWithSubcontrols(childComplexity, args["input"].(model.CreateControlWithSubcontrolsInput)), true case "Mutation.createControlsByClone": - if e.complexity.Mutation.CreateControlsByClone == nil { + if e.ComplexityRoot.Mutation.CreateControlsByClone == nil { break } @@ -24563,10 +24546,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateControlsByClone(childComplexity, args["input"].(*model.CloneControlInput)), true + return e.ComplexityRoot.Mutation.CreateControlsByClone(childComplexity, args["input"].(*model.CloneControlInput)), true case "Mutation.createCustomDomain": - if e.complexity.Mutation.CreateCustomDomain == nil { + if e.ComplexityRoot.Mutation.CreateCustomDomain == nil { break } @@ -24575,10 +24558,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateCustomDomain(childComplexity, args["input"].(generated.CreateCustomDomainInput)), true + return e.ComplexityRoot.Mutation.CreateCustomDomain(childComplexity, args["input"].(generated.CreateCustomDomainInput)), true case "Mutation.createCustomTypeEnum": - if e.complexity.Mutation.CreateCustomTypeEnum == nil { + if e.ComplexityRoot.Mutation.CreateCustomTypeEnum == nil { break } @@ -24587,10 +24570,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateCustomTypeEnum(childComplexity, args["input"].(generated.CreateCustomTypeEnumInput)), true + return e.ComplexityRoot.Mutation.CreateCustomTypeEnum(childComplexity, args["input"].(generated.CreateCustomTypeEnumInput)), true case "Mutation.createDNSVerification": - if e.complexity.Mutation.CreateDNSVerification == nil { + if e.ComplexityRoot.Mutation.CreateDNSVerification == nil { break } @@ -24599,10 +24582,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateDNSVerification(childComplexity, args["input"].(generated.CreateDNSVerificationInput)), true + return e.ComplexityRoot.Mutation.CreateDNSVerification(childComplexity, args["input"].(generated.CreateDNSVerificationInput)), true case "Mutation.createDirectoryAccount": - if e.complexity.Mutation.CreateDirectoryAccount == nil { + if e.ComplexityRoot.Mutation.CreateDirectoryAccount == nil { break } @@ -24611,10 +24594,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateDirectoryAccount(childComplexity, args["input"].(generated.CreateDirectoryAccountInput)), true + return e.ComplexityRoot.Mutation.CreateDirectoryAccount(childComplexity, args["input"].(generated.CreateDirectoryAccountInput)), true case "Mutation.createDirectoryGroup": - if e.complexity.Mutation.CreateDirectoryGroup == nil { + if e.ComplexityRoot.Mutation.CreateDirectoryGroup == nil { break } @@ -24623,10 +24606,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateDirectoryGroup(childComplexity, args["input"].(generated.CreateDirectoryGroupInput)), true + return e.ComplexityRoot.Mutation.CreateDirectoryGroup(childComplexity, args["input"].(generated.CreateDirectoryGroupInput)), true case "Mutation.createDirectoryMembership": - if e.complexity.Mutation.CreateDirectoryMembership == nil { + if e.ComplexityRoot.Mutation.CreateDirectoryMembership == nil { break } @@ -24635,10 +24618,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateDirectoryMembership(childComplexity, args["input"].(generated.CreateDirectoryMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateDirectoryMembership(childComplexity, args["input"].(generated.CreateDirectoryMembershipInput)), true case "Mutation.createDirectorySyncRun": - if e.complexity.Mutation.CreateDirectorySyncRun == nil { + if e.ComplexityRoot.Mutation.CreateDirectorySyncRun == nil { break } @@ -24647,10 +24630,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateDirectorySyncRun(childComplexity, args["input"].(generated.CreateDirectorySyncRunInput)), true + return e.ComplexityRoot.Mutation.CreateDirectorySyncRun(childComplexity, args["input"].(generated.CreateDirectorySyncRunInput)), true case "Mutation.createDiscussion": - if e.complexity.Mutation.CreateDiscussion == nil { + if e.ComplexityRoot.Mutation.CreateDiscussion == nil { break } @@ -24659,10 +24642,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateDiscussion(childComplexity, args["input"].(generated.CreateDiscussionInput)), true + return e.ComplexityRoot.Mutation.CreateDiscussion(childComplexity, args["input"].(generated.CreateDiscussionInput)), true case "Mutation.createDocumentData": - if e.complexity.Mutation.CreateDocumentData == nil { + if e.ComplexityRoot.Mutation.CreateDocumentData == nil { break } @@ -24671,10 +24654,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateDocumentData(childComplexity, args["input"].(generated.CreateDocumentDataInput)), true + return e.ComplexityRoot.Mutation.CreateDocumentData(childComplexity, args["input"].(generated.CreateDocumentDataInput)), true case "Mutation.createEmailBranding": - if e.complexity.Mutation.CreateEmailBranding == nil { + if e.ComplexityRoot.Mutation.CreateEmailBranding == nil { break } @@ -24683,10 +24666,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateEmailBranding(childComplexity, args["input"].(generated.CreateEmailBrandingInput)), true + return e.ComplexityRoot.Mutation.CreateEmailBranding(childComplexity, args["input"].(generated.CreateEmailBrandingInput)), true case "Mutation.createEmailTemplate": - if e.complexity.Mutation.CreateEmailTemplate == nil { + if e.ComplexityRoot.Mutation.CreateEmailTemplate == nil { break } @@ -24695,10 +24678,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateEmailTemplate(childComplexity, args["input"].(generated.CreateEmailTemplateInput)), true + return e.ComplexityRoot.Mutation.CreateEmailTemplate(childComplexity, args["input"].(generated.CreateEmailTemplateInput)), true case "Mutation.createEntity": - if e.complexity.Mutation.CreateEntity == nil { + if e.ComplexityRoot.Mutation.CreateEntity == nil { break } @@ -24707,10 +24690,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateEntity(childComplexity, args["input"].(generated.CreateEntityInput), args["entityTypeName"].(*string)), true + return e.ComplexityRoot.Mutation.CreateEntity(childComplexity, args["input"].(generated.CreateEntityInput), args["entityTypeName"].(*string)), true case "Mutation.createEntityType": - if e.complexity.Mutation.CreateEntityType == nil { + if e.ComplexityRoot.Mutation.CreateEntityType == nil { break } @@ -24719,10 +24702,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateEntityType(childComplexity, args["input"].(generated.CreateEntityTypeInput)), true + return e.ComplexityRoot.Mutation.CreateEntityType(childComplexity, args["input"].(generated.CreateEntityTypeInput)), true case "Mutation.createEvent": - if e.complexity.Mutation.CreateEvent == nil { + if e.ComplexityRoot.Mutation.CreateEvent == nil { break } @@ -24731,10 +24714,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateEvent(childComplexity, args["input"].(generated.CreateEventInput)), true + return e.ComplexityRoot.Mutation.CreateEvent(childComplexity, args["input"].(generated.CreateEventInput)), true case "Mutation.createEvidence": - if e.complexity.Mutation.CreateEvidence == nil { + if e.ComplexityRoot.Mutation.CreateEvidence == nil { break } @@ -24743,10 +24726,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateEvidence(childComplexity, args["input"].(generated.CreateEvidenceInput), args["evidenceFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateEvidence(childComplexity, args["input"].(generated.CreateEvidenceInput), args["evidenceFiles"].([]*graphql.Upload)), true case "Mutation.createExport": - if e.complexity.Mutation.CreateExport == nil { + if e.ComplexityRoot.Mutation.CreateExport == nil { break } @@ -24755,10 +24738,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateExport(childComplexity, args["input"].(generated.CreateExportInput)), true + return e.ComplexityRoot.Mutation.CreateExport(childComplexity, args["input"].(generated.CreateExportInput)), true case "Mutation.createFinding": - if e.complexity.Mutation.CreateFinding == nil { + if e.ComplexityRoot.Mutation.CreateFinding == nil { break } @@ -24767,10 +24750,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateFinding(childComplexity, args["input"].(generated.CreateFindingInput)), true + return e.ComplexityRoot.Mutation.CreateFinding(childComplexity, args["input"].(generated.CreateFindingInput)), true case "Mutation.createFindingControl": - if e.complexity.Mutation.CreateFindingControl == nil { + if e.ComplexityRoot.Mutation.CreateFindingControl == nil { break } @@ -24779,10 +24762,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateFindingControl(childComplexity, args["input"].(generated.CreateFindingControlInput)), true + return e.ComplexityRoot.Mutation.CreateFindingControl(childComplexity, args["input"].(generated.CreateFindingControlInput)), true case "Mutation.createFullProgram": - if e.complexity.Mutation.CreateFullProgram == nil { + if e.ComplexityRoot.Mutation.CreateFullProgram == nil { break } @@ -24791,10 +24774,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateFullProgram(childComplexity, args["input"].(model.CreateFullProgramInput)), true + return e.ComplexityRoot.Mutation.CreateFullProgram(childComplexity, args["input"].(model.CreateFullProgramInput)), true case "Mutation.createGroup": - if e.complexity.Mutation.CreateGroup == nil { + if e.ComplexityRoot.Mutation.CreateGroup == nil { break } @@ -24803,10 +24786,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateGroup(childComplexity, args["input"].(generated.CreateGroupInput)), true + return e.ComplexityRoot.Mutation.CreateGroup(childComplexity, args["input"].(generated.CreateGroupInput)), true case "Mutation.createGroupByClone": - if e.complexity.Mutation.CreateGroupByClone == nil { + if e.ComplexityRoot.Mutation.CreateGroupByClone == nil { break } @@ -24815,10 +24798,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateGroupByClone(childComplexity, args["groupInput"].(generated.CreateGroupInput), args["members"].([]*model.GroupMembersInput), args["inheritGroupPermissions"].(*string), args["cloneGroupMembers"].(*string)), true + return e.ComplexityRoot.Mutation.CreateGroupByClone(childComplexity, args["groupInput"].(generated.CreateGroupInput), args["members"].([]*model.GroupMembersInput), args["inheritGroupPermissions"].(*string), args["cloneGroupMembers"].(*string)), true case "Mutation.createGroupMembership": - if e.complexity.Mutation.CreateGroupMembership == nil { + if e.ComplexityRoot.Mutation.CreateGroupMembership == nil { break } @@ -24827,10 +24810,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateGroupMembership(childComplexity, args["input"].(generated.CreateGroupMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateGroupMembership(childComplexity, args["input"].(generated.CreateGroupMembershipInput)), true case "Mutation.createGroupSetting": - if e.complexity.Mutation.CreateGroupSetting == nil { + if e.ComplexityRoot.Mutation.CreateGroupSetting == nil { break } @@ -24839,10 +24822,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateGroupSetting(childComplexity, args["input"].(generated.CreateGroupSettingInput)), true + return e.ComplexityRoot.Mutation.CreateGroupSetting(childComplexity, args["input"].(generated.CreateGroupSettingInput)), true case "Mutation.createGroupWithMembers": - if e.complexity.Mutation.CreateGroupWithMembers == nil { + if e.ComplexityRoot.Mutation.CreateGroupWithMembers == nil { break } @@ -24851,10 +24834,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateGroupWithMembers(childComplexity, args["groupInput"].(generated.CreateGroupInput), args["members"].([]*model.GroupMembersInput)), true + return e.ComplexityRoot.Mutation.CreateGroupWithMembers(childComplexity, args["groupInput"].(generated.CreateGroupInput), args["members"].([]*model.GroupMembersInput)), true case "Mutation.createHush": - if e.complexity.Mutation.CreateHush == nil { + if e.ComplexityRoot.Mutation.CreateHush == nil { break } @@ -24863,10 +24846,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateHush(childComplexity, args["input"].(generated.CreateHushInput)), true + return e.ComplexityRoot.Mutation.CreateHush(childComplexity, args["input"].(generated.CreateHushInput)), true case "Mutation.createIdentityHolder": - if e.complexity.Mutation.CreateIdentityHolder == nil { + if e.ComplexityRoot.Mutation.CreateIdentityHolder == nil { break } @@ -24875,10 +24858,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateIdentityHolder(childComplexity, args["input"].(generated.CreateIdentityHolderInput)), true + return e.ComplexityRoot.Mutation.CreateIdentityHolder(childComplexity, args["input"].(generated.CreateIdentityHolderInput)), true case "Mutation.createInternalPolicy": - if e.complexity.Mutation.CreateInternalPolicy == nil { + if e.ComplexityRoot.Mutation.CreateInternalPolicy == nil { break } @@ -24887,10 +24870,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateInternalPolicy(childComplexity, args["input"].(generated.CreateInternalPolicyInput)), true + return e.ComplexityRoot.Mutation.CreateInternalPolicy(childComplexity, args["input"].(generated.CreateInternalPolicyInput)), true case "Mutation.createInvite": - if e.complexity.Mutation.CreateInvite == nil { + if e.ComplexityRoot.Mutation.CreateInvite == nil { break } @@ -24899,10 +24882,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateInvite(childComplexity, args["input"].(generated.CreateInviteInput)), true + return e.ComplexityRoot.Mutation.CreateInvite(childComplexity, args["input"].(generated.CreateInviteInput)), true case "Mutation.createJobResult": - if e.complexity.Mutation.CreateJobResult == nil { + if e.ComplexityRoot.Mutation.CreateJobResult == nil { break } @@ -24911,10 +24894,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateJobResult(childComplexity, args["input"].(generated.CreateJobResultInput), args["jobResultFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateJobResult(childComplexity, args["input"].(generated.CreateJobResultInput), args["jobResultFiles"].([]*graphql.Upload)), true case "Mutation.createJobRunner": - if e.complexity.Mutation.CreateJobRunner == nil { + if e.ComplexityRoot.Mutation.CreateJobRunner == nil { break } @@ -24923,10 +24906,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateJobRunner(childComplexity, args["input"].(generated.CreateJobRunnerInput)), true + return e.ComplexityRoot.Mutation.CreateJobRunner(childComplexity, args["input"].(generated.CreateJobRunnerInput)), true case "Mutation.createJobRunnerRegistrationToken": - if e.complexity.Mutation.CreateJobRunnerRegistrationToken == nil { + if e.ComplexityRoot.Mutation.CreateJobRunnerRegistrationToken == nil { break } @@ -24935,10 +24918,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateJobRunnerRegistrationToken(childComplexity, args["input"].(generated.CreateJobRunnerRegistrationTokenInput)), true + return e.ComplexityRoot.Mutation.CreateJobRunnerRegistrationToken(childComplexity, args["input"].(generated.CreateJobRunnerRegistrationTokenInput)), true case "Mutation.createJobRunnerToken": - if e.complexity.Mutation.CreateJobRunnerToken == nil { + if e.ComplexityRoot.Mutation.CreateJobRunnerToken == nil { break } @@ -24947,10 +24930,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateJobRunnerToken(childComplexity, args["input"].(generated.CreateJobRunnerTokenInput)), true + return e.ComplexityRoot.Mutation.CreateJobRunnerToken(childComplexity, args["input"].(generated.CreateJobRunnerTokenInput)), true case "Mutation.createJobTemplate": - if e.complexity.Mutation.CreateJobTemplate == nil { + if e.ComplexityRoot.Mutation.CreateJobTemplate == nil { break } @@ -24959,10 +24942,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateJobTemplate(childComplexity, args["input"].(generated.CreateJobTemplateInput)), true + return e.ComplexityRoot.Mutation.CreateJobTemplate(childComplexity, args["input"].(generated.CreateJobTemplateInput)), true case "Mutation.createMappableDomain": - if e.complexity.Mutation.CreateMappableDomain == nil { + if e.ComplexityRoot.Mutation.CreateMappableDomain == nil { break } @@ -24971,10 +24954,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateMappableDomain(childComplexity, args["input"].(generated.CreateMappableDomainInput)), true + return e.ComplexityRoot.Mutation.CreateMappableDomain(childComplexity, args["input"].(generated.CreateMappableDomainInput)), true case "Mutation.createMappedControl": - if e.complexity.Mutation.CreateMappedControl == nil { + if e.ComplexityRoot.Mutation.CreateMappedControl == nil { break } @@ -24983,10 +24966,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateMappedControl(childComplexity, args["input"].(generated.CreateMappedControlInput)), true + return e.ComplexityRoot.Mutation.CreateMappedControl(childComplexity, args["input"].(generated.CreateMappedControlInput)), true case "Mutation.createNarrative": - if e.complexity.Mutation.CreateNarrative == nil { + if e.ComplexityRoot.Mutation.CreateNarrative == nil { break } @@ -24995,10 +24978,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateNarrative(childComplexity, args["input"].(generated.CreateNarrativeInput)), true + return e.ComplexityRoot.Mutation.CreateNarrative(childComplexity, args["input"].(generated.CreateNarrativeInput)), true case "Mutation.createNotificationPreference": - if e.complexity.Mutation.CreateNotificationPreference == nil { + if e.ComplexityRoot.Mutation.CreateNotificationPreference == nil { break } @@ -25007,10 +24990,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateNotificationPreference(childComplexity, args["input"].(generated.CreateNotificationPreferenceInput)), true + return e.ComplexityRoot.Mutation.CreateNotificationPreference(childComplexity, args["input"].(generated.CreateNotificationPreferenceInput)), true case "Mutation.createNotificationTemplate": - if e.complexity.Mutation.CreateNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.CreateNotificationTemplate == nil { break } @@ -25019,10 +25002,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateNotificationTemplate(childComplexity, args["input"].(generated.CreateNotificationTemplateInput)), true + return e.ComplexityRoot.Mutation.CreateNotificationTemplate(childComplexity, args["input"].(generated.CreateNotificationTemplateInput)), true case "Mutation.createOnboarding": - if e.complexity.Mutation.CreateOnboarding == nil { + if e.ComplexityRoot.Mutation.CreateOnboarding == nil { break } @@ -25031,10 +25014,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateOnboarding(childComplexity, args["input"].(generated.CreateOnboardingInput)), true + return e.ComplexityRoot.Mutation.CreateOnboarding(childComplexity, args["input"].(generated.CreateOnboardingInput)), true case "Mutation.createOrgMembership": - if e.complexity.Mutation.CreateOrgMembership == nil { + if e.ComplexityRoot.Mutation.CreateOrgMembership == nil { break } @@ -25043,10 +25026,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateOrgMembership(childComplexity, args["input"].(generated.CreateOrgMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateOrgMembership(childComplexity, args["input"].(generated.CreateOrgMembershipInput)), true case "Mutation.createOrganization": - if e.complexity.Mutation.CreateOrganization == nil { + if e.ComplexityRoot.Mutation.CreateOrganization == nil { break } @@ -25055,10 +25038,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateOrganization(childComplexity, args["input"].(generated.CreateOrganizationInput), args["avatarFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateOrganization(childComplexity, args["input"].(generated.CreateOrganizationInput), args["avatarFile"].(*graphql.Upload)), true case "Mutation.createOrganizationSetting": - if e.complexity.Mutation.CreateOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.CreateOrganizationSetting == nil { break } @@ -25067,10 +25050,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateOrganizationSetting(childComplexity, args["input"].(generated.CreateOrganizationSettingInput)), true + return e.ComplexityRoot.Mutation.CreateOrganizationSetting(childComplexity, args["input"].(generated.CreateOrganizationSettingInput)), true case "Mutation.createOrganizationWithMembers": - if e.complexity.Mutation.CreateOrganizationWithMembers == nil { + if e.ComplexityRoot.Mutation.CreateOrganizationWithMembers == nil { break } @@ -25079,10 +25062,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateOrganizationWithMembers(childComplexity, args["organizationInput"].(generated.CreateOrganizationInput), args["avatarFile"].(*graphql.Upload), args["members"].([]*model.OrgMembersInput)), true + return e.ComplexityRoot.Mutation.CreateOrganizationWithMembers(childComplexity, args["organizationInput"].(generated.CreateOrganizationInput), args["avatarFile"].(*graphql.Upload), args["members"].([]*model.OrgMembersInput)), true case "Mutation.createPersonalAccessToken": - if e.complexity.Mutation.CreatePersonalAccessToken == nil { + if e.ComplexityRoot.Mutation.CreatePersonalAccessToken == nil { break } @@ -25091,10 +25074,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreatePersonalAccessToken(childComplexity, args["input"].(generated.CreatePersonalAccessTokenInput)), true + return e.ComplexityRoot.Mutation.CreatePersonalAccessToken(childComplexity, args["input"].(generated.CreatePersonalAccessTokenInput)), true case "Mutation.createPlatform": - if e.complexity.Mutation.CreatePlatform == nil { + if e.ComplexityRoot.Mutation.CreatePlatform == nil { break } @@ -25103,10 +25086,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreatePlatform(childComplexity, args["input"].(generated.CreatePlatformInput)), true + return e.ComplexityRoot.Mutation.CreatePlatform(childComplexity, args["input"].(generated.CreatePlatformInput)), true case "Mutation.createProcedure": - if e.complexity.Mutation.CreateProcedure == nil { + if e.ComplexityRoot.Mutation.CreateProcedure == nil { break } @@ -25115,10 +25098,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateProcedure(childComplexity, args["input"].(generated.CreateProcedureInput)), true + return e.ComplexityRoot.Mutation.CreateProcedure(childComplexity, args["input"].(generated.CreateProcedureInput)), true case "Mutation.createProgram": - if e.complexity.Mutation.CreateProgram == nil { + if e.ComplexityRoot.Mutation.CreateProgram == nil { break } @@ -25127,10 +25110,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateProgram(childComplexity, args["input"].(generated.CreateProgramInput)), true + return e.ComplexityRoot.Mutation.CreateProgram(childComplexity, args["input"].(generated.CreateProgramInput)), true case "Mutation.createProgramMembership": - if e.complexity.Mutation.CreateProgramMembership == nil { + if e.ComplexityRoot.Mutation.CreateProgramMembership == nil { break } @@ -25139,10 +25122,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateProgramMembership(childComplexity, args["input"].(generated.CreateProgramMembershipInput)), true + return e.ComplexityRoot.Mutation.CreateProgramMembership(childComplexity, args["input"].(generated.CreateProgramMembershipInput)), true case "Mutation.createProgramWithMembers": - if e.complexity.Mutation.CreateProgramWithMembers == nil { + if e.ComplexityRoot.Mutation.CreateProgramWithMembers == nil { break } @@ -25151,10 +25134,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateProgramWithMembers(childComplexity, args["input"].(model.CreateProgramWithMembersInput)), true + return e.ComplexityRoot.Mutation.CreateProgramWithMembers(childComplexity, args["input"].(model.CreateProgramWithMembersInput)), true case "Mutation.createRemediation": - if e.complexity.Mutation.CreateRemediation == nil { + if e.ComplexityRoot.Mutation.CreateRemediation == nil { break } @@ -25163,10 +25146,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateRemediation(childComplexity, args["input"].(generated.CreateRemediationInput)), true + return e.ComplexityRoot.Mutation.CreateRemediation(childComplexity, args["input"].(generated.CreateRemediationInput)), true case "Mutation.createReview": - if e.complexity.Mutation.CreateReview == nil { + if e.ComplexityRoot.Mutation.CreateReview == nil { break } @@ -25175,10 +25158,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateReview(childComplexity, args["input"].(generated.CreateReviewInput)), true + return e.ComplexityRoot.Mutation.CreateReview(childComplexity, args["input"].(generated.CreateReviewInput)), true case "Mutation.createRisk": - if e.complexity.Mutation.CreateRisk == nil { + if e.ComplexityRoot.Mutation.CreateRisk == nil { break } @@ -25187,10 +25170,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateRisk(childComplexity, args["input"].(generated.CreateRiskInput)), true + return e.ComplexityRoot.Mutation.CreateRisk(childComplexity, args["input"].(generated.CreateRiskInput)), true case "Mutation.createScan": - if e.complexity.Mutation.CreateScan == nil { + if e.ComplexityRoot.Mutation.CreateScan == nil { break } @@ -25199,10 +25182,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateScan(childComplexity, args["input"].(generated.CreateScanInput)), true + return e.ComplexityRoot.Mutation.CreateScan(childComplexity, args["input"].(generated.CreateScanInput)), true case "Mutation.createScheduledJob": - if e.complexity.Mutation.CreateScheduledJob == nil { + if e.ComplexityRoot.Mutation.CreateScheduledJob == nil { break } @@ -25211,10 +25194,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateScheduledJob(childComplexity, args["input"].(generated.CreateScheduledJobInput)), true + return e.ComplexityRoot.Mutation.CreateScheduledJob(childComplexity, args["input"].(generated.CreateScheduledJobInput)), true case "Mutation.createScheduledJobRun": - if e.complexity.Mutation.CreateScheduledJobRun == nil { + if e.ComplexityRoot.Mutation.CreateScheduledJobRun == nil { break } @@ -25223,10 +25206,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateScheduledJobRun(childComplexity, args["input"].(generated.CreateScheduledJobRunInput)), true + return e.ComplexityRoot.Mutation.CreateScheduledJobRun(childComplexity, args["input"].(generated.CreateScheduledJobRunInput)), true case "Mutation.createStandard": - if e.complexity.Mutation.CreateStandard == nil { + if e.ComplexityRoot.Mutation.CreateStandard == nil { break } @@ -25235,10 +25218,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateStandard(childComplexity, args["input"].(generated.CreateStandardInput), args["logoFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateStandard(childComplexity, args["input"].(generated.CreateStandardInput), args["logoFile"].(*graphql.Upload)), true case "Mutation.createSubcontrol": - if e.complexity.Mutation.CreateSubcontrol == nil { + if e.ComplexityRoot.Mutation.CreateSubcontrol == nil { break } @@ -25247,10 +25230,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateSubcontrol(childComplexity, args["input"].(generated.CreateSubcontrolInput)), true + return e.ComplexityRoot.Mutation.CreateSubcontrol(childComplexity, args["input"].(generated.CreateSubcontrolInput)), true case "Mutation.createSubprocessor": - if e.complexity.Mutation.CreateSubprocessor == nil { + if e.ComplexityRoot.Mutation.CreateSubprocessor == nil { break } @@ -25259,10 +25242,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateSubprocessor(childComplexity, args["input"].(generated.CreateSubprocessorInput), args["logoFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateSubprocessor(childComplexity, args["input"].(generated.CreateSubprocessorInput), args["logoFile"].(*graphql.Upload)), true case "Mutation.createSubscriber": - if e.complexity.Mutation.CreateSubscriber == nil { + if e.ComplexityRoot.Mutation.CreateSubscriber == nil { break } @@ -25271,10 +25254,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateSubscriber(childComplexity, args["input"].(generated.CreateSubscriberInput)), true + return e.ComplexityRoot.Mutation.CreateSubscriber(childComplexity, args["input"].(generated.CreateSubscriberInput)), true case "Mutation.createTFASetting": - if e.complexity.Mutation.CreateTFASetting == nil { + if e.ComplexityRoot.Mutation.CreateTFASetting == nil { break } @@ -25283,10 +25266,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTFASetting(childComplexity, args["input"].(generated.CreateTFASettingInput)), true + return e.ComplexityRoot.Mutation.CreateTFASetting(childComplexity, args["input"].(generated.CreateTFASettingInput)), true case "Mutation.createTagDefinition": - if e.complexity.Mutation.CreateTagDefinition == nil { + if e.ComplexityRoot.Mutation.CreateTagDefinition == nil { break } @@ -25295,10 +25278,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTagDefinition(childComplexity, args["input"].(generated.CreateTagDefinitionInput)), true + return e.ComplexityRoot.Mutation.CreateTagDefinition(childComplexity, args["input"].(generated.CreateTagDefinitionInput)), true case "Mutation.createTask": - if e.complexity.Mutation.CreateTask == nil { + if e.ComplexityRoot.Mutation.CreateTask == nil { break } @@ -25307,10 +25290,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTask(childComplexity, args["input"].(generated.CreateTaskInput)), true + return e.ComplexityRoot.Mutation.CreateTask(childComplexity, args["input"].(generated.CreateTaskInput)), true case "Mutation.createTemplate": - if e.complexity.Mutation.CreateTemplate == nil { + if e.ComplexityRoot.Mutation.CreateTemplate == nil { break } @@ -25319,10 +25302,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTemplate(childComplexity, args["input"].(generated.CreateTemplateInput), args["templateFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateTemplate(childComplexity, args["input"].(generated.CreateTemplateInput), args["templateFiles"].([]*graphql.Upload)), true case "Mutation.createTrustCenter": - if e.complexity.Mutation.CreateTrustCenter == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenter == nil { break } @@ -25331,10 +25314,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenter(childComplexity, args["input"].(generated.CreateTrustCenterInput)), true + return e.ComplexityRoot.Mutation.CreateTrustCenter(childComplexity, args["input"].(generated.CreateTrustCenterInput)), true case "Mutation.createTrustCenterCompliance": - if e.complexity.Mutation.CreateTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterCompliance == nil { break } @@ -25343,10 +25326,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterCompliance(childComplexity, args["input"].(generated.CreateTrustCenterComplianceInput)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterCompliance(childComplexity, args["input"].(generated.CreateTrustCenterComplianceInput)), true case "Mutation.createTrustCenterDoc": - if e.complexity.Mutation.CreateTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterDoc == nil { break } @@ -25355,10 +25338,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterDoc(childComplexity, args["input"].(generated.CreateTrustCenterDocInput), args["trustCenterDocFile"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterDoc(childComplexity, args["input"].(generated.CreateTrustCenterDocInput), args["trustCenterDocFile"].(graphql.Upload)), true case "Mutation.createTrustCenterDomain": - if e.complexity.Mutation.CreateTrustCenterDomain == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterDomain == nil { break } @@ -25367,10 +25350,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterDomain(childComplexity, args["input"].(model.CreateTrustCenterDomainInput)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterDomain(childComplexity, args["input"].(model.CreateTrustCenterDomainInput)), true case "Mutation.createTrustCenterEntity": - if e.complexity.Mutation.CreateTrustCenterEntity == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterEntity == nil { break } @@ -25379,10 +25362,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterEntity(childComplexity, args["input"].(generated.CreateTrustCenterEntityInput), args["logoFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterEntity(childComplexity, args["input"].(generated.CreateTrustCenterEntityInput), args["logoFile"].(*graphql.Upload)), true case "Mutation.createTrustCenterFAQ": - if e.complexity.Mutation.CreateTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterFaq == nil { break } @@ -25391,10 +25374,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterFaq(childComplexity, args["input"].(generated.CreateTrustCenterFAQInput)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterFaq(childComplexity, args["input"].(generated.CreateTrustCenterFAQInput)), true case "Mutation.createTrustCenterNDARequest": - if e.complexity.Mutation.CreateTrustCenterNDARequest == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterNDARequest == nil { break } @@ -25403,10 +25386,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterNDARequest(childComplexity, args["input"].(generated.CreateTrustCenterNDARequestInput)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterNDARequest(childComplexity, args["input"].(generated.CreateTrustCenterNDARequestInput)), true case "Mutation.createTrustCenterNDA": - if e.complexity.Mutation.CreateTrustCenterNda == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterNda == nil { break } @@ -25415,10 +25398,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterNda(childComplexity, args["input"].(model.CreateTrustCenterNDAInput), args["templateFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterNda(childComplexity, args["input"].(model.CreateTrustCenterNDAInput), args["templateFiles"].([]*graphql.Upload)), true case "Mutation.createTrustCenterPreviewSetting": - if e.complexity.Mutation.CreateTrustCenterPreviewSetting == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterPreviewSetting == nil { break } @@ -25427,10 +25410,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterPreviewSetting(childComplexity, args["input"].(model.CreateTrustCenterPreviewSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterPreviewSetting(childComplexity, args["input"].(model.CreateTrustCenterPreviewSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true case "Mutation.createTrustCenterSetting": - if e.complexity.Mutation.CreateTrustCenterSetting == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterSetting == nil { break } @@ -25439,10 +25422,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterSetting(childComplexity, args["input"].(generated.CreateTrustCenterSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterSetting(childComplexity, args["input"].(generated.CreateTrustCenterSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true case "Mutation.createTrustCenterSubprocessor": - if e.complexity.Mutation.CreateTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterSubprocessor == nil { break } @@ -25451,10 +25434,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterSubprocessor(childComplexity, args["input"].(generated.CreateTrustCenterSubprocessorInput)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterSubprocessor(childComplexity, args["input"].(generated.CreateTrustCenterSubprocessorInput)), true case "Mutation.createTrustCenterWatermarkConfig": - if e.complexity.Mutation.CreateTrustCenterWatermarkConfig == nil { + if e.ComplexityRoot.Mutation.CreateTrustCenterWatermarkConfig == nil { break } @@ -25463,10 +25446,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateTrustCenterWatermarkConfig(childComplexity, args["input"].(generated.CreateTrustCenterWatermarkConfigInput), args["watermarkFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateTrustCenterWatermarkConfig(childComplexity, args["input"].(generated.CreateTrustCenterWatermarkConfigInput), args["watermarkFile"].(*graphql.Upload)), true case "Mutation.createUploadInternalPolicy": - if e.complexity.Mutation.CreateUploadInternalPolicy == nil { + if e.ComplexityRoot.Mutation.CreateUploadInternalPolicy == nil { break } @@ -25475,10 +25458,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateUploadInternalPolicy(childComplexity, args["internalPolicyFile"].(graphql.Upload), args["ownerID"].(*string)), true + return e.ComplexityRoot.Mutation.CreateUploadInternalPolicy(childComplexity, args["internalPolicyFile"].(graphql.Upload), args["ownerID"].(*string)), true case "Mutation.createUploadProcedure": - if e.complexity.Mutation.CreateUploadProcedure == nil { + if e.ComplexityRoot.Mutation.CreateUploadProcedure == nil { break } @@ -25487,10 +25470,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateUploadProcedure(childComplexity, args["procedureFile"].(graphql.Upload), args["ownerID"].(*string)), true + return e.ComplexityRoot.Mutation.CreateUploadProcedure(childComplexity, args["procedureFile"].(graphql.Upload), args["ownerID"].(*string)), true case "Mutation.createUser": - if e.complexity.Mutation.CreateUser == nil { + if e.ComplexityRoot.Mutation.CreateUser == nil { break } @@ -25499,10 +25482,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateUser(childComplexity, args["input"].(generated.CreateUserInput), args["avatarFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.CreateUser(childComplexity, args["input"].(generated.CreateUserInput), args["avatarFile"].(*graphql.Upload)), true case "Mutation.createUserSetting": - if e.complexity.Mutation.CreateUserSetting == nil { + if e.ComplexityRoot.Mutation.CreateUserSetting == nil { break } @@ -25511,10 +25494,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateUserSetting(childComplexity, args["input"].(generated.CreateUserSettingInput)), true + return e.ComplexityRoot.Mutation.CreateUserSetting(childComplexity, args["input"].(generated.CreateUserSettingInput)), true case "Mutation.createVulnerability": - if e.complexity.Mutation.CreateVulnerability == nil { + if e.ComplexityRoot.Mutation.CreateVulnerability == nil { break } @@ -25523,10 +25506,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateVulnerability(childComplexity, args["input"].(generated.CreateVulnerabilityInput)), true + return e.ComplexityRoot.Mutation.CreateVulnerability(childComplexity, args["input"].(generated.CreateVulnerabilityInput)), true case "Mutation.createWorkflowDefinition": - if e.complexity.Mutation.CreateWorkflowDefinition == nil { + if e.ComplexityRoot.Mutation.CreateWorkflowDefinition == nil { break } @@ -25535,10 +25518,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.CreateWorkflowDefinition(childComplexity, args["input"].(generated.CreateWorkflowDefinitionInput)), true + return e.ComplexityRoot.Mutation.CreateWorkflowDefinition(childComplexity, args["input"].(generated.CreateWorkflowDefinitionInput)), true case "Mutation.deleteAPIToken": - if e.complexity.Mutation.DeleteAPIToken == nil { + if e.ComplexityRoot.Mutation.DeleteAPIToken == nil { break } @@ -25547,10 +25530,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteAPIToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteAPIToken(childComplexity, args["id"].(string)), true case "Mutation.deleteActionPlan": - if e.complexity.Mutation.DeleteActionPlan == nil { + if e.ComplexityRoot.Mutation.DeleteActionPlan == nil { break } @@ -25559,10 +25542,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteActionPlan(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteActionPlan(childComplexity, args["id"].(string)), true case "Mutation.deleteAssessment": - if e.complexity.Mutation.DeleteAssessment == nil { + if e.ComplexityRoot.Mutation.DeleteAssessment == nil { break } @@ -25571,10 +25554,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteAssessment(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteAssessment(childComplexity, args["id"].(string)), true case "Mutation.deleteAssessmentResponse": - if e.complexity.Mutation.DeleteAssessmentResponse == nil { + if e.ComplexityRoot.Mutation.DeleteAssessmentResponse == nil { break } @@ -25583,10 +25566,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteAssessmentResponse(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteAssessmentResponse(childComplexity, args["id"].(string)), true case "Mutation.deleteAsset": - if e.complexity.Mutation.DeleteAsset == nil { + if e.ComplexityRoot.Mutation.DeleteAsset == nil { break } @@ -25595,10 +25578,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteAsset(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteAsset(childComplexity, args["id"].(string)), true case "Mutation.deleteBulkAPIToken": - if e.complexity.Mutation.DeleteBulkAPIToken == nil { + if e.ComplexityRoot.Mutation.DeleteBulkAPIToken == nil { break } @@ -25607,10 +25590,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkAPIToken(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkAPIToken(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkActionPlan": - if e.complexity.Mutation.DeleteBulkActionPlan == nil { + if e.ComplexityRoot.Mutation.DeleteBulkActionPlan == nil { break } @@ -25619,10 +25602,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkActionPlan(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkActionPlan(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkAssessment": - if e.complexity.Mutation.DeleteBulkAssessment == nil { + if e.ComplexityRoot.Mutation.DeleteBulkAssessment == nil { break } @@ -25631,10 +25614,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkAssessment(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkAssessment(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkAsset": - if e.complexity.Mutation.DeleteBulkAsset == nil { + if e.ComplexityRoot.Mutation.DeleteBulkAsset == nil { break } @@ -25643,10 +25626,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkAsset(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkAsset(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkContact": - if e.complexity.Mutation.DeleteBulkContact == nil { + if e.ComplexityRoot.Mutation.DeleteBulkContact == nil { break } @@ -25655,10 +25638,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkContact(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkContact(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkControl": - if e.complexity.Mutation.DeleteBulkControl == nil { + if e.ComplexityRoot.Mutation.DeleteBulkControl == nil { break } @@ -25667,10 +25650,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkControl(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkControl(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkControlImplementation": - if e.complexity.Mutation.DeleteBulkControlImplementation == nil { + if e.ComplexityRoot.Mutation.DeleteBulkControlImplementation == nil { break } @@ -25679,10 +25662,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkControlImplementation(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkControlImplementation(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkControlObjective": - if e.complexity.Mutation.DeleteBulkControlObjective == nil { + if e.ComplexityRoot.Mutation.DeleteBulkControlObjective == nil { break } @@ -25691,10 +25674,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkControlObjective(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkControlObjective(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkCustomDomain": - if e.complexity.Mutation.DeleteBulkCustomDomain == nil { + if e.ComplexityRoot.Mutation.DeleteBulkCustomDomain == nil { break } @@ -25703,10 +25686,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkCustomDomain(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkCustomDomain(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkDNSVerification": - if e.complexity.Mutation.DeleteBulkDNSVerification == nil { + if e.ComplexityRoot.Mutation.DeleteBulkDNSVerification == nil { break } @@ -25715,10 +25698,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkDNSVerification(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkDNSVerification(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkDocumentData": - if e.complexity.Mutation.DeleteBulkDocumentData == nil { + if e.ComplexityRoot.Mutation.DeleteBulkDocumentData == nil { break } @@ -25727,10 +25710,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkDocumentData(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkDocumentData(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkEmailBranding": - if e.complexity.Mutation.DeleteBulkEmailBranding == nil { + if e.ComplexityRoot.Mutation.DeleteBulkEmailBranding == nil { break } @@ -25739,10 +25722,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkEmailBranding(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkEmailBranding(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkEmailTemplate": - if e.complexity.Mutation.DeleteBulkEmailTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteBulkEmailTemplate == nil { break } @@ -25751,10 +25734,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkEmailTemplate(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkEmailTemplate(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkEntity": - if e.complexity.Mutation.DeleteBulkEntity == nil { + if e.ComplexityRoot.Mutation.DeleteBulkEntity == nil { break } @@ -25763,10 +25746,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkEntity(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkEntity(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkEntityType": - if e.complexity.Mutation.DeleteBulkEntityType == nil { + if e.ComplexityRoot.Mutation.DeleteBulkEntityType == nil { break } @@ -25775,10 +25758,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkEntityType(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkEntityType(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkEvent": - if e.complexity.Mutation.DeleteBulkEvent == nil { + if e.ComplexityRoot.Mutation.DeleteBulkEvent == nil { break } @@ -25787,10 +25770,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkEvent(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkEvent(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkEvidence": - if e.complexity.Mutation.DeleteBulkEvidence == nil { + if e.ComplexityRoot.Mutation.DeleteBulkEvidence == nil { break } @@ -25799,10 +25782,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkEvidence(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkEvidence(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkExport": - if e.complexity.Mutation.DeleteBulkExport == nil { + if e.ComplexityRoot.Mutation.DeleteBulkExport == nil { break } @@ -25811,10 +25794,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkExport(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkExport(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkGroup": - if e.complexity.Mutation.DeleteBulkGroup == nil { + if e.ComplexityRoot.Mutation.DeleteBulkGroup == nil { break } @@ -25823,10 +25806,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkGroup(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkGroup(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkGroupMembership": - if e.complexity.Mutation.DeleteBulkGroupMembership == nil { + if e.ComplexityRoot.Mutation.DeleteBulkGroupMembership == nil { break } @@ -25835,10 +25818,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkGroupMembership(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkGroupMembership(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkGroupSetting": - if e.complexity.Mutation.DeleteBulkGroupSetting == nil { + if e.ComplexityRoot.Mutation.DeleteBulkGroupSetting == nil { break } @@ -25847,10 +25830,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkGroupSetting(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkGroupSetting(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkHush": - if e.complexity.Mutation.DeleteBulkHush == nil { + if e.ComplexityRoot.Mutation.DeleteBulkHush == nil { break } @@ -25859,10 +25842,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkHush(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkHush(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkIdentityHolder": - if e.complexity.Mutation.DeleteBulkIdentityHolder == nil { + if e.ComplexityRoot.Mutation.DeleteBulkIdentityHolder == nil { break } @@ -25871,10 +25854,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkIdentityHolder(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkIdentityHolder(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkInternalPolicy": - if e.complexity.Mutation.DeleteBulkInternalPolicy == nil { + if e.ComplexityRoot.Mutation.DeleteBulkInternalPolicy == nil { break } @@ -25883,10 +25866,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkInternalPolicy(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkInternalPolicy(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkInvite": - if e.complexity.Mutation.DeleteBulkInvite == nil { + if e.ComplexityRoot.Mutation.DeleteBulkInvite == nil { break } @@ -25895,10 +25878,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkInvite(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkInvite(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkJobTemplate": - if e.complexity.Mutation.DeleteBulkJobTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteBulkJobTemplate == nil { break } @@ -25907,10 +25890,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkJobTemplate(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkJobTemplate(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkMappableDomain": - if e.complexity.Mutation.DeleteBulkMappableDomain == nil { + if e.ComplexityRoot.Mutation.DeleteBulkMappableDomain == nil { break } @@ -25919,10 +25902,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkMappableDomain(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkMappableDomain(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkMappedControl": - if e.complexity.Mutation.DeleteBulkMappedControl == nil { + if e.ComplexityRoot.Mutation.DeleteBulkMappedControl == nil { break } @@ -25931,10 +25914,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkMappedControl(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkMappedControl(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkNarrative": - if e.complexity.Mutation.DeleteBulkNarrative == nil { + if e.ComplexityRoot.Mutation.DeleteBulkNarrative == nil { break } @@ -25943,10 +25926,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkNarrative(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkNarrative(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkNotificationPreference": - if e.complexity.Mutation.DeleteBulkNotificationPreference == nil { + if e.ComplexityRoot.Mutation.DeleteBulkNotificationPreference == nil { break } @@ -25955,10 +25938,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkNotificationPreference(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkNotificationPreference(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkNotificationTemplate": - if e.complexity.Mutation.DeleteBulkNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteBulkNotificationTemplate == nil { break } @@ -25967,10 +25950,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkNotificationTemplate(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkNotificationTemplate(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkOrgMembership": - if e.complexity.Mutation.DeleteBulkOrgMembership == nil { + if e.ComplexityRoot.Mutation.DeleteBulkOrgMembership == nil { break } @@ -25979,10 +25962,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkOrgMembership(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkOrgMembership(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkOrganizationSetting": - if e.complexity.Mutation.DeleteBulkOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.DeleteBulkOrganizationSetting == nil { break } @@ -25991,10 +25974,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkOrganizationSetting(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkOrganizationSetting(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkProcedure": - if e.complexity.Mutation.DeleteBulkProcedure == nil { + if e.ComplexityRoot.Mutation.DeleteBulkProcedure == nil { break } @@ -26003,10 +25986,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkProcedure(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkProcedure(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkProgram": - if e.complexity.Mutation.DeleteBulkProgram == nil { + if e.ComplexityRoot.Mutation.DeleteBulkProgram == nil { break } @@ -26015,10 +25998,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkProgram(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkProgram(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkProgramMembership": - if e.complexity.Mutation.DeleteBulkProgramMembership == nil { + if e.ComplexityRoot.Mutation.DeleteBulkProgramMembership == nil { break } @@ -26027,10 +26010,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkProgramMembership(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkProgramMembership(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkRisk": - if e.complexity.Mutation.DeleteBulkRisk == nil { + if e.ComplexityRoot.Mutation.DeleteBulkRisk == nil { break } @@ -26039,10 +26022,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkRisk(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkRisk(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkScan": - if e.complexity.Mutation.DeleteBulkScan == nil { + if e.ComplexityRoot.Mutation.DeleteBulkScan == nil { break } @@ -26051,10 +26034,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkScan(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkScan(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkScheduledJob": - if e.complexity.Mutation.DeleteBulkScheduledJob == nil { + if e.ComplexityRoot.Mutation.DeleteBulkScheduledJob == nil { break } @@ -26063,10 +26046,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkScheduledJob(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkScheduledJob(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkSubcontrol": - if e.complexity.Mutation.DeleteBulkSubcontrol == nil { + if e.ComplexityRoot.Mutation.DeleteBulkSubcontrol == nil { break } @@ -26075,10 +26058,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkSubcontrol(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkSubcontrol(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkSubprocessor": - if e.complexity.Mutation.DeleteBulkSubprocessor == nil { + if e.ComplexityRoot.Mutation.DeleteBulkSubprocessor == nil { break } @@ -26087,10 +26070,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkSubprocessor(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkSubprocessor(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkTask": - if e.complexity.Mutation.DeleteBulkTask == nil { + if e.ComplexityRoot.Mutation.DeleteBulkTask == nil { break } @@ -26099,10 +26082,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkTask(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkTask(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkTemplate": - if e.complexity.Mutation.DeleteBulkTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteBulkTemplate == nil { break } @@ -26111,10 +26094,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkTemplate(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkTemplate(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkTrustCenterCompliance": - if e.complexity.Mutation.DeleteBulkTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.DeleteBulkTrustCenterCompliance == nil { break } @@ -26123,10 +26106,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkTrustCenterCompliance(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkTrustCenterCompliance(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkTrustCenterDoc": - if e.complexity.Mutation.DeleteBulkTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.DeleteBulkTrustCenterDoc == nil { break } @@ -26135,10 +26118,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkTrustCenterDoc(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkTrustCenterDoc(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkTrustCenterFAQ": - if e.complexity.Mutation.DeleteBulkTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.DeleteBulkTrustCenterFaq == nil { break } @@ -26147,10 +26130,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkTrustCenterFaq(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkTrustCenterFaq(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkTrustCenterNDARequest": - if e.complexity.Mutation.DeleteBulkTrustCenterNDARequest == nil { + if e.ComplexityRoot.Mutation.DeleteBulkTrustCenterNDARequest == nil { break } @@ -26159,10 +26142,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkTrustCenterNDARequest(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkTrustCenterNDARequest(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkTrustCenterSubprocessor": - if e.complexity.Mutation.DeleteBulkTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.DeleteBulkTrustCenterSubprocessor == nil { break } @@ -26171,10 +26154,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkTrustCenterSubprocessor(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkTrustCenterSubprocessor(childComplexity, args["ids"].([]string)), true case "Mutation.deleteBulkUserSetting": - if e.complexity.Mutation.DeleteBulkUserSetting == nil { + if e.ComplexityRoot.Mutation.DeleteBulkUserSetting == nil { break } @@ -26183,10 +26166,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteBulkUserSetting(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DeleteBulkUserSetting(childComplexity, args["ids"].([]string)), true case "Mutation.deleteCampaign": - if e.complexity.Mutation.DeleteCampaign == nil { + if e.ComplexityRoot.Mutation.DeleteCampaign == nil { break } @@ -26195,10 +26178,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteCampaign(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteCampaign(childComplexity, args["id"].(string)), true case "Mutation.deleteCampaignTarget": - if e.complexity.Mutation.DeleteCampaignTarget == nil { + if e.ComplexityRoot.Mutation.DeleteCampaignTarget == nil { break } @@ -26207,10 +26190,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteCampaignTarget(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteCampaignTarget(childComplexity, args["id"].(string)), true case "Mutation.deleteContact": - if e.complexity.Mutation.DeleteContact == nil { + if e.ComplexityRoot.Mutation.DeleteContact == nil { break } @@ -26219,10 +26202,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteContact(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteContact(childComplexity, args["id"].(string)), true case "Mutation.deleteControl": - if e.complexity.Mutation.DeleteControl == nil { + if e.ComplexityRoot.Mutation.DeleteControl == nil { break } @@ -26231,10 +26214,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteControl(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteControl(childComplexity, args["id"].(string)), true case "Mutation.deleteControlImplementation": - if e.complexity.Mutation.DeleteControlImplementation == nil { + if e.ComplexityRoot.Mutation.DeleteControlImplementation == nil { break } @@ -26243,10 +26226,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteControlImplementation(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteControlImplementation(childComplexity, args["id"].(string)), true case "Mutation.deleteControlObjective": - if e.complexity.Mutation.DeleteControlObjective == nil { + if e.ComplexityRoot.Mutation.DeleteControlObjective == nil { break } @@ -26255,10 +26238,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteControlObjective(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteControlObjective(childComplexity, args["id"].(string)), true case "Mutation.deleteCustomDomain": - if e.complexity.Mutation.DeleteCustomDomain == nil { + if e.ComplexityRoot.Mutation.DeleteCustomDomain == nil { break } @@ -26267,10 +26250,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteCustomDomain(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteCustomDomain(childComplexity, args["id"].(string)), true case "Mutation.deleteCustomTypeEnum": - if e.complexity.Mutation.DeleteCustomTypeEnum == nil { + if e.ComplexityRoot.Mutation.DeleteCustomTypeEnum == nil { break } @@ -26279,10 +26262,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteCustomTypeEnum(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteCustomTypeEnum(childComplexity, args["id"].(string)), true case "Mutation.deleteDNSVerification": - if e.complexity.Mutation.DeleteDNSVerification == nil { + if e.ComplexityRoot.Mutation.DeleteDNSVerification == nil { break } @@ -26291,10 +26274,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteDNSVerification(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteDNSVerification(childComplexity, args["id"].(string)), true case "Mutation.deleteDirectoryAccount": - if e.complexity.Mutation.DeleteDirectoryAccount == nil { + if e.ComplexityRoot.Mutation.DeleteDirectoryAccount == nil { break } @@ -26303,10 +26286,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteDirectoryAccount(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteDirectoryAccount(childComplexity, args["id"].(string)), true case "Mutation.deleteDirectoryGroup": - if e.complexity.Mutation.DeleteDirectoryGroup == nil { + if e.ComplexityRoot.Mutation.DeleteDirectoryGroup == nil { break } @@ -26315,10 +26298,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteDirectoryGroup(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteDirectoryGroup(childComplexity, args["id"].(string)), true case "Mutation.deleteDirectoryMembership": - if e.complexity.Mutation.DeleteDirectoryMembership == nil { + if e.ComplexityRoot.Mutation.DeleteDirectoryMembership == nil { break } @@ -26327,10 +26310,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteDirectoryMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteDirectoryMembership(childComplexity, args["id"].(string)), true case "Mutation.deleteDirectorySyncRun": - if e.complexity.Mutation.DeleteDirectorySyncRun == nil { + if e.ComplexityRoot.Mutation.DeleteDirectorySyncRun == nil { break } @@ -26339,10 +26322,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteDirectorySyncRun(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteDirectorySyncRun(childComplexity, args["id"].(string)), true case "Mutation.deleteDiscussion": - if e.complexity.Mutation.DeleteDiscussion == nil { + if e.ComplexityRoot.Mutation.DeleteDiscussion == nil { break } @@ -26351,10 +26334,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteDiscussion(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteDiscussion(childComplexity, args["id"].(string)), true case "Mutation.deleteDocumentData": - if e.complexity.Mutation.DeleteDocumentData == nil { + if e.ComplexityRoot.Mutation.DeleteDocumentData == nil { break } @@ -26363,10 +26346,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteDocumentData(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteDocumentData(childComplexity, args["id"].(string)), true case "Mutation.deleteEmailBranding": - if e.complexity.Mutation.DeleteEmailBranding == nil { + if e.ComplexityRoot.Mutation.DeleteEmailBranding == nil { break } @@ -26375,10 +26358,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteEmailBranding(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteEmailBranding(childComplexity, args["id"].(string)), true case "Mutation.deleteEmailTemplate": - if e.complexity.Mutation.DeleteEmailTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteEmailTemplate == nil { break } @@ -26387,10 +26370,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteEmailTemplate(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteEmailTemplate(childComplexity, args["id"].(string)), true case "Mutation.deleteEntity": - if e.complexity.Mutation.DeleteEntity == nil { + if e.ComplexityRoot.Mutation.DeleteEntity == nil { break } @@ -26399,10 +26382,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteEntity(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteEntity(childComplexity, args["id"].(string)), true case "Mutation.deleteEntityType": - if e.complexity.Mutation.DeleteEntityType == nil { + if e.ComplexityRoot.Mutation.DeleteEntityType == nil { break } @@ -26411,10 +26394,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteEntityType(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteEntityType(childComplexity, args["id"].(string)), true case "Mutation.deleteEvent": - if e.complexity.Mutation.DeleteEvent == nil { + if e.ComplexityRoot.Mutation.DeleteEvent == nil { break } @@ -26423,10 +26406,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteEvent(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteEvent(childComplexity, args["id"].(string)), true case "Mutation.deleteEvidence": - if e.complexity.Mutation.DeleteEvidence == nil { + if e.ComplexityRoot.Mutation.DeleteEvidence == nil { break } @@ -26435,10 +26418,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteEvidence(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteEvidence(childComplexity, args["id"].(string)), true case "Mutation.deleteExport": - if e.complexity.Mutation.DeleteExport == nil { + if e.ComplexityRoot.Mutation.DeleteExport == nil { break } @@ -26447,10 +26430,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteExport(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteExport(childComplexity, args["id"].(string)), true case "Mutation.deleteFile": - if e.complexity.Mutation.DeleteFile == nil { + if e.ComplexityRoot.Mutation.DeleteFile == nil { break } @@ -26459,10 +26442,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteFile(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteFile(childComplexity, args["id"].(string)), true case "Mutation.deleteFinding": - if e.complexity.Mutation.DeleteFinding == nil { + if e.ComplexityRoot.Mutation.DeleteFinding == nil { break } @@ -26471,10 +26454,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteFinding(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteFinding(childComplexity, args["id"].(string)), true case "Mutation.deleteFindingControl": - if e.complexity.Mutation.DeleteFindingControl == nil { + if e.ComplexityRoot.Mutation.DeleteFindingControl == nil { break } @@ -26483,10 +26466,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteFindingControl(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteFindingControl(childComplexity, args["id"].(string)), true case "Mutation.deleteGroup": - if e.complexity.Mutation.DeleteGroup == nil { + if e.ComplexityRoot.Mutation.DeleteGroup == nil { break } @@ -26495,10 +26478,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteGroup(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteGroup(childComplexity, args["id"].(string)), true case "Mutation.deleteGroupMembership": - if e.complexity.Mutation.DeleteGroupMembership == nil { + if e.ComplexityRoot.Mutation.DeleteGroupMembership == nil { break } @@ -26507,10 +26490,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteGroupMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteGroupMembership(childComplexity, args["id"].(string)), true case "Mutation.deleteGroupSetting": - if e.complexity.Mutation.DeleteGroupSetting == nil { + if e.ComplexityRoot.Mutation.DeleteGroupSetting == nil { break } @@ -26519,10 +26502,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteGroupSetting(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteGroupSetting(childComplexity, args["id"].(string)), true case "Mutation.deleteHush": - if e.complexity.Mutation.DeleteHush == nil { + if e.ComplexityRoot.Mutation.DeleteHush == nil { break } @@ -26531,10 +26514,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteHush(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteHush(childComplexity, args["id"].(string)), true case "Mutation.deleteIdentityHolder": - if e.complexity.Mutation.DeleteIdentityHolder == nil { + if e.ComplexityRoot.Mutation.DeleteIdentityHolder == nil { break } @@ -26543,10 +26526,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteIdentityHolder(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteIdentityHolder(childComplexity, args["id"].(string)), true case "Mutation.deleteIntegration": - if e.complexity.Mutation.DeleteIntegration == nil { + if e.ComplexityRoot.Mutation.DeleteIntegration == nil { break } @@ -26555,10 +26538,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteIntegration(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteIntegration(childComplexity, args["id"].(string)), true case "Mutation.deleteInternalPolicy": - if e.complexity.Mutation.DeleteInternalPolicy == nil { + if e.ComplexityRoot.Mutation.DeleteInternalPolicy == nil { break } @@ -26567,10 +26550,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteInternalPolicy(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteInternalPolicy(childComplexity, args["id"].(string)), true case "Mutation.deleteInvite": - if e.complexity.Mutation.DeleteInvite == nil { + if e.ComplexityRoot.Mutation.DeleteInvite == nil { break } @@ -26579,10 +26562,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteInvite(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteInvite(childComplexity, args["id"].(string)), true case "Mutation.deleteJobResult": - if e.complexity.Mutation.DeleteJobResult == nil { + if e.ComplexityRoot.Mutation.DeleteJobResult == nil { break } @@ -26591,10 +26574,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteJobResult(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteJobResult(childComplexity, args["id"].(string)), true case "Mutation.deleteJobRunner": - if e.complexity.Mutation.DeleteJobRunner == nil { + if e.ComplexityRoot.Mutation.DeleteJobRunner == nil { break } @@ -26603,10 +26586,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteJobRunner(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteJobRunner(childComplexity, args["id"].(string)), true case "Mutation.deleteJobRunnerRegistrationToken": - if e.complexity.Mutation.DeleteJobRunnerRegistrationToken == nil { + if e.ComplexityRoot.Mutation.DeleteJobRunnerRegistrationToken == nil { break } @@ -26615,10 +26598,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteJobRunnerRegistrationToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteJobRunnerRegistrationToken(childComplexity, args["id"].(string)), true case "Mutation.deleteJobRunnerToken": - if e.complexity.Mutation.DeleteJobRunnerToken == nil { + if e.ComplexityRoot.Mutation.DeleteJobRunnerToken == nil { break } @@ -26627,10 +26610,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteJobRunnerToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteJobRunnerToken(childComplexity, args["id"].(string)), true case "Mutation.deleteJobTemplate": - if e.complexity.Mutation.DeleteJobTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteJobTemplate == nil { break } @@ -26639,10 +26622,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteJobTemplate(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteJobTemplate(childComplexity, args["id"].(string)), true case "Mutation.deleteMappableDomain": - if e.complexity.Mutation.DeleteMappableDomain == nil { + if e.ComplexityRoot.Mutation.DeleteMappableDomain == nil { break } @@ -26651,10 +26634,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteMappableDomain(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteMappableDomain(childComplexity, args["id"].(string)), true case "Mutation.deleteMappedControl": - if e.complexity.Mutation.DeleteMappedControl == nil { + if e.ComplexityRoot.Mutation.DeleteMappedControl == nil { break } @@ -26663,10 +26646,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteMappedControl(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteMappedControl(childComplexity, args["id"].(string)), true case "Mutation.deleteNarrative": - if e.complexity.Mutation.DeleteNarrative == nil { + if e.ComplexityRoot.Mutation.DeleteNarrative == nil { break } @@ -26675,10 +26658,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteNarrative(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteNarrative(childComplexity, args["id"].(string)), true case "Mutation.deleteNote": - if e.complexity.Mutation.DeleteNote == nil { + if e.ComplexityRoot.Mutation.DeleteNote == nil { break } @@ -26687,10 +26670,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteNote(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteNote(childComplexity, args["id"].(string)), true case "Mutation.deleteNotificationPreference": - if e.complexity.Mutation.DeleteNotificationPreference == nil { + if e.ComplexityRoot.Mutation.DeleteNotificationPreference == nil { break } @@ -26699,10 +26682,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteNotificationPreference(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteNotificationPreference(childComplexity, args["id"].(string)), true case "Mutation.deleteNotificationTemplate": - if e.complexity.Mutation.DeleteNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteNotificationTemplate == nil { break } @@ -26711,10 +26694,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteNotificationTemplate(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteNotificationTemplate(childComplexity, args["id"].(string)), true case "Mutation.deleteOrgMembership": - if e.complexity.Mutation.DeleteOrgMembership == nil { + if e.ComplexityRoot.Mutation.DeleteOrgMembership == nil { break } @@ -26723,10 +26706,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteOrgMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteOrgMembership(childComplexity, args["id"].(string)), true case "Mutation.deleteOrganization": - if e.complexity.Mutation.DeleteOrganization == nil { + if e.ComplexityRoot.Mutation.DeleteOrganization == nil { break } @@ -26735,10 +26718,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteOrganization(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteOrganization(childComplexity, args["id"].(string)), true case "Mutation.deleteOrganizationSetting": - if e.complexity.Mutation.DeleteOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.DeleteOrganizationSetting == nil { break } @@ -26747,10 +26730,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteOrganizationSetting(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteOrganizationSetting(childComplexity, args["id"].(string)), true case "Mutation.deletePersonalAccessToken": - if e.complexity.Mutation.DeletePersonalAccessToken == nil { + if e.ComplexityRoot.Mutation.DeletePersonalAccessToken == nil { break } @@ -26759,10 +26742,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeletePersonalAccessToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeletePersonalAccessToken(childComplexity, args["id"].(string)), true case "Mutation.deletePlatform": - if e.complexity.Mutation.DeletePlatform == nil { + if e.ComplexityRoot.Mutation.DeletePlatform == nil { break } @@ -26771,10 +26754,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeletePlatform(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeletePlatform(childComplexity, args["id"].(string)), true case "Mutation.deleteProcedure": - if e.complexity.Mutation.DeleteProcedure == nil { + if e.ComplexityRoot.Mutation.DeleteProcedure == nil { break } @@ -26783,10 +26766,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteProcedure(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteProcedure(childComplexity, args["id"].(string)), true case "Mutation.deleteProgram": - if e.complexity.Mutation.DeleteProgram == nil { + if e.ComplexityRoot.Mutation.DeleteProgram == nil { break } @@ -26795,10 +26778,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteProgram(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteProgram(childComplexity, args["id"].(string)), true case "Mutation.deleteProgramMembership": - if e.complexity.Mutation.DeleteProgramMembership == nil { + if e.ComplexityRoot.Mutation.DeleteProgramMembership == nil { break } @@ -26807,10 +26790,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteProgramMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteProgramMembership(childComplexity, args["id"].(string)), true case "Mutation.deleteRemediation": - if e.complexity.Mutation.DeleteRemediation == nil { + if e.ComplexityRoot.Mutation.DeleteRemediation == nil { break } @@ -26819,10 +26802,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteRemediation(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteRemediation(childComplexity, args["id"].(string)), true case "Mutation.deleteReview": - if e.complexity.Mutation.DeleteReview == nil { + if e.ComplexityRoot.Mutation.DeleteReview == nil { break } @@ -26831,10 +26814,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteReview(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteReview(childComplexity, args["id"].(string)), true case "Mutation.deleteRisk": - if e.complexity.Mutation.DeleteRisk == nil { + if e.ComplexityRoot.Mutation.DeleteRisk == nil { break } @@ -26843,10 +26826,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteRisk(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteRisk(childComplexity, args["id"].(string)), true case "Mutation.deleteScan": - if e.complexity.Mutation.DeleteScan == nil { + if e.ComplexityRoot.Mutation.DeleteScan == nil { break } @@ -26855,10 +26838,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteScan(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteScan(childComplexity, args["id"].(string)), true case "Mutation.deleteScheduledJob": - if e.complexity.Mutation.DeleteScheduledJob == nil { + if e.ComplexityRoot.Mutation.DeleteScheduledJob == nil { break } @@ -26867,10 +26850,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteScheduledJob(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteScheduledJob(childComplexity, args["id"].(string)), true case "Mutation.deleteScheduledJobRun": - if e.complexity.Mutation.DeleteScheduledJobRun == nil { + if e.ComplexityRoot.Mutation.DeleteScheduledJobRun == nil { break } @@ -26879,10 +26862,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteScheduledJobRun(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteScheduledJobRun(childComplexity, args["id"].(string)), true case "Mutation.deleteStandard": - if e.complexity.Mutation.DeleteStandard == nil { + if e.ComplexityRoot.Mutation.DeleteStandard == nil { break } @@ -26891,10 +26874,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteStandard(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteStandard(childComplexity, args["id"].(string)), true case "Mutation.deleteSubcontrol": - if e.complexity.Mutation.DeleteSubcontrol == nil { + if e.ComplexityRoot.Mutation.DeleteSubcontrol == nil { break } @@ -26903,10 +26886,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteSubcontrol(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteSubcontrol(childComplexity, args["id"].(string)), true case "Mutation.deleteSubprocessor": - if e.complexity.Mutation.DeleteSubprocessor == nil { + if e.ComplexityRoot.Mutation.DeleteSubprocessor == nil { break } @@ -26915,10 +26898,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteSubprocessor(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteSubprocessor(childComplexity, args["id"].(string)), true case "Mutation.deleteSubscriber": - if e.complexity.Mutation.DeleteSubscriber == nil { + if e.ComplexityRoot.Mutation.DeleteSubscriber == nil { break } @@ -26927,10 +26910,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteSubscriber(childComplexity, args["email"].(string), args["ownerID"].(*string)), true + return e.ComplexityRoot.Mutation.DeleteSubscriber(childComplexity, args["email"].(string), args["ownerID"].(*string)), true case "Mutation.deleteTagDefinition": - if e.complexity.Mutation.DeleteTagDefinition == nil { + if e.ComplexityRoot.Mutation.DeleteTagDefinition == nil { break } @@ -26939,10 +26922,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTagDefinition(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTagDefinition(childComplexity, args["id"].(string)), true case "Mutation.deleteTask": - if e.complexity.Mutation.DeleteTask == nil { + if e.ComplexityRoot.Mutation.DeleteTask == nil { break } @@ -26951,10 +26934,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTask(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTask(childComplexity, args["id"].(string)), true case "Mutation.deleteTemplate": - if e.complexity.Mutation.DeleteTemplate == nil { + if e.ComplexityRoot.Mutation.DeleteTemplate == nil { break } @@ -26963,10 +26946,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTemplate(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTemplate(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenter": - if e.complexity.Mutation.DeleteTrustCenter == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenter == nil { break } @@ -26975,10 +26958,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenter(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenter(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterCompliance": - if e.complexity.Mutation.DeleteTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterCompliance == nil { break } @@ -26987,10 +26970,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterCompliance(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterCompliance(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterDoc": - if e.complexity.Mutation.DeleteTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterDoc == nil { break } @@ -26999,10 +26982,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterDoc(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterDoc(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterEntity": - if e.complexity.Mutation.DeleteTrustCenterEntity == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterEntity == nil { break } @@ -27011,10 +26994,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterEntity(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterEntity(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterFAQ": - if e.complexity.Mutation.DeleteTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterFaq == nil { break } @@ -27023,10 +27006,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterFaq(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterFaq(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterNDARequest": - if e.complexity.Mutation.DeleteTrustCenterNDARequest == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterNDARequest == nil { break } @@ -27035,10 +27018,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterNDARequest(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterNDARequest(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterSetting": - if e.complexity.Mutation.DeleteTrustCenterSetting == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterSetting == nil { break } @@ -27047,10 +27030,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterSetting(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterSetting(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterSubprocessor": - if e.complexity.Mutation.DeleteTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterSubprocessor == nil { break } @@ -27059,10 +27042,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterSubprocessor(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterSubprocessor(childComplexity, args["id"].(string)), true case "Mutation.deleteTrustCenterWatermarkConfig": - if e.complexity.Mutation.DeleteTrustCenterWatermarkConfig == nil { + if e.ComplexityRoot.Mutation.DeleteTrustCenterWatermarkConfig == nil { break } @@ -27071,10 +27054,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteTrustCenterWatermarkConfig(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteTrustCenterWatermarkConfig(childComplexity, args["id"].(string)), true case "Mutation.deleteUser": - if e.complexity.Mutation.DeleteUser == nil { + if e.ComplexityRoot.Mutation.DeleteUser == nil { break } @@ -27083,10 +27066,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteUser(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteUser(childComplexity, args["id"].(string)), true case "Mutation.deleteVulnerability": - if e.complexity.Mutation.DeleteVulnerability == nil { + if e.ComplexityRoot.Mutation.DeleteVulnerability == nil { break } @@ -27095,10 +27078,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteVulnerability(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteVulnerability(childComplexity, args["id"].(string)), true case "Mutation.deleteWebauthn": - if e.complexity.Mutation.DeleteWebauthn == nil { + if e.ComplexityRoot.Mutation.DeleteWebauthn == nil { break } @@ -27107,10 +27090,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteWebauthn(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteWebauthn(childComplexity, args["id"].(string)), true case "Mutation.deleteWorkflowDefinition": - if e.complexity.Mutation.DeleteWorkflowDefinition == nil { + if e.ComplexityRoot.Mutation.DeleteWorkflowDefinition == nil { break } @@ -27119,10 +27102,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DeleteWorkflowDefinition(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.DeleteWorkflowDefinition(childComplexity, args["id"].(string)), true case "Mutation.denyNDARequests": - if e.complexity.Mutation.DenyNDARequests == nil { + if e.ComplexityRoot.Mutation.DenyNDARequests == nil { break } @@ -27131,10 +27114,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.DenyNDARequests(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.DenyNDARequests(childComplexity, args["ids"].([]string)), true case "Mutation.forceCompleteWorkflowInstance": - if e.complexity.Mutation.ForceCompleteWorkflowInstance == nil { + if e.ComplexityRoot.Mutation.ForceCompleteWorkflowInstance == nil { break } @@ -27143,10 +27126,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.ForceCompleteWorkflowInstance(childComplexity, args["id"].(string), args["applyProposal"].(*bool)), true + return e.ComplexityRoot.Mutation.ForceCompleteWorkflowInstance(childComplexity, args["id"].(string), args["applyProposal"].(*bool)), true case "Mutation.launchCampaign": - if e.complexity.Mutation.LaunchCampaign == nil { + if e.ComplexityRoot.Mutation.LaunchCampaign == nil { break } @@ -27155,10 +27138,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.LaunchCampaign(childComplexity, args["input"].(model.LaunchCampaignInput)), true + return e.ComplexityRoot.Mutation.LaunchCampaign(childComplexity, args["input"].(model.LaunchCampaignInput)), true case "Mutation.markNotificationsAsRead": - if e.complexity.Mutation.MarkNotificationsAsRead == nil { + if e.ComplexityRoot.Mutation.MarkNotificationsAsRead == nil { break } @@ -27167,17 +27150,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.MarkNotificationsAsRead(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Mutation.MarkNotificationsAsRead(childComplexity, args["ids"].([]string)), true case "Mutation.publishTrustCenterSetting": - if e.complexity.Mutation.PublishTrustCenterSetting == nil { + if e.ComplexityRoot.Mutation.PublishTrustCenterSetting == nil { break } - return e.complexity.Mutation.PublishTrustCenterSetting(childComplexity), true + return e.ComplexityRoot.Mutation.PublishTrustCenterSetting(childComplexity), true case "Mutation.reassignWorkflowAssignment": - if e.complexity.Mutation.ReassignWorkflowAssignment == nil { + if e.ComplexityRoot.Mutation.ReassignWorkflowAssignment == nil { break } @@ -27186,10 +27169,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.ReassignWorkflowAssignment(childComplexity, args["id"].(string), args["targetUserID"].(string)), true + return e.ComplexityRoot.Mutation.ReassignWorkflowAssignment(childComplexity, args["id"].(string), args["targetUserID"].(string)), true case "Mutation.rejectWorkflowAssignment": - if e.complexity.Mutation.RejectWorkflowAssignment == nil { + if e.ComplexityRoot.Mutation.RejectWorkflowAssignment == nil { break } @@ -27198,10 +27181,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.RejectWorkflowAssignment(childComplexity, args["id"].(string), args["reason"].(*string)), true + return e.ComplexityRoot.Mutation.RejectWorkflowAssignment(childComplexity, args["id"].(string), args["reason"].(*string)), true case "Mutation.requestChangesWorkflowAssignment": - if e.complexity.Mutation.RequestChangesWorkflowAssignment == nil { + if e.ComplexityRoot.Mutation.RequestChangesWorkflowAssignment == nil { break } @@ -27210,10 +27193,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.RequestChangesWorkflowAssignment(childComplexity, args["id"].(string), args["reason"].(*string), args["inputs"].(map[string]any)), true + return e.ComplexityRoot.Mutation.RequestChangesWorkflowAssignment(childComplexity, args["id"].(string), args["reason"].(*string), args["inputs"].(map[string]any)), true case "Mutation.requestNewTrustCenterToken": - if e.complexity.Mutation.RequestNewTrustCenterToken == nil { + if e.ComplexityRoot.Mutation.RequestNewTrustCenterToken == nil { break } @@ -27222,10 +27205,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.RequestNewTrustCenterToken(childComplexity, args["email"].(string)), true + return e.ComplexityRoot.Mutation.RequestNewTrustCenterToken(childComplexity, args["email"].(string)), true case "Mutation.resendCampaignIncompleteTargets": - if e.complexity.Mutation.ResendCampaignIncompleteTargets == nil { + if e.ComplexityRoot.Mutation.ResendCampaignIncompleteTargets == nil { break } @@ -27234,10 +27217,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.ResendCampaignIncompleteTargets(childComplexity, args["input"].(model.ResendCampaignIncompleteInput)), true + return e.ComplexityRoot.Mutation.ResendCampaignIncompleteTargets(childComplexity, args["input"].(model.ResendCampaignIncompleteInput)), true case "Mutation.resolveVulnerability": - if e.complexity.Mutation.ResolveVulnerability == nil { + if e.ComplexityRoot.Mutation.ResolveVulnerability == nil { break } @@ -27246,10 +27229,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.ResolveVulnerability(childComplexity, args["id"].(string), args["input"].(model.ResolveVulnerabilityInput)), true + return e.ComplexityRoot.Mutation.ResolveVulnerability(childComplexity, args["id"].(string), args["input"].(model.ResolveVulnerabilityInput)), true case "Mutation.sendCampaignTestEmail": - if e.complexity.Mutation.SendCampaignTestEmail == nil { + if e.ComplexityRoot.Mutation.SendCampaignTestEmail == nil { break } @@ -27258,10 +27241,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.SendCampaignTestEmail(childComplexity, args["input"].(model.SendCampaignTestEmailInput)), true + return e.ComplexityRoot.Mutation.SendCampaignTestEmail(childComplexity, args["input"].(model.SendCampaignTestEmailInput)), true case "Mutation.submitTrustCenterNDAResponse": - if e.complexity.Mutation.SubmitTrustCenterNDAResponse == nil { + if e.ComplexityRoot.Mutation.SubmitTrustCenterNDAResponse == nil { break } @@ -27270,10 +27253,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.SubmitTrustCenterNDAResponse(childComplexity, args["input"].(model.SubmitTrustCenterNDAResponseInput)), true + return e.ComplexityRoot.Mutation.SubmitTrustCenterNDAResponse(childComplexity, args["input"].(model.SubmitTrustCenterNDAResponseInput)), true case "Mutation.submitWorkflowProposal": - if e.complexity.Mutation.SubmitWorkflowProposal == nil { + if e.ComplexityRoot.Mutation.SubmitWorkflowProposal == nil { break } @@ -27282,10 +27265,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.SubmitWorkflowProposal(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.SubmitWorkflowProposal(childComplexity, args["id"].(string)), true case "Mutation.transferOrganizationOwnership": - if e.complexity.Mutation.TransferOrganizationOwnership == nil { + if e.ComplexityRoot.Mutation.TransferOrganizationOwnership == nil { break } @@ -27294,10 +27277,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.TransferOrganizationOwnership(childComplexity, args["newOwnerEmail"].(string)), true + return e.ComplexityRoot.Mutation.TransferOrganizationOwnership(childComplexity, args["newOwnerEmail"].(string)), true case "Mutation.updateAPIToken": - if e.complexity.Mutation.UpdateAPIToken == nil { + if e.ComplexityRoot.Mutation.UpdateAPIToken == nil { break } @@ -27306,10 +27289,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateAPIToken(childComplexity, args["id"].(string), args["input"].(generated.UpdateAPITokenInput)), true + return e.ComplexityRoot.Mutation.UpdateAPIToken(childComplexity, args["id"].(string), args["input"].(generated.UpdateAPITokenInput)), true case "Mutation.updateActionPlan": - if e.complexity.Mutation.UpdateActionPlan == nil { + if e.ComplexityRoot.Mutation.UpdateActionPlan == nil { break } @@ -27318,10 +27301,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateActionPlan(childComplexity, args["id"].(string), args["input"].(generated.UpdateActionPlanInput)), true + return e.ComplexityRoot.Mutation.UpdateActionPlan(childComplexity, args["id"].(string), args["input"].(generated.UpdateActionPlanInput)), true case "Mutation.updateAssessment": - if e.complexity.Mutation.UpdateAssessment == nil { + if e.ComplexityRoot.Mutation.UpdateAssessment == nil { break } @@ -27330,10 +27313,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateAssessment(childComplexity, args["id"].(string), args["input"].(generated.UpdateAssessmentInput)), true + return e.ComplexityRoot.Mutation.UpdateAssessment(childComplexity, args["id"].(string), args["input"].(generated.UpdateAssessmentInput)), true case "Mutation.updateAsset": - if e.complexity.Mutation.UpdateAsset == nil { + if e.ComplexityRoot.Mutation.UpdateAsset == nil { break } @@ -27342,10 +27325,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateAsset(childComplexity, args["id"].(string), args["input"].(generated.UpdateAssetInput)), true + return e.ComplexityRoot.Mutation.UpdateAsset(childComplexity, args["id"].(string), args["input"].(generated.UpdateAssetInput)), true case "Mutation.updateBulkAPIToken": - if e.complexity.Mutation.UpdateBulkAPIToken == nil { + if e.ComplexityRoot.Mutation.UpdateBulkAPIToken == nil { break } @@ -27354,10 +27337,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkAPIToken(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateAPITokenInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkAPIToken(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateAPITokenInput)), true case "Mutation.updateBulkActionPlan": - if e.complexity.Mutation.UpdateBulkActionPlan == nil { + if e.ComplexityRoot.Mutation.UpdateBulkActionPlan == nil { break } @@ -27366,10 +27349,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkActionPlan(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateActionPlanInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkActionPlan(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateActionPlanInput)), true case "Mutation.updateBulkAsset": - if e.complexity.Mutation.UpdateBulkAsset == nil { + if e.ComplexityRoot.Mutation.UpdateBulkAsset == nil { break } @@ -27378,10 +27361,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkAsset(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateAssetInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkAsset(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateAssetInput)), true case "Mutation.updateBulkCSVAPIToken": - if e.complexity.Mutation.UpdateBulkCSVAPIToken == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVAPIToken == nil { break } @@ -27390,10 +27373,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVAPIToken(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVAPIToken(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVActionPlan": - if e.complexity.Mutation.UpdateBulkCSVActionPlan == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVActionPlan == nil { break } @@ -27402,10 +27385,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVActionPlan(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVActionPlan(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVAsset": - if e.complexity.Mutation.UpdateBulkCSVAsset == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVAsset == nil { break } @@ -27414,10 +27397,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVAsset(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVAsset(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVContact": - if e.complexity.Mutation.UpdateBulkCSVContact == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVContact == nil { break } @@ -27426,10 +27409,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVContact(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVContact(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVControl": - if e.complexity.Mutation.UpdateBulkCSVControl == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVControl == nil { break } @@ -27438,10 +27421,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVControl(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVControl(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVControlImplementation": - if e.complexity.Mutation.UpdateBulkCSVControlImplementation == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVControlImplementation == nil { break } @@ -27450,10 +27433,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVControlImplementation(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVControlImplementation(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVControlObjective": - if e.complexity.Mutation.UpdateBulkCSVControlObjective == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVControlObjective == nil { break } @@ -27462,10 +27445,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVControlObjective(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVControlObjective(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVCustomDomain": - if e.complexity.Mutation.UpdateBulkCSVCustomDomain == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVCustomDomain == nil { break } @@ -27474,10 +27457,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVCustomDomain(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVCustomDomain(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVDNSVerification": - if e.complexity.Mutation.UpdateBulkCSVDNSVerification == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVDNSVerification == nil { break } @@ -27486,10 +27469,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVDNSVerification(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVDNSVerification(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVDocumentData": - if e.complexity.Mutation.UpdateBulkCSVDocumentData == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVDocumentData == nil { break } @@ -27498,10 +27481,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVDocumentData(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVDocumentData(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVEmailBranding": - if e.complexity.Mutation.UpdateBulkCSVEmailBranding == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVEmailBranding == nil { break } @@ -27510,10 +27493,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVEmailBranding(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVEmailBranding(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVEmailTemplate": - if e.complexity.Mutation.UpdateBulkCSVEmailTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVEmailTemplate == nil { break } @@ -27522,10 +27505,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVEmailTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVEmailTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVEntity": - if e.complexity.Mutation.UpdateBulkCSVEntity == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVEntity == nil { break } @@ -27534,10 +27517,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVEntity(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVEntity(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVEntityType": - if e.complexity.Mutation.UpdateBulkCSVEntityType == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVEntityType == nil { break } @@ -27546,10 +27529,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVEntityType(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVEntityType(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVEvent": - if e.complexity.Mutation.UpdateBulkCSVEvent == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVEvent == nil { break } @@ -27558,10 +27541,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVEvent(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVEvent(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVEvidence": - if e.complexity.Mutation.UpdateBulkCSVEvidence == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVEvidence == nil { break } @@ -27570,10 +27553,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVEvidence(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVEvidence(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVGroup": - if e.complexity.Mutation.UpdateBulkCSVGroup == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVGroup == nil { break } @@ -27582,10 +27565,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVGroup(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVGroup(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVGroupMembership": - if e.complexity.Mutation.UpdateBulkCSVGroupMembership == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVGroupMembership == nil { break } @@ -27594,10 +27577,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVGroupMembership(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVGroupMembership(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVGroupSetting": - if e.complexity.Mutation.UpdateBulkCSVGroupSetting == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVGroupSetting == nil { break } @@ -27606,10 +27589,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVGroupSetting(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVGroupSetting(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVHush": - if e.complexity.Mutation.UpdateBulkCSVHush == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVHush == nil { break } @@ -27618,10 +27601,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVHush(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVHush(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVIdentityHolder": - if e.complexity.Mutation.UpdateBulkCSVIdentityHolder == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVIdentityHolder == nil { break } @@ -27630,10 +27613,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVIdentityHolder(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVIdentityHolder(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVInternalPolicy": - if e.complexity.Mutation.UpdateBulkCSVInternalPolicy == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVInternalPolicy == nil { break } @@ -27642,10 +27625,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVInternalPolicy(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVInternalPolicy(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVInvite": - if e.complexity.Mutation.UpdateBulkCSVInvite == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVInvite == nil { break } @@ -27654,10 +27637,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVInvite(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVInvite(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVJobTemplate": - if e.complexity.Mutation.UpdateBulkCSVJobTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVJobTemplate == nil { break } @@ -27666,10 +27649,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVJobTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVJobTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVMappableDomain": - if e.complexity.Mutation.UpdateBulkCSVMappableDomain == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVMappableDomain == nil { break } @@ -27678,10 +27661,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVMappableDomain(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVMappableDomain(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVMappedControl": - if e.complexity.Mutation.UpdateBulkCSVMappedControl == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVMappedControl == nil { break } @@ -27690,10 +27673,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVMappedControl(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVMappedControl(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVNarrative": - if e.complexity.Mutation.UpdateBulkCSVNarrative == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVNarrative == nil { break } @@ -27702,10 +27685,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVNarrative(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVNarrative(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVNotificationPreference": - if e.complexity.Mutation.UpdateBulkCSVNotificationPreference == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVNotificationPreference == nil { break } @@ -27714,10 +27697,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVNotificationPreference(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVNotificationPreference(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVNotificationTemplate": - if e.complexity.Mutation.UpdateBulkCSVNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVNotificationTemplate == nil { break } @@ -27726,10 +27709,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVNotificationTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVNotificationTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVOrgMembership": - if e.complexity.Mutation.UpdateBulkCSVOrgMembership == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVOrgMembership == nil { break } @@ -27738,10 +27721,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVOrgMembership(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVOrgMembership(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVOrganizationSetting": - if e.complexity.Mutation.UpdateBulkCSVOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVOrganizationSetting == nil { break } @@ -27750,10 +27733,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVOrganizationSetting(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVOrganizationSetting(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVProcedure": - if e.complexity.Mutation.UpdateBulkCSVProcedure == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVProcedure == nil { break } @@ -27762,10 +27745,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVProcedure(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVProcedure(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVProgram": - if e.complexity.Mutation.UpdateBulkCSVProgram == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVProgram == nil { break } @@ -27774,10 +27757,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVProgram(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVProgram(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVProgramMembership": - if e.complexity.Mutation.UpdateBulkCSVProgramMembership == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVProgramMembership == nil { break } @@ -27786,10 +27769,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVProgramMembership(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVProgramMembership(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVRisk": - if e.complexity.Mutation.UpdateBulkCSVRisk == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVRisk == nil { break } @@ -27798,10 +27781,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVRisk(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVRisk(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVScan": - if e.complexity.Mutation.UpdateBulkCSVScan == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVScan == nil { break } @@ -27810,10 +27793,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVScan(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVScan(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVScheduledJob": - if e.complexity.Mutation.UpdateBulkCSVScheduledJob == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVScheduledJob == nil { break } @@ -27822,10 +27805,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVScheduledJob(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVScheduledJob(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVSubcontrol": - if e.complexity.Mutation.UpdateBulkCSVSubcontrol == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVSubcontrol == nil { break } @@ -27834,10 +27817,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVSubcontrol(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVSubcontrol(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVSubprocessor": - if e.complexity.Mutation.UpdateBulkCSVSubprocessor == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVSubprocessor == nil { break } @@ -27846,10 +27829,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVSubprocessor(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVSubprocessor(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVTask": - if e.complexity.Mutation.UpdateBulkCSVTask == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVTask == nil { break } @@ -27858,10 +27841,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVTask(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVTask(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVTemplate": - if e.complexity.Mutation.UpdateBulkCSVTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVTemplate == nil { break } @@ -27870,10 +27853,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVTemplate(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVTemplate(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVTrustCenterCompliance": - if e.complexity.Mutation.UpdateBulkCSVTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterCompliance == nil { break } @@ -27882,10 +27865,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVTrustCenterCompliance(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterCompliance(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVTrustCenterDoc": - if e.complexity.Mutation.UpdateBulkCSVTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterDoc == nil { break } @@ -27894,10 +27877,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVTrustCenterDoc(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterDoc(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVTrustCenterFAQ": - if e.complexity.Mutation.UpdateBulkCSVTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterFaq == nil { break } @@ -27906,10 +27889,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVTrustCenterFaq(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterFaq(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVTrustCenterSubprocessor": - if e.complexity.Mutation.UpdateBulkCSVTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterSubprocessor == nil { break } @@ -27918,10 +27901,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVTrustCenterSubprocessor(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVTrustCenterSubprocessor(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkCSVUserSetting": - if e.complexity.Mutation.UpdateBulkCSVUserSetting == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCSVUserSetting == nil { break } @@ -27930,10 +27913,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCSVUserSetting(childComplexity, args["input"].(graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateBulkCSVUserSetting(childComplexity, args["input"].(graphql.Upload)), true case "Mutation.updateBulkContact": - if e.complexity.Mutation.UpdateBulkContact == nil { + if e.ComplexityRoot.Mutation.UpdateBulkContact == nil { break } @@ -27942,10 +27925,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkContact(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateContactInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkContact(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateContactInput)), true case "Mutation.updateBulkControl": - if e.complexity.Mutation.UpdateBulkControl == nil { + if e.ComplexityRoot.Mutation.UpdateBulkControl == nil { break } @@ -27954,10 +27937,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkControl(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateControlInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkControl(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateControlInput)), true case "Mutation.updateBulkControlImplementation": - if e.complexity.Mutation.UpdateBulkControlImplementation == nil { + if e.ComplexityRoot.Mutation.UpdateBulkControlImplementation == nil { break } @@ -27966,10 +27949,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkControlImplementation(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateControlImplementationInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkControlImplementation(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateControlImplementationInput)), true case "Mutation.updateBulkControlObjective": - if e.complexity.Mutation.UpdateBulkControlObjective == nil { + if e.ComplexityRoot.Mutation.UpdateBulkControlObjective == nil { break } @@ -27978,10 +27961,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkControlObjective(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateControlObjectiveInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkControlObjective(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateControlObjectiveInput)), true case "Mutation.updateBulkCustomDomain": - if e.complexity.Mutation.UpdateBulkCustomDomain == nil { + if e.ComplexityRoot.Mutation.UpdateBulkCustomDomain == nil { break } @@ -27990,10 +27973,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkCustomDomain(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateCustomDomainInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkCustomDomain(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateCustomDomainInput)), true case "Mutation.updateBulkDNSVerification": - if e.complexity.Mutation.UpdateBulkDNSVerification == nil { + if e.ComplexityRoot.Mutation.UpdateBulkDNSVerification == nil { break } @@ -28002,10 +27985,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkDNSVerification(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateDNSVerificationInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkDNSVerification(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateDNSVerificationInput)), true case "Mutation.updateBulkDocumentData": - if e.complexity.Mutation.UpdateBulkDocumentData == nil { + if e.ComplexityRoot.Mutation.UpdateBulkDocumentData == nil { break } @@ -28014,10 +27997,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkDocumentData(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateDocumentDataInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkDocumentData(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateDocumentDataInput)), true case "Mutation.updateBulkEmailBranding": - if e.complexity.Mutation.UpdateBulkEmailBranding == nil { + if e.ComplexityRoot.Mutation.UpdateBulkEmailBranding == nil { break } @@ -28026,10 +28009,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkEmailBranding(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEmailBrandingInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkEmailBranding(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEmailBrandingInput)), true case "Mutation.updateBulkEmailTemplate": - if e.complexity.Mutation.UpdateBulkEmailTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkEmailTemplate == nil { break } @@ -28038,10 +28021,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkEmailTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEmailTemplateInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkEmailTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEmailTemplateInput)), true case "Mutation.updateBulkEntity": - if e.complexity.Mutation.UpdateBulkEntity == nil { + if e.ComplexityRoot.Mutation.UpdateBulkEntity == nil { break } @@ -28050,10 +28033,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkEntity(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEntityInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkEntity(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEntityInput)), true case "Mutation.updateBulkEntityType": - if e.complexity.Mutation.UpdateBulkEntityType == nil { + if e.ComplexityRoot.Mutation.UpdateBulkEntityType == nil { break } @@ -28062,10 +28045,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkEntityType(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEntityTypeInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkEntityType(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEntityTypeInput)), true case "Mutation.updateBulkEvent": - if e.complexity.Mutation.UpdateBulkEvent == nil { + if e.ComplexityRoot.Mutation.UpdateBulkEvent == nil { break } @@ -28074,10 +28057,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkEvent(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEventInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkEvent(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEventInput)), true case "Mutation.updateBulkEvidence": - if e.complexity.Mutation.UpdateBulkEvidence == nil { + if e.ComplexityRoot.Mutation.UpdateBulkEvidence == nil { break } @@ -28086,10 +28069,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkEvidence(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEvidenceInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkEvidence(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateEvidenceInput)), true case "Mutation.updateBulkGroup": - if e.complexity.Mutation.UpdateBulkGroup == nil { + if e.ComplexityRoot.Mutation.UpdateBulkGroup == nil { break } @@ -28098,10 +28081,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkGroup(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateGroupInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkGroup(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateGroupInput)), true case "Mutation.updateBulkGroupMembership": - if e.complexity.Mutation.UpdateBulkGroupMembership == nil { + if e.ComplexityRoot.Mutation.UpdateBulkGroupMembership == nil { break } @@ -28110,10 +28093,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkGroupMembership(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateGroupMembershipInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkGroupMembership(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateGroupMembershipInput)), true case "Mutation.updateBulkGroupSetting": - if e.complexity.Mutation.UpdateBulkGroupSetting == nil { + if e.ComplexityRoot.Mutation.UpdateBulkGroupSetting == nil { break } @@ -28122,10 +28105,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkGroupSetting(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateGroupSettingInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkGroupSetting(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateGroupSettingInput)), true case "Mutation.updateBulkHush": - if e.complexity.Mutation.UpdateBulkHush == nil { + if e.ComplexityRoot.Mutation.UpdateBulkHush == nil { break } @@ -28134,10 +28117,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkHush(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateHushInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkHush(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateHushInput)), true case "Mutation.updateBulkIdentityHolder": - if e.complexity.Mutation.UpdateBulkIdentityHolder == nil { + if e.ComplexityRoot.Mutation.UpdateBulkIdentityHolder == nil { break } @@ -28146,10 +28129,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkIdentityHolder(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateIdentityHolderInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkIdentityHolder(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateIdentityHolderInput)), true case "Mutation.updateBulkInternalPolicy": - if e.complexity.Mutation.UpdateBulkInternalPolicy == nil { + if e.ComplexityRoot.Mutation.UpdateBulkInternalPolicy == nil { break } @@ -28158,10 +28141,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkInternalPolicy(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateInternalPolicyInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkInternalPolicy(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateInternalPolicyInput)), true case "Mutation.updateBulkInvite": - if e.complexity.Mutation.UpdateBulkInvite == nil { + if e.ComplexityRoot.Mutation.UpdateBulkInvite == nil { break } @@ -28170,10 +28153,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkInvite(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateInviteInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkInvite(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateInviteInput)), true case "Mutation.updateBulkJobTemplate": - if e.complexity.Mutation.UpdateBulkJobTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkJobTemplate == nil { break } @@ -28182,10 +28165,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkJobTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateJobTemplateInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkJobTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateJobTemplateInput)), true case "Mutation.updateBulkMappableDomain": - if e.complexity.Mutation.UpdateBulkMappableDomain == nil { + if e.ComplexityRoot.Mutation.UpdateBulkMappableDomain == nil { break } @@ -28194,10 +28177,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkMappableDomain(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateMappableDomainInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkMappableDomain(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateMappableDomainInput)), true case "Mutation.updateBulkMappedControl": - if e.complexity.Mutation.UpdateBulkMappedControl == nil { + if e.ComplexityRoot.Mutation.UpdateBulkMappedControl == nil { break } @@ -28206,10 +28189,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkMappedControl(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateMappedControlInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkMappedControl(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateMappedControlInput)), true case "Mutation.updateBulkNarrative": - if e.complexity.Mutation.UpdateBulkNarrative == nil { + if e.ComplexityRoot.Mutation.UpdateBulkNarrative == nil { break } @@ -28218,10 +28201,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkNarrative(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateNarrativeInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkNarrative(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateNarrativeInput)), true case "Mutation.updateBulkNotificationPreference": - if e.complexity.Mutation.UpdateBulkNotificationPreference == nil { + if e.ComplexityRoot.Mutation.UpdateBulkNotificationPreference == nil { break } @@ -28230,10 +28213,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkNotificationPreference(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateNotificationPreferenceInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkNotificationPreference(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateNotificationPreferenceInput)), true case "Mutation.updateBulkNotificationTemplate": - if e.complexity.Mutation.UpdateBulkNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkNotificationTemplate == nil { break } @@ -28242,10 +28225,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkNotificationTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateNotificationTemplateInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkNotificationTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateNotificationTemplateInput)), true case "Mutation.updateBulkOrgMembership": - if e.complexity.Mutation.UpdateBulkOrgMembership == nil { + if e.ComplexityRoot.Mutation.UpdateBulkOrgMembership == nil { break } @@ -28254,10 +28237,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkOrgMembership(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateOrgMembershipInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkOrgMembership(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateOrgMembershipInput)), true case "Mutation.updateBulkOrganizationSetting": - if e.complexity.Mutation.UpdateBulkOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.UpdateBulkOrganizationSetting == nil { break } @@ -28266,10 +28249,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkOrganizationSetting(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateOrganizationSettingInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkOrganizationSetting(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateOrganizationSettingInput)), true case "Mutation.updateBulkProcedure": - if e.complexity.Mutation.UpdateBulkProcedure == nil { + if e.ComplexityRoot.Mutation.UpdateBulkProcedure == nil { break } @@ -28278,10 +28261,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkProcedure(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateProcedureInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkProcedure(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateProcedureInput)), true case "Mutation.updateBulkProgram": - if e.complexity.Mutation.UpdateBulkProgram == nil { + if e.ComplexityRoot.Mutation.UpdateBulkProgram == nil { break } @@ -28290,10 +28273,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkProgram(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateProgramInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkProgram(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateProgramInput)), true case "Mutation.updateBulkProgramMembership": - if e.complexity.Mutation.UpdateBulkProgramMembership == nil { + if e.ComplexityRoot.Mutation.UpdateBulkProgramMembership == nil { break } @@ -28302,10 +28285,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkProgramMembership(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateProgramMembershipInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkProgramMembership(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateProgramMembershipInput)), true case "Mutation.updateBulkRisk": - if e.complexity.Mutation.UpdateBulkRisk == nil { + if e.ComplexityRoot.Mutation.UpdateBulkRisk == nil { break } @@ -28314,10 +28297,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkRisk(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateRiskInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkRisk(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateRiskInput)), true case "Mutation.updateBulkScan": - if e.complexity.Mutation.UpdateBulkScan == nil { + if e.ComplexityRoot.Mutation.UpdateBulkScan == nil { break } @@ -28326,10 +28309,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkScan(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateScanInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkScan(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateScanInput)), true case "Mutation.updateBulkScheduledJob": - if e.complexity.Mutation.UpdateBulkScheduledJob == nil { + if e.ComplexityRoot.Mutation.UpdateBulkScheduledJob == nil { break } @@ -28338,10 +28321,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkScheduledJob(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateScheduledJobInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkScheduledJob(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateScheduledJobInput)), true case "Mutation.updateBulkSubcontrol": - if e.complexity.Mutation.UpdateBulkSubcontrol == nil { + if e.ComplexityRoot.Mutation.UpdateBulkSubcontrol == nil { break } @@ -28350,10 +28333,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkSubcontrol(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateSubcontrolInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkSubcontrol(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateSubcontrolInput)), true case "Mutation.updateBulkSubprocessor": - if e.complexity.Mutation.UpdateBulkSubprocessor == nil { + if e.ComplexityRoot.Mutation.UpdateBulkSubprocessor == nil { break } @@ -28362,10 +28345,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkSubprocessor(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateSubprocessorInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkSubprocessor(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateSubprocessorInput)), true case "Mutation.updateBulkTask": - if e.complexity.Mutation.UpdateBulkTask == nil { + if e.ComplexityRoot.Mutation.UpdateBulkTask == nil { break } @@ -28374,10 +28357,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkTask(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTaskInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkTask(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTaskInput)), true case "Mutation.updateBulkTemplate": - if e.complexity.Mutation.UpdateBulkTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateBulkTemplate == nil { break } @@ -28386,10 +28369,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTemplateInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkTemplate(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTemplateInput)), true case "Mutation.updateBulkTrustCenterCompliance": - if e.complexity.Mutation.UpdateBulkTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.UpdateBulkTrustCenterCompliance == nil { break } @@ -28398,10 +28381,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkTrustCenterCompliance(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterComplianceInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkTrustCenterCompliance(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterComplianceInput)), true case "Mutation.updateBulkTrustCenterDoc": - if e.complexity.Mutation.UpdateBulkTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.UpdateBulkTrustCenterDoc == nil { break } @@ -28410,10 +28393,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkTrustCenterDoc(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterDocInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkTrustCenterDoc(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterDocInput)), true case "Mutation.updateBulkTrustCenterFAQ": - if e.complexity.Mutation.UpdateBulkTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.UpdateBulkTrustCenterFaq == nil { break } @@ -28422,10 +28405,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkTrustCenterFaq(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterFAQInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkTrustCenterFaq(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterFAQInput)), true case "Mutation.updateBulkTrustCenterSubprocessor": - if e.complexity.Mutation.UpdateBulkTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.UpdateBulkTrustCenterSubprocessor == nil { break } @@ -28434,10 +28417,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkTrustCenterSubprocessor(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterSubprocessorInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkTrustCenterSubprocessor(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateTrustCenterSubprocessorInput)), true case "Mutation.updateBulkUserSetting": - if e.complexity.Mutation.UpdateBulkUserSetting == nil { + if e.ComplexityRoot.Mutation.UpdateBulkUserSetting == nil { break } @@ -28446,10 +28429,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateBulkUserSetting(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateUserSettingInput)), true + return e.ComplexityRoot.Mutation.UpdateBulkUserSetting(childComplexity, args["ids"].([]string), args["input"].(generated.UpdateUserSettingInput)), true case "Mutation.updateCampaign": - if e.complexity.Mutation.UpdateCampaign == nil { + if e.ComplexityRoot.Mutation.UpdateCampaign == nil { break } @@ -28458,10 +28441,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateCampaign(childComplexity, args["id"].(string), args["input"].(generated.UpdateCampaignInput)), true + return e.ComplexityRoot.Mutation.UpdateCampaign(childComplexity, args["id"].(string), args["input"].(generated.UpdateCampaignInput)), true case "Mutation.updateCampaignTarget": - if e.complexity.Mutation.UpdateCampaignTarget == nil { + if e.ComplexityRoot.Mutation.UpdateCampaignTarget == nil { break } @@ -28470,10 +28453,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateCampaignTarget(childComplexity, args["id"].(string), args["input"].(generated.UpdateCampaignTargetInput)), true + return e.ComplexityRoot.Mutation.UpdateCampaignTarget(childComplexity, args["id"].(string), args["input"].(generated.UpdateCampaignTargetInput)), true case "Mutation.updateContact": - if e.complexity.Mutation.UpdateContact == nil { + if e.ComplexityRoot.Mutation.UpdateContact == nil { break } @@ -28482,10 +28465,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateContact(childComplexity, args["id"].(string), args["input"].(generated.UpdateContactInput)), true + return e.ComplexityRoot.Mutation.UpdateContact(childComplexity, args["id"].(string), args["input"].(generated.UpdateContactInput)), true case "Mutation.updateControl": - if e.complexity.Mutation.UpdateControl == nil { + if e.ComplexityRoot.Mutation.UpdateControl == nil { break } @@ -28494,10 +28477,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateControl(childComplexity, args["id"].(string), args["input"].(generated.UpdateControlInput)), true + return e.ComplexityRoot.Mutation.UpdateControl(childComplexity, args["id"].(string), args["input"].(generated.UpdateControlInput)), true case "Mutation.updateControlComment": - if e.complexity.Mutation.UpdateControlComment == nil { + if e.ComplexityRoot.Mutation.UpdateControlComment == nil { break } @@ -28506,10 +28489,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateControlComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateControlComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateControlImplementation": - if e.complexity.Mutation.UpdateControlImplementation == nil { + if e.ComplexityRoot.Mutation.UpdateControlImplementation == nil { break } @@ -28518,10 +28501,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateControlImplementation(childComplexity, args["id"].(string), args["input"].(generated.UpdateControlImplementationInput)), true + return e.ComplexityRoot.Mutation.UpdateControlImplementation(childComplexity, args["id"].(string), args["input"].(generated.UpdateControlImplementationInput)), true case "Mutation.updateControlObjective": - if e.complexity.Mutation.UpdateControlObjective == nil { + if e.ComplexityRoot.Mutation.UpdateControlObjective == nil { break } @@ -28530,10 +28513,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateControlObjective(childComplexity, args["id"].(string), args["input"].(generated.UpdateControlObjectiveInput)), true + return e.ComplexityRoot.Mutation.UpdateControlObjective(childComplexity, args["id"].(string), args["input"].(generated.UpdateControlObjectiveInput)), true case "Mutation.updateCustomDomain": - if e.complexity.Mutation.UpdateCustomDomain == nil { + if e.ComplexityRoot.Mutation.UpdateCustomDomain == nil { break } @@ -28542,10 +28525,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateCustomDomain(childComplexity, args["id"].(string), args["input"].(generated.UpdateCustomDomainInput)), true + return e.ComplexityRoot.Mutation.UpdateCustomDomain(childComplexity, args["id"].(string), args["input"].(generated.UpdateCustomDomainInput)), true case "Mutation.updateCustomTypeEnum": - if e.complexity.Mutation.UpdateCustomTypeEnum == nil { + if e.ComplexityRoot.Mutation.UpdateCustomTypeEnum == nil { break } @@ -28554,10 +28537,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateCustomTypeEnum(childComplexity, args["id"].(string), args["input"].(generated.UpdateCustomTypeEnumInput)), true + return e.ComplexityRoot.Mutation.UpdateCustomTypeEnum(childComplexity, args["id"].(string), args["input"].(generated.UpdateCustomTypeEnumInput)), true case "Mutation.updateDNSVerification": - if e.complexity.Mutation.UpdateDNSVerification == nil { + if e.ComplexityRoot.Mutation.UpdateDNSVerification == nil { break } @@ -28566,10 +28549,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateDNSVerification(childComplexity, args["id"].(string), args["input"].(generated.UpdateDNSVerificationInput)), true + return e.ComplexityRoot.Mutation.UpdateDNSVerification(childComplexity, args["id"].(string), args["input"].(generated.UpdateDNSVerificationInput)), true case "Mutation.updateDirectoryAccount": - if e.complexity.Mutation.UpdateDirectoryAccount == nil { + if e.ComplexityRoot.Mutation.UpdateDirectoryAccount == nil { break } @@ -28578,10 +28561,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateDirectoryAccount(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectoryAccountInput)), true + return e.ComplexityRoot.Mutation.UpdateDirectoryAccount(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectoryAccountInput)), true case "Mutation.updateDirectoryGroup": - if e.complexity.Mutation.UpdateDirectoryGroup == nil { + if e.ComplexityRoot.Mutation.UpdateDirectoryGroup == nil { break } @@ -28590,10 +28573,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateDirectoryGroup(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectoryGroupInput)), true + return e.ComplexityRoot.Mutation.UpdateDirectoryGroup(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectoryGroupInput)), true case "Mutation.updateDirectoryMembership": - if e.complexity.Mutation.UpdateDirectoryMembership == nil { + if e.ComplexityRoot.Mutation.UpdateDirectoryMembership == nil { break } @@ -28602,10 +28585,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateDirectoryMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectoryMembershipInput)), true + return e.ComplexityRoot.Mutation.UpdateDirectoryMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectoryMembershipInput)), true case "Mutation.updateDirectorySyncRun": - if e.complexity.Mutation.UpdateDirectorySyncRun == nil { + if e.ComplexityRoot.Mutation.UpdateDirectorySyncRun == nil { break } @@ -28614,10 +28597,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateDirectorySyncRun(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectorySyncRunInput)), true + return e.ComplexityRoot.Mutation.UpdateDirectorySyncRun(childComplexity, args["id"].(string), args["input"].(generated.UpdateDirectorySyncRunInput)), true case "Mutation.updateDiscussion": - if e.complexity.Mutation.UpdateDiscussion == nil { + if e.ComplexityRoot.Mutation.UpdateDiscussion == nil { break } @@ -28626,10 +28609,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateDiscussion(childComplexity, args["id"].(string), args["input"].(generated.UpdateDiscussionInput)), true + return e.ComplexityRoot.Mutation.UpdateDiscussion(childComplexity, args["id"].(string), args["input"].(generated.UpdateDiscussionInput)), true case "Mutation.updateDocumentData": - if e.complexity.Mutation.UpdateDocumentData == nil { + if e.ComplexityRoot.Mutation.UpdateDocumentData == nil { break } @@ -28638,10 +28621,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateDocumentData(childComplexity, args["id"].(string), args["input"].(generated.UpdateDocumentDataInput), args["documentDataFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateDocumentData(childComplexity, args["id"].(string), args["input"].(generated.UpdateDocumentDataInput), args["documentDataFile"].(*graphql.Upload)), true case "Mutation.updateEmailBranding": - if e.complexity.Mutation.UpdateEmailBranding == nil { + if e.ComplexityRoot.Mutation.UpdateEmailBranding == nil { break } @@ -28650,10 +28633,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateEmailBranding(childComplexity, args["id"].(string), args["input"].(generated.UpdateEmailBrandingInput)), true + return e.ComplexityRoot.Mutation.UpdateEmailBranding(childComplexity, args["id"].(string), args["input"].(generated.UpdateEmailBrandingInput)), true case "Mutation.updateEmailTemplate": - if e.complexity.Mutation.UpdateEmailTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateEmailTemplate == nil { break } @@ -28662,10 +28645,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateEmailTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateEmailTemplateInput)), true + return e.ComplexityRoot.Mutation.UpdateEmailTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateEmailTemplateInput)), true case "Mutation.updateEntity": - if e.complexity.Mutation.UpdateEntity == nil { + if e.ComplexityRoot.Mutation.UpdateEntity == nil { break } @@ -28674,10 +28657,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateEntity(childComplexity, args["id"].(string), args["input"].(generated.UpdateEntityInput)), true + return e.ComplexityRoot.Mutation.UpdateEntity(childComplexity, args["id"].(string), args["input"].(generated.UpdateEntityInput)), true case "Mutation.updateEntityType": - if e.complexity.Mutation.UpdateEntityType == nil { + if e.ComplexityRoot.Mutation.UpdateEntityType == nil { break } @@ -28686,10 +28669,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateEntityType(childComplexity, args["id"].(string), args["input"].(generated.UpdateEntityTypeInput)), true + return e.ComplexityRoot.Mutation.UpdateEntityType(childComplexity, args["id"].(string), args["input"].(generated.UpdateEntityTypeInput)), true case "Mutation.updateEvent": - if e.complexity.Mutation.UpdateEvent == nil { + if e.ComplexityRoot.Mutation.UpdateEvent == nil { break } @@ -28698,10 +28681,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateEvent(childComplexity, args["id"].(string), args["input"].(generated.UpdateEventInput)), true + return e.ComplexityRoot.Mutation.UpdateEvent(childComplexity, args["id"].(string), args["input"].(generated.UpdateEventInput)), true case "Mutation.updateEvidence": - if e.complexity.Mutation.UpdateEvidence == nil { + if e.ComplexityRoot.Mutation.UpdateEvidence == nil { break } @@ -28710,10 +28693,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateEvidence(childComplexity, args["id"].(string), args["input"].(generated.UpdateEvidenceInput), args["evidenceFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateEvidence(childComplexity, args["id"].(string), args["input"].(generated.UpdateEvidenceInput), args["evidenceFiles"].([]*graphql.Upload)), true case "Mutation.updateEvidenceComment": - if e.complexity.Mutation.UpdateEvidenceComment == nil { + if e.ComplexityRoot.Mutation.UpdateEvidenceComment == nil { break } @@ -28722,10 +28705,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateEvidenceComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateEvidenceComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateExport": - if e.complexity.Mutation.UpdateExport == nil { + if e.ComplexityRoot.Mutation.UpdateExport == nil { break } @@ -28734,10 +28717,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateExport(childComplexity, args["id"].(string), args["input"].(generated.UpdateExportInput), args["exportFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateExport(childComplexity, args["id"].(string), args["input"].(generated.UpdateExportInput), args["exportFiles"].([]*graphql.Upload)), true case "Mutation.updateFinding": - if e.complexity.Mutation.UpdateFinding == nil { + if e.ComplexityRoot.Mutation.UpdateFinding == nil { break } @@ -28746,10 +28729,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateFinding(childComplexity, args["id"].(string), args["input"].(generated.UpdateFindingInput)), true + return e.ComplexityRoot.Mutation.UpdateFinding(childComplexity, args["id"].(string), args["input"].(generated.UpdateFindingInput)), true case "Mutation.updateFindingControl": - if e.complexity.Mutation.UpdateFindingControl == nil { + if e.ComplexityRoot.Mutation.UpdateFindingControl == nil { break } @@ -28758,10 +28741,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateFindingControl(childComplexity, args["id"].(string), args["input"].(generated.UpdateFindingControlInput)), true + return e.ComplexityRoot.Mutation.UpdateFindingControl(childComplexity, args["id"].(string), args["input"].(generated.UpdateFindingControlInput)), true case "Mutation.updateGroup": - if e.complexity.Mutation.UpdateGroup == nil { + if e.ComplexityRoot.Mutation.UpdateGroup == nil { break } @@ -28770,10 +28753,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateGroup(childComplexity, args["id"].(string), args["input"].(generated.UpdateGroupInput)), true + return e.ComplexityRoot.Mutation.UpdateGroup(childComplexity, args["id"].(string), args["input"].(generated.UpdateGroupInput)), true case "Mutation.updateGroupMembership": - if e.complexity.Mutation.UpdateGroupMembership == nil { + if e.ComplexityRoot.Mutation.UpdateGroupMembership == nil { break } @@ -28782,10 +28765,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateGroupMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateGroupMembershipInput)), true + return e.ComplexityRoot.Mutation.UpdateGroupMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateGroupMembershipInput)), true case "Mutation.updateGroupSetting": - if e.complexity.Mutation.UpdateGroupSetting == nil { + if e.ComplexityRoot.Mutation.UpdateGroupSetting == nil { break } @@ -28794,10 +28777,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateGroupSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateGroupSettingInput)), true + return e.ComplexityRoot.Mutation.UpdateGroupSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateGroupSettingInput)), true case "Mutation.updateHush": - if e.complexity.Mutation.UpdateHush == nil { + if e.ComplexityRoot.Mutation.UpdateHush == nil { break } @@ -28806,10 +28789,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateHush(childComplexity, args["id"].(string), args["input"].(generated.UpdateHushInput)), true + return e.ComplexityRoot.Mutation.UpdateHush(childComplexity, args["id"].(string), args["input"].(generated.UpdateHushInput)), true case "Mutation.updateIdentityHolder": - if e.complexity.Mutation.UpdateIdentityHolder == nil { + if e.ComplexityRoot.Mutation.UpdateIdentityHolder == nil { break } @@ -28818,10 +28801,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateIdentityHolder(childComplexity, args["id"].(string), args["input"].(generated.UpdateIdentityHolderInput)), true + return e.ComplexityRoot.Mutation.UpdateIdentityHolder(childComplexity, args["id"].(string), args["input"].(generated.UpdateIdentityHolderInput)), true case "Mutation.updateInternalPolicy": - if e.complexity.Mutation.UpdateInternalPolicy == nil { + if e.ComplexityRoot.Mutation.UpdateInternalPolicy == nil { break } @@ -28830,10 +28813,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateInternalPolicy(childComplexity, args["id"].(string), args["input"].(generated.UpdateInternalPolicyInput), args["internalPolicyFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateInternalPolicy(childComplexity, args["id"].(string), args["input"].(generated.UpdateInternalPolicyInput), args["internalPolicyFile"].(*graphql.Upload)), true case "Mutation.updateInternalPolicyComment": - if e.complexity.Mutation.UpdateInternalPolicyComment == nil { + if e.ComplexityRoot.Mutation.UpdateInternalPolicyComment == nil { break } @@ -28842,10 +28825,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateInternalPolicyComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateInternalPolicyComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateInvite": - if e.complexity.Mutation.UpdateInvite == nil { + if e.ComplexityRoot.Mutation.UpdateInvite == nil { break } @@ -28854,10 +28837,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateInvite(childComplexity, args["id"].(string), args["input"].(generated.UpdateInviteInput)), true + return e.ComplexityRoot.Mutation.UpdateInvite(childComplexity, args["id"].(string), args["input"].(generated.UpdateInviteInput)), true case "Mutation.updateJobResult": - if e.complexity.Mutation.UpdateJobResult == nil { + if e.ComplexityRoot.Mutation.UpdateJobResult == nil { break } @@ -28866,10 +28849,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateJobResult(childComplexity, args["id"].(string), args["input"].(generated.UpdateJobResultInput), args["jobResultFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateJobResult(childComplexity, args["id"].(string), args["input"].(generated.UpdateJobResultInput), args["jobResultFiles"].([]*graphql.Upload)), true case "Mutation.updateJobRunner": - if e.complexity.Mutation.UpdateJobRunner == nil { + if e.ComplexityRoot.Mutation.UpdateJobRunner == nil { break } @@ -28878,10 +28861,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateJobRunner(childComplexity, args["id"].(string), args["input"].(generated.UpdateJobRunnerInput)), true + return e.ComplexityRoot.Mutation.UpdateJobRunner(childComplexity, args["id"].(string), args["input"].(generated.UpdateJobRunnerInput)), true case "Mutation.updateJobTemplate": - if e.complexity.Mutation.UpdateJobTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateJobTemplate == nil { break } @@ -28890,10 +28873,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateJobTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateJobTemplateInput)), true + return e.ComplexityRoot.Mutation.UpdateJobTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateJobTemplateInput)), true case "Mutation.updateMappableDomain": - if e.complexity.Mutation.UpdateMappableDomain == nil { + if e.ComplexityRoot.Mutation.UpdateMappableDomain == nil { break } @@ -28902,10 +28885,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateMappableDomain(childComplexity, args["id"].(string), args["input"].(generated.UpdateMappableDomainInput)), true + return e.ComplexityRoot.Mutation.UpdateMappableDomain(childComplexity, args["id"].(string), args["input"].(generated.UpdateMappableDomainInput)), true case "Mutation.updateMappedControl": - if e.complexity.Mutation.UpdateMappedControl == nil { + if e.ComplexityRoot.Mutation.UpdateMappedControl == nil { break } @@ -28914,10 +28897,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateMappedControl(childComplexity, args["id"].(string), args["input"].(generated.UpdateMappedControlInput)), true + return e.ComplexityRoot.Mutation.UpdateMappedControl(childComplexity, args["id"].(string), args["input"].(generated.UpdateMappedControlInput)), true case "Mutation.updateNarrative": - if e.complexity.Mutation.UpdateNarrative == nil { + if e.ComplexityRoot.Mutation.UpdateNarrative == nil { break } @@ -28926,10 +28909,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateNarrative(childComplexity, args["id"].(string), args["input"].(generated.UpdateNarrativeInput)), true + return e.ComplexityRoot.Mutation.UpdateNarrative(childComplexity, args["id"].(string), args["input"].(generated.UpdateNarrativeInput)), true case "Mutation.updateNotification": - if e.complexity.Mutation.UpdateNotification == nil { + if e.ComplexityRoot.Mutation.UpdateNotification == nil { break } @@ -28938,10 +28921,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateNotification(childComplexity, args["id"].(string), args["input"].(generated.UpdateNotificationInput)), true + return e.ComplexityRoot.Mutation.UpdateNotification(childComplexity, args["id"].(string), args["input"].(generated.UpdateNotificationInput)), true case "Mutation.updateNotificationPreference": - if e.complexity.Mutation.UpdateNotificationPreference == nil { + if e.ComplexityRoot.Mutation.UpdateNotificationPreference == nil { break } @@ -28950,10 +28933,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateNotificationPreference(childComplexity, args["id"].(string), args["input"].(generated.UpdateNotificationPreferenceInput)), true + return e.ComplexityRoot.Mutation.UpdateNotificationPreference(childComplexity, args["id"].(string), args["input"].(generated.UpdateNotificationPreferenceInput)), true case "Mutation.updateNotificationTemplate": - if e.complexity.Mutation.UpdateNotificationTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateNotificationTemplate == nil { break } @@ -28962,10 +28945,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateNotificationTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateNotificationTemplateInput)), true + return e.ComplexityRoot.Mutation.UpdateNotificationTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateNotificationTemplateInput)), true case "Mutation.updateOrgMembership": - if e.complexity.Mutation.UpdateOrgMembership == nil { + if e.ComplexityRoot.Mutation.UpdateOrgMembership == nil { break } @@ -28974,10 +28957,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateOrgMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateOrgMembershipInput)), true + return e.ComplexityRoot.Mutation.UpdateOrgMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateOrgMembershipInput)), true case "Mutation.updateOrganization": - if e.complexity.Mutation.UpdateOrganization == nil { + if e.ComplexityRoot.Mutation.UpdateOrganization == nil { break } @@ -28986,10 +28969,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateOrganization(childComplexity, args["id"].(string), args["input"].(generated.UpdateOrganizationInput), args["avatarFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateOrganization(childComplexity, args["id"].(string), args["input"].(generated.UpdateOrganizationInput), args["avatarFile"].(*graphql.Upload)), true case "Mutation.updateOrganizationSetting": - if e.complexity.Mutation.UpdateOrganizationSetting == nil { + if e.ComplexityRoot.Mutation.UpdateOrganizationSetting == nil { break } @@ -28998,10 +28981,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateOrganizationSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateOrganizationSettingInput)), true + return e.ComplexityRoot.Mutation.UpdateOrganizationSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateOrganizationSettingInput)), true case "Mutation.updatePersonalAccessToken": - if e.complexity.Mutation.UpdatePersonalAccessToken == nil { + if e.ComplexityRoot.Mutation.UpdatePersonalAccessToken == nil { break } @@ -29010,10 +28993,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdatePersonalAccessToken(childComplexity, args["id"].(string), args["input"].(generated.UpdatePersonalAccessTokenInput)), true + return e.ComplexityRoot.Mutation.UpdatePersonalAccessToken(childComplexity, args["id"].(string), args["input"].(generated.UpdatePersonalAccessTokenInput)), true case "Mutation.updatePlatform": - if e.complexity.Mutation.UpdatePlatform == nil { + if e.ComplexityRoot.Mutation.UpdatePlatform == nil { break } @@ -29022,10 +29005,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdatePlatform(childComplexity, args["id"].(string), args["input"].(generated.UpdatePlatformInput)), true + return e.ComplexityRoot.Mutation.UpdatePlatform(childComplexity, args["id"].(string), args["input"].(generated.UpdatePlatformInput)), true case "Mutation.updateProcedure": - if e.complexity.Mutation.UpdateProcedure == nil { + if e.ComplexityRoot.Mutation.UpdateProcedure == nil { break } @@ -29034,10 +29017,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateProcedure(childComplexity, args["id"].(string), args["input"].(generated.UpdateProcedureInput), args["procedureFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateProcedure(childComplexity, args["id"].(string), args["input"].(generated.UpdateProcedureInput), args["procedureFile"].(*graphql.Upload)), true case "Mutation.updateProcedureComment": - if e.complexity.Mutation.UpdateProcedureComment == nil { + if e.ComplexityRoot.Mutation.UpdateProcedureComment == nil { break } @@ -29046,10 +29029,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateProcedureComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateProcedureComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateProgram": - if e.complexity.Mutation.UpdateProgram == nil { + if e.ComplexityRoot.Mutation.UpdateProgram == nil { break } @@ -29058,10 +29041,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateProgram(childComplexity, args["id"].(string), args["input"].(generated.UpdateProgramInput)), true + return e.ComplexityRoot.Mutation.UpdateProgram(childComplexity, args["id"].(string), args["input"].(generated.UpdateProgramInput)), true case "Mutation.updateProgramMembership": - if e.complexity.Mutation.UpdateProgramMembership == nil { + if e.ComplexityRoot.Mutation.UpdateProgramMembership == nil { break } @@ -29070,10 +29053,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateProgramMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateProgramMembershipInput)), true + return e.ComplexityRoot.Mutation.UpdateProgramMembership(childComplexity, args["id"].(string), args["input"].(generated.UpdateProgramMembershipInput)), true case "Mutation.updateRemediation": - if e.complexity.Mutation.UpdateRemediation == nil { + if e.ComplexityRoot.Mutation.UpdateRemediation == nil { break } @@ -29082,10 +29065,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateRemediation(childComplexity, args["id"].(string), args["input"].(generated.UpdateRemediationInput)), true + return e.ComplexityRoot.Mutation.UpdateRemediation(childComplexity, args["id"].(string), args["input"].(generated.UpdateRemediationInput)), true case "Mutation.updateReview": - if e.complexity.Mutation.UpdateReview == nil { + if e.ComplexityRoot.Mutation.UpdateReview == nil { break } @@ -29094,10 +29077,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateReview(childComplexity, args["id"].(string), args["input"].(generated.UpdateReviewInput)), true + return e.ComplexityRoot.Mutation.UpdateReview(childComplexity, args["id"].(string), args["input"].(generated.UpdateReviewInput)), true case "Mutation.updateRisk": - if e.complexity.Mutation.UpdateRisk == nil { + if e.ComplexityRoot.Mutation.UpdateRisk == nil { break } @@ -29106,10 +29089,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateRisk(childComplexity, args["id"].(string), args["input"].(generated.UpdateRiskInput)), true + return e.ComplexityRoot.Mutation.UpdateRisk(childComplexity, args["id"].(string), args["input"].(generated.UpdateRiskInput)), true case "Mutation.updateRiskComment": - if e.complexity.Mutation.UpdateRiskComment == nil { + if e.ComplexityRoot.Mutation.UpdateRiskComment == nil { break } @@ -29118,10 +29101,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateRiskComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateRiskComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateScan": - if e.complexity.Mutation.UpdateScan == nil { + if e.ComplexityRoot.Mutation.UpdateScan == nil { break } @@ -29130,10 +29113,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateScan(childComplexity, args["id"].(string), args["input"].(generated.UpdateScanInput)), true + return e.ComplexityRoot.Mutation.UpdateScan(childComplexity, args["id"].(string), args["input"].(generated.UpdateScanInput)), true case "Mutation.updateScheduledJob": - if e.complexity.Mutation.UpdateScheduledJob == nil { + if e.ComplexityRoot.Mutation.UpdateScheduledJob == nil { break } @@ -29142,10 +29125,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateScheduledJob(childComplexity, args["id"].(string), args["input"].(generated.UpdateScheduledJobInput)), true + return e.ComplexityRoot.Mutation.UpdateScheduledJob(childComplexity, args["id"].(string), args["input"].(generated.UpdateScheduledJobInput)), true case "Mutation.updateScheduledJobRun": - if e.complexity.Mutation.UpdateScheduledJobRun == nil { + if e.ComplexityRoot.Mutation.UpdateScheduledJobRun == nil { break } @@ -29154,10 +29137,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateScheduledJobRun(childComplexity, args["id"].(string), args["input"].(generated.UpdateScheduledJobRunInput)), true + return e.ComplexityRoot.Mutation.UpdateScheduledJobRun(childComplexity, args["id"].(string), args["input"].(generated.UpdateScheduledJobRunInput)), true case "Mutation.updateStandard": - if e.complexity.Mutation.UpdateStandard == nil { + if e.ComplexityRoot.Mutation.UpdateStandard == nil { break } @@ -29166,10 +29149,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateStandard(childComplexity, args["id"].(string), args["input"].(generated.UpdateStandardInput), args["logoFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateStandard(childComplexity, args["id"].(string), args["input"].(generated.UpdateStandardInput), args["logoFile"].(*graphql.Upload)), true case "Mutation.updateSubcontrol": - if e.complexity.Mutation.UpdateSubcontrol == nil { + if e.ComplexityRoot.Mutation.UpdateSubcontrol == nil { break } @@ -29178,10 +29161,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateSubcontrol(childComplexity, args["id"].(string), args["input"].(generated.UpdateSubcontrolInput)), true + return e.ComplexityRoot.Mutation.UpdateSubcontrol(childComplexity, args["id"].(string), args["input"].(generated.UpdateSubcontrolInput)), true case "Mutation.updateSubcontrolComment": - if e.complexity.Mutation.UpdateSubcontrolComment == nil { + if e.ComplexityRoot.Mutation.UpdateSubcontrolComment == nil { break } @@ -29190,10 +29173,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateSubcontrolComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateSubcontrolComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateSubprocessor": - if e.complexity.Mutation.UpdateSubprocessor == nil { + if e.ComplexityRoot.Mutation.UpdateSubprocessor == nil { break } @@ -29202,10 +29185,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateSubprocessor(childComplexity, args["id"].(string), args["input"].(generated.UpdateSubprocessorInput), args["logoFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateSubprocessor(childComplexity, args["id"].(string), args["input"].(generated.UpdateSubprocessorInput), args["logoFile"].(*graphql.Upload)), true case "Mutation.updateSubscriber": - if e.complexity.Mutation.UpdateSubscriber == nil { + if e.ComplexityRoot.Mutation.UpdateSubscriber == nil { break } @@ -29214,10 +29197,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateSubscriber(childComplexity, args["email"].(string), args["input"].(generated.UpdateSubscriberInput)), true + return e.ComplexityRoot.Mutation.UpdateSubscriber(childComplexity, args["email"].(string), args["input"].(generated.UpdateSubscriberInput)), true case "Mutation.updateTFASetting": - if e.complexity.Mutation.UpdateTFASetting == nil { + if e.ComplexityRoot.Mutation.UpdateTFASetting == nil { break } @@ -29226,10 +29209,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTFASetting(childComplexity, args["input"].(generated.UpdateTFASettingInput)), true + return e.ComplexityRoot.Mutation.UpdateTFASetting(childComplexity, args["input"].(generated.UpdateTFASettingInput)), true case "Mutation.updateTagDefinition": - if e.complexity.Mutation.UpdateTagDefinition == nil { + if e.ComplexityRoot.Mutation.UpdateTagDefinition == nil { break } @@ -29238,10 +29221,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTagDefinition(childComplexity, args["id"].(string), args["input"].(generated.UpdateTagDefinitionInput)), true + return e.ComplexityRoot.Mutation.UpdateTagDefinition(childComplexity, args["id"].(string), args["input"].(generated.UpdateTagDefinitionInput)), true case "Mutation.updateTask": - if e.complexity.Mutation.UpdateTask == nil { + if e.ComplexityRoot.Mutation.UpdateTask == nil { break } @@ -29250,10 +29233,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTask(childComplexity, args["id"].(string), args["input"].(generated.UpdateTaskInput)), true + return e.ComplexityRoot.Mutation.UpdateTask(childComplexity, args["id"].(string), args["input"].(generated.UpdateTaskInput)), true case "Mutation.updateTaskComment": - if e.complexity.Mutation.UpdateTaskComment == nil { + if e.ComplexityRoot.Mutation.UpdateTaskComment == nil { break } @@ -29262,10 +29245,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTaskComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTaskComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateTemplate": - if e.complexity.Mutation.UpdateTemplate == nil { + if e.ComplexityRoot.Mutation.UpdateTemplate == nil { break } @@ -29274,10 +29257,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateTemplateInput), args["templateFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTemplate(childComplexity, args["id"].(string), args["input"].(generated.UpdateTemplateInput), args["templateFiles"].([]*graphql.Upload)), true case "Mutation.updateTrustCenter": - if e.complexity.Mutation.UpdateTrustCenter == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenter == nil { break } @@ -29286,10 +29269,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenter(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterInput)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenter(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterInput)), true case "Mutation.updateTrustCenterCompliance": - if e.complexity.Mutation.UpdateTrustCenterCompliance == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterCompliance == nil { break } @@ -29298,10 +29281,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterCompliance(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterComplianceInput)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterCompliance(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterComplianceInput)), true case "Mutation.updateTrustCenterDoc": - if e.complexity.Mutation.UpdateTrustCenterDoc == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterDoc == nil { break } @@ -29310,10 +29293,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterDoc(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterDocInput), args["trustCenterDocFile"].(*graphql.Upload), args["watermarkedTrustCenterDocFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterDoc(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterDocInput), args["trustCenterDocFile"].(*graphql.Upload), args["watermarkedTrustCenterDocFile"].(*graphql.Upload)), true case "Mutation.updateTrustCenterEntity": - if e.complexity.Mutation.UpdateTrustCenterEntity == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterEntity == nil { break } @@ -29322,10 +29305,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterEntity(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterEntityInput), args["logoFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterEntity(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterEntityInput), args["logoFile"].(*graphql.Upload)), true case "Mutation.updateTrustCenterFAQComment": - if e.complexity.Mutation.UpdateTrustCenterFAQComment == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterFAQComment == nil { break } @@ -29334,10 +29317,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterFAQComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterFAQComment(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateTrustCenterFAQ": - if e.complexity.Mutation.UpdateTrustCenterFaq == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterFaq == nil { break } @@ -29346,10 +29329,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterFaq(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterFAQInput)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterFaq(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterFAQInput)), true case "Mutation.updateTrustCenterNDARequest": - if e.complexity.Mutation.UpdateTrustCenterNDARequest == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterNDARequest == nil { break } @@ -29358,10 +29341,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterNDARequest(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterNDARequestInput)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterNDARequest(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterNDARequestInput)), true case "Mutation.updateTrustCenterNDA": - if e.complexity.Mutation.UpdateTrustCenterNda == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterNda == nil { break } @@ -29370,10 +29353,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterNda(childComplexity, args["id"].(string), args["templateFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterNda(childComplexity, args["id"].(string), args["templateFiles"].([]*graphql.Upload)), true case "Mutation.updateTrustCenterPost": - if e.complexity.Mutation.UpdateTrustCenterPost == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterPost == nil { break } @@ -29382,10 +29365,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterPost(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterPost(childComplexity, args["id"].(string), args["input"].(generated.UpdateNoteInput), args["noteFiles"].([]*graphql.Upload)), true case "Mutation.updateTrustCenterPreviewSetting": - if e.complexity.Mutation.UpdateTrustCenterPreviewSetting == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterPreviewSetting == nil { break } @@ -29394,10 +29377,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterPreviewSetting(childComplexity, args["input"].(generated.UpdateTrustCenterSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterPreviewSetting(childComplexity, args["input"].(generated.UpdateTrustCenterSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true case "Mutation.updateTrustCenterSetting": - if e.complexity.Mutation.UpdateTrustCenterSetting == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterSetting == nil { break } @@ -29406,10 +29389,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterSettingInput), args["logoFile"].(*graphql.Upload), args["faviconFile"].(*graphql.Upload)), true case "Mutation.updateTrustCenterSubprocessor": - if e.complexity.Mutation.UpdateTrustCenterSubprocessor == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterSubprocessor == nil { break } @@ -29418,10 +29401,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterSubprocessor(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterSubprocessorInput)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterSubprocessor(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterSubprocessorInput)), true case "Mutation.updateTrustCenterWatermarkConfig": - if e.complexity.Mutation.UpdateTrustCenterWatermarkConfig == nil { + if e.ComplexityRoot.Mutation.UpdateTrustCenterWatermarkConfig == nil { break } @@ -29430,10 +29413,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateTrustCenterWatermarkConfig(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterWatermarkConfigInput), args["watermarkFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateTrustCenterWatermarkConfig(childComplexity, args["id"].(string), args["input"].(generated.UpdateTrustCenterWatermarkConfigInput), args["watermarkFile"].(*graphql.Upload)), true case "Mutation.updateUser": - if e.complexity.Mutation.UpdateUser == nil { + if e.ComplexityRoot.Mutation.UpdateUser == nil { break } @@ -29442,10 +29425,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateUser(childComplexity, args["id"].(string), args["input"].(generated.UpdateUserInput), args["avatarFile"].(*graphql.Upload)), true + return e.ComplexityRoot.Mutation.UpdateUser(childComplexity, args["id"].(string), args["input"].(generated.UpdateUserInput), args["avatarFile"].(*graphql.Upload)), true case "Mutation.updateUserSetting": - if e.complexity.Mutation.UpdateUserSetting == nil { + if e.ComplexityRoot.Mutation.UpdateUserSetting == nil { break } @@ -29454,10 +29437,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateUserSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateUserSettingInput)), true + return e.ComplexityRoot.Mutation.UpdateUserSetting(childComplexity, args["id"].(string), args["input"].(generated.UpdateUserSettingInput)), true case "Mutation.updateVulnerability": - if e.complexity.Mutation.UpdateVulnerability == nil { + if e.ComplexityRoot.Mutation.UpdateVulnerability == nil { break } @@ -29466,10 +29449,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateVulnerability(childComplexity, args["id"].(string), args["input"].(generated.UpdateVulnerabilityInput)), true + return e.ComplexityRoot.Mutation.UpdateVulnerability(childComplexity, args["id"].(string), args["input"].(generated.UpdateVulnerabilityInput)), true case "Mutation.updateWorkflowDefinition": - if e.complexity.Mutation.UpdateWorkflowDefinition == nil { + if e.ComplexityRoot.Mutation.UpdateWorkflowDefinition == nil { break } @@ -29478,10 +29461,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateWorkflowDefinition(childComplexity, args["id"].(string), args["input"].(generated.UpdateWorkflowDefinitionInput)), true + return e.ComplexityRoot.Mutation.UpdateWorkflowDefinition(childComplexity, args["id"].(string), args["input"].(generated.UpdateWorkflowDefinitionInput)), true case "Mutation.updateWorkflowProposalChanges": - if e.complexity.Mutation.UpdateWorkflowProposalChanges == nil { + if e.ComplexityRoot.Mutation.UpdateWorkflowProposalChanges == nil { break } @@ -29490,10 +29473,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.UpdateWorkflowProposalChanges(childComplexity, args["input"].(model.UpdateWorkflowProposalChangesInput)), true + return e.ComplexityRoot.Mutation.UpdateWorkflowProposalChanges(childComplexity, args["input"].(model.UpdateWorkflowProposalChangesInput)), true case "Mutation.validateCustomDomain": - if e.complexity.Mutation.ValidateCustomDomain == nil { + if e.ComplexityRoot.Mutation.ValidateCustomDomain == nil { break } @@ -29502,10 +29485,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.ValidateCustomDomain(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Mutation.ValidateCustomDomain(childComplexity, args["id"].(string)), true case "Mutation.withdrawWorkflowProposal": - if e.complexity.Mutation.WithdrawWorkflowProposal == nil { + if e.ComplexityRoot.Mutation.WithdrawWorkflowProposal == nil { break } @@ -29514,10 +29497,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Mutation.WithdrawWorkflowProposal(childComplexity, args["id"].(string), args["reason"].(*string)), true + return e.ComplexityRoot.Mutation.WithdrawWorkflowProposal(childComplexity, args["id"].(string), args["reason"].(*string)), true case "Narrative.blockedGroups": - if e.complexity.Narrative.BlockedGroups == nil { + if e.ComplexityRoot.Narrative.BlockedGroups == nil { break } @@ -29526,45 +29509,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Narrative.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Narrative.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Narrative.createdAt": - if e.complexity.Narrative.CreatedAt == nil { + if e.ComplexityRoot.Narrative.CreatedAt == nil { break } - return e.complexity.Narrative.CreatedAt(childComplexity), true + return e.ComplexityRoot.Narrative.CreatedAt(childComplexity), true case "Narrative.createdBy": - if e.complexity.Narrative.CreatedBy == nil { + if e.ComplexityRoot.Narrative.CreatedBy == nil { break } - return e.complexity.Narrative.CreatedBy(childComplexity), true + return e.ComplexityRoot.Narrative.CreatedBy(childComplexity), true case "Narrative.description": - if e.complexity.Narrative.Description == nil { + if e.ComplexityRoot.Narrative.Description == nil { break } - return e.complexity.Narrative.Description(childComplexity), true + return e.ComplexityRoot.Narrative.Description(childComplexity), true case "Narrative.details": - if e.complexity.Narrative.Details == nil { + if e.ComplexityRoot.Narrative.Details == nil { break } - return e.complexity.Narrative.Details(childComplexity), true + return e.ComplexityRoot.Narrative.Details(childComplexity), true case "Narrative.displayID": - if e.complexity.Narrative.DisplayID == nil { + if e.ComplexityRoot.Narrative.DisplayID == nil { break } - return e.complexity.Narrative.DisplayID(childComplexity), true + return e.ComplexityRoot.Narrative.DisplayID(childComplexity), true case "Narrative.editors": - if e.complexity.Narrative.Editors == nil { + if e.ComplexityRoot.Narrative.Editors == nil { break } @@ -29573,24 +29556,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Narrative.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Narrative.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Narrative.id": - if e.complexity.Narrative.ID == nil { + if e.ComplexityRoot.Narrative.ID == nil { break } - return e.complexity.Narrative.ID(childComplexity), true + return e.ComplexityRoot.Narrative.ID(childComplexity), true case "Narrative.internalNotes": - if e.complexity.Narrative.InternalNotes == nil { + if e.ComplexityRoot.Narrative.InternalNotes == nil { break } - return e.complexity.Narrative.InternalNotes(childComplexity), true + return e.ComplexityRoot.Narrative.InternalNotes(childComplexity), true case "Narrative.internalPolicies": - if e.complexity.Narrative.InternalPolicies == nil { + if e.ComplexityRoot.Narrative.InternalPolicies == nil { break } @@ -29599,31 +29582,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Narrative.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Narrative.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Narrative.name": - if e.complexity.Narrative.Name == nil { + if e.ComplexityRoot.Narrative.Name == nil { break } - return e.complexity.Narrative.Name(childComplexity), true + return e.ComplexityRoot.Narrative.Name(childComplexity), true case "Narrative.owner": - if e.complexity.Narrative.Owner == nil { + if e.ComplexityRoot.Narrative.Owner == nil { break } - return e.complexity.Narrative.Owner(childComplexity), true + return e.ComplexityRoot.Narrative.Owner(childComplexity), true case "Narrative.ownerID": - if e.complexity.Narrative.OwnerID == nil { + if e.ComplexityRoot.Narrative.OwnerID == nil { break } - return e.complexity.Narrative.OwnerID(childComplexity), true + return e.ComplexityRoot.Narrative.OwnerID(childComplexity), true case "Narrative.procedures": - if e.complexity.Narrative.Procedures == nil { + if e.ComplexityRoot.Narrative.Procedures == nil { break } @@ -29632,10 +29615,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Narrative.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Narrative.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Narrative.programs": - if e.complexity.Narrative.Programs == nil { + if e.ComplexityRoot.Narrative.Programs == nil { break } @@ -29644,10 +29627,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Narrative.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Narrative.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Narrative.satisfies": - if e.complexity.Narrative.Satisfies == nil { + if e.ComplexityRoot.Narrative.Satisfies == nil { break } @@ -29656,45 +29639,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Narrative.Satisfies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Narrative.Satisfies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Narrative.systemInternalID": - if e.complexity.Narrative.SystemInternalID == nil { + if e.ComplexityRoot.Narrative.SystemInternalID == nil { break } - return e.complexity.Narrative.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Narrative.SystemInternalID(childComplexity), true case "Narrative.systemOwned": - if e.complexity.Narrative.SystemOwned == nil { + if e.ComplexityRoot.Narrative.SystemOwned == nil { break } - return e.complexity.Narrative.SystemOwned(childComplexity), true + return e.ComplexityRoot.Narrative.SystemOwned(childComplexity), true case "Narrative.tags": - if e.complexity.Narrative.Tags == nil { + if e.ComplexityRoot.Narrative.Tags == nil { break } - return e.complexity.Narrative.Tags(childComplexity), true + return e.ComplexityRoot.Narrative.Tags(childComplexity), true case "Narrative.updatedAt": - if e.complexity.Narrative.UpdatedAt == nil { + if e.ComplexityRoot.Narrative.UpdatedAt == nil { break } - return e.complexity.Narrative.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Narrative.UpdatedAt(childComplexity), true case "Narrative.updatedBy": - if e.complexity.Narrative.UpdatedBy == nil { + if e.ComplexityRoot.Narrative.UpdatedBy == nil { break } - return e.complexity.Narrative.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Narrative.UpdatedBy(childComplexity), true case "Narrative.viewers": - if e.complexity.Narrative.Viewers == nil { + if e.ComplexityRoot.Narrative.Viewers == nil { break } @@ -29703,143 +29686,143 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Narrative.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Narrative.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "NarrativeBulkCreatePayload.narratives": - if e.complexity.NarrativeBulkCreatePayload.Narratives == nil { + if e.ComplexityRoot.NarrativeBulkCreatePayload.Narratives == nil { break } - return e.complexity.NarrativeBulkCreatePayload.Narratives(childComplexity), true + return e.ComplexityRoot.NarrativeBulkCreatePayload.Narratives(childComplexity), true case "NarrativeBulkDeletePayload.deletedIDs": - if e.complexity.NarrativeBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.NarrativeBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.NarrativeBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.NarrativeBulkDeletePayload.DeletedIDs(childComplexity), true case "NarrativeBulkUpdatePayload.narratives": - if e.complexity.NarrativeBulkUpdatePayload.Narratives == nil { + if e.ComplexityRoot.NarrativeBulkUpdatePayload.Narratives == nil { break } - return e.complexity.NarrativeBulkUpdatePayload.Narratives(childComplexity), true + return e.ComplexityRoot.NarrativeBulkUpdatePayload.Narratives(childComplexity), true case "NarrativeBulkUpdatePayload.updatedIDs": - if e.complexity.NarrativeBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.NarrativeBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.NarrativeBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.NarrativeBulkUpdatePayload.UpdatedIDs(childComplexity), true case "NarrativeConnection.edges": - if e.complexity.NarrativeConnection.Edges == nil { + if e.ComplexityRoot.NarrativeConnection.Edges == nil { break } - return e.complexity.NarrativeConnection.Edges(childComplexity), true + return e.ComplexityRoot.NarrativeConnection.Edges(childComplexity), true case "NarrativeConnection.pageInfo": - if e.complexity.NarrativeConnection.PageInfo == nil { + if e.ComplexityRoot.NarrativeConnection.PageInfo == nil { break } - return e.complexity.NarrativeConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NarrativeConnection.PageInfo(childComplexity), true case "NarrativeConnection.totalCount": - if e.complexity.NarrativeConnection.TotalCount == nil { + if e.ComplexityRoot.NarrativeConnection.TotalCount == nil { break } - return e.complexity.NarrativeConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NarrativeConnection.TotalCount(childComplexity), true case "NarrativeCreatePayload.narrative": - if e.complexity.NarrativeCreatePayload.Narrative == nil { + if e.ComplexityRoot.NarrativeCreatePayload.Narrative == nil { break } - return e.complexity.NarrativeCreatePayload.Narrative(childComplexity), true + return e.ComplexityRoot.NarrativeCreatePayload.Narrative(childComplexity), true case "NarrativeDeletePayload.deletedID": - if e.complexity.NarrativeDeletePayload.DeletedID == nil { + if e.ComplexityRoot.NarrativeDeletePayload.DeletedID == nil { break } - return e.complexity.NarrativeDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.NarrativeDeletePayload.DeletedID(childComplexity), true case "NarrativeEdge.cursor": - if e.complexity.NarrativeEdge.Cursor == nil { + if e.ComplexityRoot.NarrativeEdge.Cursor == nil { break } - return e.complexity.NarrativeEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NarrativeEdge.Cursor(childComplexity), true case "NarrativeEdge.node": - if e.complexity.NarrativeEdge.Node == nil { + if e.ComplexityRoot.NarrativeEdge.Node == nil { break } - return e.complexity.NarrativeEdge.Node(childComplexity), true + return e.ComplexityRoot.NarrativeEdge.Node(childComplexity), true case "NarrativeUpdatePayload.narrative": - if e.complexity.NarrativeUpdatePayload.Narrative == nil { + if e.ComplexityRoot.NarrativeUpdatePayload.Narrative == nil { break } - return e.complexity.NarrativeUpdatePayload.Narrative(childComplexity), true + return e.ComplexityRoot.NarrativeUpdatePayload.Narrative(childComplexity), true case "Note.control": - if e.complexity.Note.Control == nil { + if e.ComplexityRoot.Note.Control == nil { break } - return e.complexity.Note.Control(childComplexity), true + return e.ComplexityRoot.Note.Control(childComplexity), true case "Note.createdAt": - if e.complexity.Note.CreatedAt == nil { + if e.ComplexityRoot.Note.CreatedAt == nil { break } - return e.complexity.Note.CreatedAt(childComplexity), true + return e.ComplexityRoot.Note.CreatedAt(childComplexity), true case "Note.createdBy": - if e.complexity.Note.CreatedBy == nil { + if e.ComplexityRoot.Note.CreatedBy == nil { break } - return e.complexity.Note.CreatedBy(childComplexity), true + return e.ComplexityRoot.Note.CreatedBy(childComplexity), true case "Note.discussion": - if e.complexity.Note.Discussion == nil { + if e.ComplexityRoot.Note.Discussion == nil { break } - return e.complexity.Note.Discussion(childComplexity), true + return e.ComplexityRoot.Note.Discussion(childComplexity), true case "Note.discussionID": - if e.complexity.Note.DiscussionID == nil { + if e.ComplexityRoot.Note.DiscussionID == nil { break } - return e.complexity.Note.DiscussionID(childComplexity), true + return e.ComplexityRoot.Note.DiscussionID(childComplexity), true case "Note.displayID": - if e.complexity.Note.DisplayID == nil { + if e.ComplexityRoot.Note.DisplayID == nil { break } - return e.complexity.Note.DisplayID(childComplexity), true + return e.ComplexityRoot.Note.DisplayID(childComplexity), true case "Note.evidence": - if e.complexity.Note.Evidence == nil { + if e.ComplexityRoot.Note.Evidence == nil { break } - return e.complexity.Note.Evidence(childComplexity), true + return e.ComplexityRoot.Note.Evidence(childComplexity), true case "Note.files": - if e.complexity.Note.Files == nil { + if e.ComplexityRoot.Note.Files == nil { break } @@ -29848,108 +29831,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Note.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Note.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Note.id": - if e.complexity.Note.ID == nil { + if e.ComplexityRoot.Note.ID == nil { break } - return e.complexity.Note.ID(childComplexity), true + return e.ComplexityRoot.Note.ID(childComplexity), true case "Note.internalPolicy": - if e.complexity.Note.InternalPolicy == nil { + if e.ComplexityRoot.Note.InternalPolicy == nil { break } - return e.complexity.Note.InternalPolicy(childComplexity), true + return e.ComplexityRoot.Note.InternalPolicy(childComplexity), true case "Note.isEdited": - if e.complexity.Note.IsEdited == nil { + if e.ComplexityRoot.Note.IsEdited == nil { break } - return e.complexity.Note.IsEdited(childComplexity), true + return e.ComplexityRoot.Note.IsEdited(childComplexity), true case "Note.noteRef": - if e.complexity.Note.NoteRef == nil { + if e.ComplexityRoot.Note.NoteRef == nil { break } - return e.complexity.Note.NoteRef(childComplexity), true + return e.ComplexityRoot.Note.NoteRef(childComplexity), true case "Note.owner": - if e.complexity.Note.Owner == nil { + if e.ComplexityRoot.Note.Owner == nil { break } - return e.complexity.Note.Owner(childComplexity), true + return e.ComplexityRoot.Note.Owner(childComplexity), true case "Note.ownerID": - if e.complexity.Note.OwnerID == nil { + if e.ComplexityRoot.Note.OwnerID == nil { break } - return e.complexity.Note.OwnerID(childComplexity), true + return e.ComplexityRoot.Note.OwnerID(childComplexity), true case "Note.procedure": - if e.complexity.Note.Procedure == nil { + if e.ComplexityRoot.Note.Procedure == nil { break } - return e.complexity.Note.Procedure(childComplexity), true + return e.ComplexityRoot.Note.Procedure(childComplexity), true case "Note.risk": - if e.complexity.Note.Risk == nil { + if e.ComplexityRoot.Note.Risk == nil { break } - return e.complexity.Note.Risk(childComplexity), true + return e.ComplexityRoot.Note.Risk(childComplexity), true case "Note.subcontrol": - if e.complexity.Note.Subcontrol == nil { + if e.ComplexityRoot.Note.Subcontrol == nil { break } - return e.complexity.Note.Subcontrol(childComplexity), true + return e.ComplexityRoot.Note.Subcontrol(childComplexity), true case "Note.task": - if e.complexity.Note.Task == nil { + if e.ComplexityRoot.Note.Task == nil { break } - return e.complexity.Note.Task(childComplexity), true + return e.ComplexityRoot.Note.Task(childComplexity), true case "Note.text": - if e.complexity.Note.Text == nil { + if e.ComplexityRoot.Note.Text == nil { break } - return e.complexity.Note.Text(childComplexity), true + return e.ComplexityRoot.Note.Text(childComplexity), true case "Note.textJSON": - if e.complexity.Note.TextJSON == nil { + if e.ComplexityRoot.Note.TextJSON == nil { break } - return e.complexity.Note.TextJSON(childComplexity), true + return e.ComplexityRoot.Note.TextJSON(childComplexity), true case "Note.title": - if e.complexity.Note.Title == nil { + if e.ComplexityRoot.Note.Title == nil { break } - return e.complexity.Note.Title(childComplexity), true + return e.ComplexityRoot.Note.Title(childComplexity), true case "Note.trustCenter": - if e.complexity.Note.TrustCenter == nil { + if e.ComplexityRoot.Note.TrustCenter == nil { break } - return e.complexity.Note.TrustCenter(childComplexity), true + return e.ComplexityRoot.Note.TrustCenter(childComplexity), true case "Note.trustCenterFaqs": - if e.complexity.Note.TrustCenterFaqs == nil { + if e.ComplexityRoot.Note.TrustCenterFaqs == nil { break } @@ -29958,668 +29941,668 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Note.TrustCenterFaqs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterFAQOrder), args["where"].(*generated.TrustCenterFAQWhereInput)), true + return e.ComplexityRoot.Note.TrustCenterFaqs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterFAQOrder), args["where"].(*generated.TrustCenterFAQWhereInput)), true case "Note.trustCenterID": - if e.complexity.Note.TrustCenterID == nil { + if e.ComplexityRoot.Note.TrustCenterID == nil { break } - return e.complexity.Note.TrustCenterID(childComplexity), true + return e.ComplexityRoot.Note.TrustCenterID(childComplexity), true case "Note.updatedAt": - if e.complexity.Note.UpdatedAt == nil { + if e.ComplexityRoot.Note.UpdatedAt == nil { break } - return e.complexity.Note.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Note.UpdatedAt(childComplexity), true case "Note.updatedBy": - if e.complexity.Note.UpdatedBy == nil { + if e.ComplexityRoot.Note.UpdatedBy == nil { break } - return e.complexity.Note.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Note.UpdatedBy(childComplexity), true case "NoteConnection.edges": - if e.complexity.NoteConnection.Edges == nil { + if e.ComplexityRoot.NoteConnection.Edges == nil { break } - return e.complexity.NoteConnection.Edges(childComplexity), true + return e.ComplexityRoot.NoteConnection.Edges(childComplexity), true case "NoteConnection.pageInfo": - if e.complexity.NoteConnection.PageInfo == nil { + if e.ComplexityRoot.NoteConnection.PageInfo == nil { break } - return e.complexity.NoteConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NoteConnection.PageInfo(childComplexity), true case "NoteConnection.totalCount": - if e.complexity.NoteConnection.TotalCount == nil { + if e.ComplexityRoot.NoteConnection.TotalCount == nil { break } - return e.complexity.NoteConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NoteConnection.TotalCount(childComplexity), true case "NoteDeletePayload.deletedID": - if e.complexity.NoteDeletePayload.DeletedID == nil { + if e.ComplexityRoot.NoteDeletePayload.DeletedID == nil { break } - return e.complexity.NoteDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.NoteDeletePayload.DeletedID(childComplexity), true case "NoteEdge.cursor": - if e.complexity.NoteEdge.Cursor == nil { + if e.ComplexityRoot.NoteEdge.Cursor == nil { break } - return e.complexity.NoteEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NoteEdge.Cursor(childComplexity), true case "NoteEdge.node": - if e.complexity.NoteEdge.Node == nil { + if e.ComplexityRoot.NoteEdge.Node == nil { break } - return e.complexity.NoteEdge.Node(childComplexity), true + return e.ComplexityRoot.NoteEdge.Node(childComplexity), true case "Notification.body": - if e.complexity.Notification.Body == nil { + if e.ComplexityRoot.Notification.Body == nil { break } - return e.complexity.Notification.Body(childComplexity), true + return e.ComplexityRoot.Notification.Body(childComplexity), true case "Notification.channels": - if e.complexity.Notification.Channels == nil { + if e.ComplexityRoot.Notification.Channels == nil { break } - return e.complexity.Notification.Channels(childComplexity), true + return e.ComplexityRoot.Notification.Channels(childComplexity), true case "Notification.createdAt": - if e.complexity.Notification.CreatedAt == nil { + if e.ComplexityRoot.Notification.CreatedAt == nil { break } - return e.complexity.Notification.CreatedAt(childComplexity), true + return e.ComplexityRoot.Notification.CreatedAt(childComplexity), true case "Notification.createdBy": - if e.complexity.Notification.CreatedBy == nil { + if e.ComplexityRoot.Notification.CreatedBy == nil { break } - return e.complexity.Notification.CreatedBy(childComplexity), true + return e.ComplexityRoot.Notification.CreatedBy(childComplexity), true case "Notification.data": - if e.complexity.Notification.Data == nil { + if e.ComplexityRoot.Notification.Data == nil { break } - return e.complexity.Notification.Data(childComplexity), true + return e.ComplexityRoot.Notification.Data(childComplexity), true case "Notification.id": - if e.complexity.Notification.ID == nil { + if e.ComplexityRoot.Notification.ID == nil { break } - return e.complexity.Notification.ID(childComplexity), true + return e.ComplexityRoot.Notification.ID(childComplexity), true case "Notification.notificationTemplate": - if e.complexity.Notification.NotificationTemplate == nil { + if e.ComplexityRoot.Notification.NotificationTemplate == nil { break } - return e.complexity.Notification.NotificationTemplate(childComplexity), true + return e.ComplexityRoot.Notification.NotificationTemplate(childComplexity), true case "Notification.notificationType": - if e.complexity.Notification.NotificationType == nil { + if e.ComplexityRoot.Notification.NotificationType == nil { break } - return e.complexity.Notification.NotificationType(childComplexity), true + return e.ComplexityRoot.Notification.NotificationType(childComplexity), true case "Notification.objectType": - if e.complexity.Notification.ObjectType == nil { + if e.ComplexityRoot.Notification.ObjectType == nil { break } - return e.complexity.Notification.ObjectType(childComplexity), true + return e.ComplexityRoot.Notification.ObjectType(childComplexity), true case "Notification.owner": - if e.complexity.Notification.Owner == nil { + if e.ComplexityRoot.Notification.Owner == nil { break } - return e.complexity.Notification.Owner(childComplexity), true + return e.ComplexityRoot.Notification.Owner(childComplexity), true case "Notification.ownerID": - if e.complexity.Notification.OwnerID == nil { + if e.ComplexityRoot.Notification.OwnerID == nil { break } - return e.complexity.Notification.OwnerID(childComplexity), true + return e.ComplexityRoot.Notification.OwnerID(childComplexity), true case "Notification.readAt": - if e.complexity.Notification.ReadAt == nil { + if e.ComplexityRoot.Notification.ReadAt == nil { break } - return e.complexity.Notification.ReadAt(childComplexity), true + return e.ComplexityRoot.Notification.ReadAt(childComplexity), true case "Notification.tags": - if e.complexity.Notification.Tags == nil { + if e.ComplexityRoot.Notification.Tags == nil { break } - return e.complexity.Notification.Tags(childComplexity), true + return e.ComplexityRoot.Notification.Tags(childComplexity), true case "Notification.templateID": - if e.complexity.Notification.TemplateID == nil { + if e.ComplexityRoot.Notification.TemplateID == nil { break } - return e.complexity.Notification.TemplateID(childComplexity), true + return e.ComplexityRoot.Notification.TemplateID(childComplexity), true case "Notification.title": - if e.complexity.Notification.Title == nil { + if e.ComplexityRoot.Notification.Title == nil { break } - return e.complexity.Notification.Title(childComplexity), true + return e.ComplexityRoot.Notification.Title(childComplexity), true case "Notification.topic": - if e.complexity.Notification.Topic == nil { + if e.ComplexityRoot.Notification.Topic == nil { break } - return e.complexity.Notification.Topic(childComplexity), true + return e.ComplexityRoot.Notification.Topic(childComplexity), true case "Notification.updatedAt": - if e.complexity.Notification.UpdatedAt == nil { + if e.ComplexityRoot.Notification.UpdatedAt == nil { break } - return e.complexity.Notification.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Notification.UpdatedAt(childComplexity), true case "Notification.updatedBy": - if e.complexity.Notification.UpdatedBy == nil { + if e.ComplexityRoot.Notification.UpdatedBy == nil { break } - return e.complexity.Notification.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Notification.UpdatedBy(childComplexity), true case "Notification.userID": - if e.complexity.Notification.UserID == nil { + if e.ComplexityRoot.Notification.UserID == nil { break } - return e.complexity.Notification.UserID(childComplexity), true + return e.ComplexityRoot.Notification.UserID(childComplexity), true case "NotificationConnection.edges": - if e.complexity.NotificationConnection.Edges == nil { + if e.ComplexityRoot.NotificationConnection.Edges == nil { break } - return e.complexity.NotificationConnection.Edges(childComplexity), true + return e.ComplexityRoot.NotificationConnection.Edges(childComplexity), true case "NotificationConnection.pageInfo": - if e.complexity.NotificationConnection.PageInfo == nil { + if e.ComplexityRoot.NotificationConnection.PageInfo == nil { break } - return e.complexity.NotificationConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NotificationConnection.PageInfo(childComplexity), true case "NotificationConnection.totalCount": - if e.complexity.NotificationConnection.TotalCount == nil { + if e.ComplexityRoot.NotificationConnection.TotalCount == nil { break } - return e.complexity.NotificationConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NotificationConnection.TotalCount(childComplexity), true case "NotificationEdge.cursor": - if e.complexity.NotificationEdge.Cursor == nil { + if e.ComplexityRoot.NotificationEdge.Cursor == nil { break } - return e.complexity.NotificationEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NotificationEdge.Cursor(childComplexity), true case "NotificationEdge.node": - if e.complexity.NotificationEdge.Node == nil { + if e.ComplexityRoot.NotificationEdge.Node == nil { break } - return e.complexity.NotificationEdge.Node(childComplexity), true + return e.ComplexityRoot.NotificationEdge.Node(childComplexity), true case "NotificationPreference.cadence": - if e.complexity.NotificationPreference.Cadence == nil { + if e.ComplexityRoot.NotificationPreference.Cadence == nil { break } - return e.complexity.NotificationPreference.Cadence(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Cadence(childComplexity), true case "NotificationPreference.channel": - if e.complexity.NotificationPreference.Channel == nil { + if e.ComplexityRoot.NotificationPreference.Channel == nil { break } - return e.complexity.NotificationPreference.Channel(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Channel(childComplexity), true case "NotificationPreference.config": - if e.complexity.NotificationPreference.Config == nil { + if e.ComplexityRoot.NotificationPreference.Config == nil { break } - return e.complexity.NotificationPreference.Config(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Config(childComplexity), true case "NotificationPreference.createdAt": - if e.complexity.NotificationPreference.CreatedAt == nil { + if e.ComplexityRoot.NotificationPreference.CreatedAt == nil { break } - return e.complexity.NotificationPreference.CreatedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreference.CreatedAt(childComplexity), true case "NotificationPreference.createdBy": - if e.complexity.NotificationPreference.CreatedBy == nil { + if e.ComplexityRoot.NotificationPreference.CreatedBy == nil { break } - return e.complexity.NotificationPreference.CreatedBy(childComplexity), true + return e.ComplexityRoot.NotificationPreference.CreatedBy(childComplexity), true case "NotificationPreference.destination": - if e.complexity.NotificationPreference.Destination == nil { + if e.ComplexityRoot.NotificationPreference.Destination == nil { break } - return e.complexity.NotificationPreference.Destination(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Destination(childComplexity), true case "NotificationPreference.enabled": - if e.complexity.NotificationPreference.Enabled == nil { + if e.ComplexityRoot.NotificationPreference.Enabled == nil { break } - return e.complexity.NotificationPreference.Enabled(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Enabled(childComplexity), true case "NotificationPreference.id": - if e.complexity.NotificationPreference.ID == nil { + if e.ComplexityRoot.NotificationPreference.ID == nil { break } - return e.complexity.NotificationPreference.ID(childComplexity), true + return e.ComplexityRoot.NotificationPreference.ID(childComplexity), true case "NotificationPreference.isDefault": - if e.complexity.NotificationPreference.IsDefault == nil { + if e.ComplexityRoot.NotificationPreference.IsDefault == nil { break } - return e.complexity.NotificationPreference.IsDefault(childComplexity), true + return e.ComplexityRoot.NotificationPreference.IsDefault(childComplexity), true case "NotificationPreference.lastError": - if e.complexity.NotificationPreference.LastError == nil { + if e.ComplexityRoot.NotificationPreference.LastError == nil { break } - return e.complexity.NotificationPreference.LastError(childComplexity), true + return e.ComplexityRoot.NotificationPreference.LastError(childComplexity), true case "NotificationPreference.lastUsedAt": - if e.complexity.NotificationPreference.LastUsedAt == nil { + if e.ComplexityRoot.NotificationPreference.LastUsedAt == nil { break } - return e.complexity.NotificationPreference.LastUsedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreference.LastUsedAt(childComplexity), true case "NotificationPreference.metadata": - if e.complexity.NotificationPreference.Metadata == nil { + if e.ComplexityRoot.NotificationPreference.Metadata == nil { break } - return e.complexity.NotificationPreference.Metadata(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Metadata(childComplexity), true case "NotificationPreference.muteUntil": - if e.complexity.NotificationPreference.MuteUntil == nil { + if e.ComplexityRoot.NotificationPreference.MuteUntil == nil { break } - return e.complexity.NotificationPreference.MuteUntil(childComplexity), true + return e.ComplexityRoot.NotificationPreference.MuteUntil(childComplexity), true case "NotificationPreference.notificationTemplate": - if e.complexity.NotificationPreference.NotificationTemplate == nil { + if e.ComplexityRoot.NotificationPreference.NotificationTemplate == nil { break } - return e.complexity.NotificationPreference.NotificationTemplate(childComplexity), true + return e.ComplexityRoot.NotificationPreference.NotificationTemplate(childComplexity), true case "NotificationPreference.owner": - if e.complexity.NotificationPreference.Owner == nil { + if e.ComplexityRoot.NotificationPreference.Owner == nil { break } - return e.complexity.NotificationPreference.Owner(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Owner(childComplexity), true case "NotificationPreference.ownerID": - if e.complexity.NotificationPreference.OwnerID == nil { + if e.ComplexityRoot.NotificationPreference.OwnerID == nil { break } - return e.complexity.NotificationPreference.OwnerID(childComplexity), true + return e.ComplexityRoot.NotificationPreference.OwnerID(childComplexity), true case "NotificationPreference.priority": - if e.complexity.NotificationPreference.Priority == nil { + if e.ComplexityRoot.NotificationPreference.Priority == nil { break } - return e.complexity.NotificationPreference.Priority(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Priority(childComplexity), true case "NotificationPreference.provider": - if e.complexity.NotificationPreference.Provider == nil { + if e.ComplexityRoot.NotificationPreference.Provider == nil { break } - return e.complexity.NotificationPreference.Provider(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Provider(childComplexity), true case "NotificationPreference.quietHoursEnd": - if e.complexity.NotificationPreference.QuietHoursEnd == nil { + if e.ComplexityRoot.NotificationPreference.QuietHoursEnd == nil { break } - return e.complexity.NotificationPreference.QuietHoursEnd(childComplexity), true + return e.ComplexityRoot.NotificationPreference.QuietHoursEnd(childComplexity), true case "NotificationPreference.quietHoursStart": - if e.complexity.NotificationPreference.QuietHoursStart == nil { + if e.ComplexityRoot.NotificationPreference.QuietHoursStart == nil { break } - return e.complexity.NotificationPreference.QuietHoursStart(childComplexity), true + return e.ComplexityRoot.NotificationPreference.QuietHoursStart(childComplexity), true case "NotificationPreference.status": - if e.complexity.NotificationPreference.Status == nil { + if e.ComplexityRoot.NotificationPreference.Status == nil { break } - return e.complexity.NotificationPreference.Status(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Status(childComplexity), true case "NotificationPreference.templateID": - if e.complexity.NotificationPreference.TemplateID == nil { + if e.ComplexityRoot.NotificationPreference.TemplateID == nil { break } - return e.complexity.NotificationPreference.TemplateID(childComplexity), true + return e.ComplexityRoot.NotificationPreference.TemplateID(childComplexity), true case "NotificationPreference.timezone": - if e.complexity.NotificationPreference.Timezone == nil { + if e.ComplexityRoot.NotificationPreference.Timezone == nil { break } - return e.complexity.NotificationPreference.Timezone(childComplexity), true + return e.ComplexityRoot.NotificationPreference.Timezone(childComplexity), true case "NotificationPreference.topicOverrides": - if e.complexity.NotificationPreference.TopicOverrides == nil { + if e.ComplexityRoot.NotificationPreference.TopicOverrides == nil { break } - return e.complexity.NotificationPreference.TopicOverrides(childComplexity), true + return e.ComplexityRoot.NotificationPreference.TopicOverrides(childComplexity), true case "NotificationPreference.topicPatterns": - if e.complexity.NotificationPreference.TopicPatterns == nil { + if e.ComplexityRoot.NotificationPreference.TopicPatterns == nil { break } - return e.complexity.NotificationPreference.TopicPatterns(childComplexity), true + return e.ComplexityRoot.NotificationPreference.TopicPatterns(childComplexity), true case "NotificationPreference.updatedAt": - if e.complexity.NotificationPreference.UpdatedAt == nil { + if e.ComplexityRoot.NotificationPreference.UpdatedAt == nil { break } - return e.complexity.NotificationPreference.UpdatedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreference.UpdatedAt(childComplexity), true case "NotificationPreference.updatedBy": - if e.complexity.NotificationPreference.UpdatedBy == nil { + if e.ComplexityRoot.NotificationPreference.UpdatedBy == nil { break } - return e.complexity.NotificationPreference.UpdatedBy(childComplexity), true + return e.ComplexityRoot.NotificationPreference.UpdatedBy(childComplexity), true case "NotificationPreference.user": - if e.complexity.NotificationPreference.User == nil { + if e.ComplexityRoot.NotificationPreference.User == nil { break } - return e.complexity.NotificationPreference.User(childComplexity), true + return e.ComplexityRoot.NotificationPreference.User(childComplexity), true case "NotificationPreference.userID": - if e.complexity.NotificationPreference.UserID == nil { + if e.ComplexityRoot.NotificationPreference.UserID == nil { break } - return e.complexity.NotificationPreference.UserID(childComplexity), true + return e.ComplexityRoot.NotificationPreference.UserID(childComplexity), true case "NotificationPreference.verifiedAt": - if e.complexity.NotificationPreference.VerifiedAt == nil { + if e.ComplexityRoot.NotificationPreference.VerifiedAt == nil { break } - return e.complexity.NotificationPreference.VerifiedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreference.VerifiedAt(childComplexity), true case "NotificationPreferenceBulkCreatePayload.notificationPreferences": - if e.complexity.NotificationPreferenceBulkCreatePayload.NotificationPreferences == nil { + if e.ComplexityRoot.NotificationPreferenceBulkCreatePayload.NotificationPreferences == nil { break } - return e.complexity.NotificationPreferenceBulkCreatePayload.NotificationPreferences(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceBulkCreatePayload.NotificationPreferences(childComplexity), true case "NotificationPreferenceBulkDeletePayload.deletedIDs": - if e.complexity.NotificationPreferenceBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.NotificationPreferenceBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.NotificationPreferenceBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceBulkDeletePayload.DeletedIDs(childComplexity), true case "NotificationPreferenceBulkUpdatePayload.notificationPreferences": - if e.complexity.NotificationPreferenceBulkUpdatePayload.NotificationPreferences == nil { + if e.ComplexityRoot.NotificationPreferenceBulkUpdatePayload.NotificationPreferences == nil { break } - return e.complexity.NotificationPreferenceBulkUpdatePayload.NotificationPreferences(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceBulkUpdatePayload.NotificationPreferences(childComplexity), true case "NotificationPreferenceBulkUpdatePayload.updatedIDs": - if e.complexity.NotificationPreferenceBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.NotificationPreferenceBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.NotificationPreferenceBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceBulkUpdatePayload.UpdatedIDs(childComplexity), true case "NotificationPreferenceConnection.edges": - if e.complexity.NotificationPreferenceConnection.Edges == nil { + if e.ComplexityRoot.NotificationPreferenceConnection.Edges == nil { break } - return e.complexity.NotificationPreferenceConnection.Edges(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceConnection.Edges(childComplexity), true case "NotificationPreferenceConnection.pageInfo": - if e.complexity.NotificationPreferenceConnection.PageInfo == nil { + if e.ComplexityRoot.NotificationPreferenceConnection.PageInfo == nil { break } - return e.complexity.NotificationPreferenceConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceConnection.PageInfo(childComplexity), true case "NotificationPreferenceConnection.totalCount": - if e.complexity.NotificationPreferenceConnection.TotalCount == nil { + if e.ComplexityRoot.NotificationPreferenceConnection.TotalCount == nil { break } - return e.complexity.NotificationPreferenceConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceConnection.TotalCount(childComplexity), true case "NotificationPreferenceCreatePayload.notificationPreference": - if e.complexity.NotificationPreferenceCreatePayload.NotificationPreference == nil { + if e.ComplexityRoot.NotificationPreferenceCreatePayload.NotificationPreference == nil { break } - return e.complexity.NotificationPreferenceCreatePayload.NotificationPreference(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceCreatePayload.NotificationPreference(childComplexity), true case "NotificationPreferenceDeletePayload.deletedID": - if e.complexity.NotificationPreferenceDeletePayload.DeletedID == nil { + if e.ComplexityRoot.NotificationPreferenceDeletePayload.DeletedID == nil { break } - return e.complexity.NotificationPreferenceDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceDeletePayload.DeletedID(childComplexity), true case "NotificationPreferenceEdge.cursor": - if e.complexity.NotificationPreferenceEdge.Cursor == nil { + if e.ComplexityRoot.NotificationPreferenceEdge.Cursor == nil { break } - return e.complexity.NotificationPreferenceEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceEdge.Cursor(childComplexity), true case "NotificationPreferenceEdge.node": - if e.complexity.NotificationPreferenceEdge.Node == nil { + if e.ComplexityRoot.NotificationPreferenceEdge.Node == nil { break } - return e.complexity.NotificationPreferenceEdge.Node(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceEdge.Node(childComplexity), true case "NotificationPreferenceUpdatePayload.notificationPreference": - if e.complexity.NotificationPreferenceUpdatePayload.NotificationPreference == nil { + if e.ComplexityRoot.NotificationPreferenceUpdatePayload.NotificationPreference == nil { break } - return e.complexity.NotificationPreferenceUpdatePayload.NotificationPreference(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceUpdatePayload.NotificationPreference(childComplexity), true case "NotificationTemplate.active": - if e.complexity.NotificationTemplate.Active == nil { + if e.ComplexityRoot.NotificationTemplate.Active == nil { break } - return e.complexity.NotificationTemplate.Active(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Active(childComplexity), true case "NotificationTemplate.blocks": - if e.complexity.NotificationTemplate.Blocks == nil { + if e.ComplexityRoot.NotificationTemplate.Blocks == nil { break } - return e.complexity.NotificationTemplate.Blocks(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Blocks(childComplexity), true case "NotificationTemplate.bodyTemplate": - if e.complexity.NotificationTemplate.BodyTemplate == nil { + if e.ComplexityRoot.NotificationTemplate.BodyTemplate == nil { break } - return e.complexity.NotificationTemplate.BodyTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.BodyTemplate(childComplexity), true case "NotificationTemplate.channel": - if e.complexity.NotificationTemplate.Channel == nil { + if e.ComplexityRoot.NotificationTemplate.Channel == nil { break } - return e.complexity.NotificationTemplate.Channel(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Channel(childComplexity), true case "NotificationTemplate.createdAt": - if e.complexity.NotificationTemplate.CreatedAt == nil { + if e.ComplexityRoot.NotificationTemplate.CreatedAt == nil { break } - return e.complexity.NotificationTemplate.CreatedAt(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.CreatedAt(childComplexity), true case "NotificationTemplate.createdBy": - if e.complexity.NotificationTemplate.CreatedBy == nil { + if e.ComplexityRoot.NotificationTemplate.CreatedBy == nil { break } - return e.complexity.NotificationTemplate.CreatedBy(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.CreatedBy(childComplexity), true case "NotificationTemplate.description": - if e.complexity.NotificationTemplate.Description == nil { + if e.ComplexityRoot.NotificationTemplate.Description == nil { break } - return e.complexity.NotificationTemplate.Description(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Description(childComplexity), true case "NotificationTemplate.emailTemplate": - if e.complexity.NotificationTemplate.EmailTemplate == nil { + if e.ComplexityRoot.NotificationTemplate.EmailTemplate == nil { break } - return e.complexity.NotificationTemplate.EmailTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.EmailTemplate(childComplexity), true case "NotificationTemplate.emailTemplateID": - if e.complexity.NotificationTemplate.EmailTemplateID == nil { + if e.ComplexityRoot.NotificationTemplate.EmailTemplateID == nil { break } - return e.complexity.NotificationTemplate.EmailTemplateID(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.EmailTemplateID(childComplexity), true case "NotificationTemplate.format": - if e.complexity.NotificationTemplate.Format == nil { + if e.ComplexityRoot.NotificationTemplate.Format == nil { break } - return e.complexity.NotificationTemplate.Format(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Format(childComplexity), true case "NotificationTemplate.id": - if e.complexity.NotificationTemplate.ID == nil { + if e.ComplexityRoot.NotificationTemplate.ID == nil { break } - return e.complexity.NotificationTemplate.ID(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.ID(childComplexity), true case "NotificationTemplate.integration": - if e.complexity.NotificationTemplate.Integration == nil { + if e.ComplexityRoot.NotificationTemplate.Integration == nil { break } - return e.complexity.NotificationTemplate.Integration(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Integration(childComplexity), true case "NotificationTemplate.integrationID": - if e.complexity.NotificationTemplate.IntegrationID == nil { + if e.ComplexityRoot.NotificationTemplate.IntegrationID == nil { break } - return e.complexity.NotificationTemplate.IntegrationID(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.IntegrationID(childComplexity), true case "NotificationTemplate.internalNotes": - if e.complexity.NotificationTemplate.InternalNotes == nil { + if e.ComplexityRoot.NotificationTemplate.InternalNotes == nil { break } - return e.complexity.NotificationTemplate.InternalNotes(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.InternalNotes(childComplexity), true case "NotificationTemplate.jsonconfig": - if e.complexity.NotificationTemplate.Jsonconfig == nil { + if e.ComplexityRoot.NotificationTemplate.Jsonconfig == nil { break } - return e.complexity.NotificationTemplate.Jsonconfig(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Jsonconfig(childComplexity), true case "NotificationTemplate.key": - if e.complexity.NotificationTemplate.Key == nil { + if e.ComplexityRoot.NotificationTemplate.Key == nil { break } - return e.complexity.NotificationTemplate.Key(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Key(childComplexity), true case "NotificationTemplate.locale": - if e.complexity.NotificationTemplate.Locale == nil { + if e.ComplexityRoot.NotificationTemplate.Locale == nil { break } - return e.complexity.NotificationTemplate.Locale(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Locale(childComplexity), true case "NotificationTemplate.metadata": - if e.complexity.NotificationTemplate.Metadata == nil { + if e.ComplexityRoot.NotificationTemplate.Metadata == nil { break } - return e.complexity.NotificationTemplate.Metadata(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Metadata(childComplexity), true case "NotificationTemplate.name": - if e.complexity.NotificationTemplate.Name == nil { + if e.ComplexityRoot.NotificationTemplate.Name == nil { break } - return e.complexity.NotificationTemplate.Name(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Name(childComplexity), true case "NotificationTemplate.notifications": - if e.complexity.NotificationTemplate.Notifications == nil { + if e.ComplexityRoot.NotificationTemplate.Notifications == nil { break } @@ -30628,269 +30611,269 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.NotificationTemplate.Notifications(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.NotificationOrder)), true + return e.ComplexityRoot.NotificationTemplate.Notifications(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.NotificationOrder)), true case "NotificationTemplate.owner": - if e.complexity.NotificationTemplate.Owner == nil { + if e.ComplexityRoot.NotificationTemplate.Owner == nil { break } - return e.complexity.NotificationTemplate.Owner(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Owner(childComplexity), true case "NotificationTemplate.ownerID": - if e.complexity.NotificationTemplate.OwnerID == nil { + if e.ComplexityRoot.NotificationTemplate.OwnerID == nil { break } - return e.complexity.NotificationTemplate.OwnerID(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.OwnerID(childComplexity), true case "NotificationTemplate.subjectTemplate": - if e.complexity.NotificationTemplate.SubjectTemplate == nil { + if e.ComplexityRoot.NotificationTemplate.SubjectTemplate == nil { break } - return e.complexity.NotificationTemplate.SubjectTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.SubjectTemplate(childComplexity), true case "NotificationTemplate.systemInternalID": - if e.complexity.NotificationTemplate.SystemInternalID == nil { + if e.ComplexityRoot.NotificationTemplate.SystemInternalID == nil { break } - return e.complexity.NotificationTemplate.SystemInternalID(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.SystemInternalID(childComplexity), true case "NotificationTemplate.systemOwned": - if e.complexity.NotificationTemplate.SystemOwned == nil { + if e.ComplexityRoot.NotificationTemplate.SystemOwned == nil { break } - return e.complexity.NotificationTemplate.SystemOwned(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.SystemOwned(childComplexity), true case "NotificationTemplate.titleTemplate": - if e.complexity.NotificationTemplate.TitleTemplate == nil { + if e.ComplexityRoot.NotificationTemplate.TitleTemplate == nil { break } - return e.complexity.NotificationTemplate.TitleTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.TitleTemplate(childComplexity), true case "NotificationTemplate.topicPattern": - if e.complexity.NotificationTemplate.TopicPattern == nil { + if e.ComplexityRoot.NotificationTemplate.TopicPattern == nil { break } - return e.complexity.NotificationTemplate.TopicPattern(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.TopicPattern(childComplexity), true case "NotificationTemplate.uischema": - if e.complexity.NotificationTemplate.Uischema == nil { + if e.ComplexityRoot.NotificationTemplate.Uischema == nil { break } - return e.complexity.NotificationTemplate.Uischema(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Uischema(childComplexity), true case "NotificationTemplate.updatedAt": - if e.complexity.NotificationTemplate.UpdatedAt == nil { + if e.ComplexityRoot.NotificationTemplate.UpdatedAt == nil { break } - return e.complexity.NotificationTemplate.UpdatedAt(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.UpdatedAt(childComplexity), true case "NotificationTemplate.updatedBy": - if e.complexity.NotificationTemplate.UpdatedBy == nil { + if e.ComplexityRoot.NotificationTemplate.UpdatedBy == nil { break } - return e.complexity.NotificationTemplate.UpdatedBy(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.UpdatedBy(childComplexity), true case "NotificationTemplate.version": - if e.complexity.NotificationTemplate.Version == nil { + if e.ComplexityRoot.NotificationTemplate.Version == nil { break } - return e.complexity.NotificationTemplate.Version(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.Version(childComplexity), true case "NotificationTemplate.workflowDefinition": - if e.complexity.NotificationTemplate.WorkflowDefinition == nil { + if e.ComplexityRoot.NotificationTemplate.WorkflowDefinition == nil { break } - return e.complexity.NotificationTemplate.WorkflowDefinition(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.WorkflowDefinition(childComplexity), true case "NotificationTemplate.workflowDefinitionID": - if e.complexity.NotificationTemplate.WorkflowDefinitionID == nil { + if e.ComplexityRoot.NotificationTemplate.WorkflowDefinitionID == nil { break } - return e.complexity.NotificationTemplate.WorkflowDefinitionID(childComplexity), true + return e.ComplexityRoot.NotificationTemplate.WorkflowDefinitionID(childComplexity), true case "NotificationTemplateBulkCreatePayload.notificationTemplates": - if e.complexity.NotificationTemplateBulkCreatePayload.NotificationTemplates == nil { + if e.ComplexityRoot.NotificationTemplateBulkCreatePayload.NotificationTemplates == nil { break } - return e.complexity.NotificationTemplateBulkCreatePayload.NotificationTemplates(childComplexity), true + return e.ComplexityRoot.NotificationTemplateBulkCreatePayload.NotificationTemplates(childComplexity), true case "NotificationTemplateBulkDeletePayload.deletedIDs": - if e.complexity.NotificationTemplateBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.NotificationTemplateBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.NotificationTemplateBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.NotificationTemplateBulkDeletePayload.DeletedIDs(childComplexity), true case "NotificationTemplateBulkUpdatePayload.notificationTemplates": - if e.complexity.NotificationTemplateBulkUpdatePayload.NotificationTemplates == nil { + if e.ComplexityRoot.NotificationTemplateBulkUpdatePayload.NotificationTemplates == nil { break } - return e.complexity.NotificationTemplateBulkUpdatePayload.NotificationTemplates(childComplexity), true + return e.ComplexityRoot.NotificationTemplateBulkUpdatePayload.NotificationTemplates(childComplexity), true case "NotificationTemplateBulkUpdatePayload.updatedIDs": - if e.complexity.NotificationTemplateBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.NotificationTemplateBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.NotificationTemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.NotificationTemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true case "NotificationTemplateConnection.edges": - if e.complexity.NotificationTemplateConnection.Edges == nil { + if e.ComplexityRoot.NotificationTemplateConnection.Edges == nil { break } - return e.complexity.NotificationTemplateConnection.Edges(childComplexity), true + return e.ComplexityRoot.NotificationTemplateConnection.Edges(childComplexity), true case "NotificationTemplateConnection.pageInfo": - if e.complexity.NotificationTemplateConnection.PageInfo == nil { + if e.ComplexityRoot.NotificationTemplateConnection.PageInfo == nil { break } - return e.complexity.NotificationTemplateConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NotificationTemplateConnection.PageInfo(childComplexity), true case "NotificationTemplateConnection.totalCount": - if e.complexity.NotificationTemplateConnection.TotalCount == nil { + if e.ComplexityRoot.NotificationTemplateConnection.TotalCount == nil { break } - return e.complexity.NotificationTemplateConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NotificationTemplateConnection.TotalCount(childComplexity), true case "NotificationTemplateCreatePayload.notificationTemplate": - if e.complexity.NotificationTemplateCreatePayload.NotificationTemplate == nil { + if e.ComplexityRoot.NotificationTemplateCreatePayload.NotificationTemplate == nil { break } - return e.complexity.NotificationTemplateCreatePayload.NotificationTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplateCreatePayload.NotificationTemplate(childComplexity), true case "NotificationTemplateDeletePayload.deletedID": - if e.complexity.NotificationTemplateDeletePayload.DeletedID == nil { + if e.ComplexityRoot.NotificationTemplateDeletePayload.DeletedID == nil { break } - return e.complexity.NotificationTemplateDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.NotificationTemplateDeletePayload.DeletedID(childComplexity), true case "NotificationTemplateEdge.cursor": - if e.complexity.NotificationTemplateEdge.Cursor == nil { + if e.ComplexityRoot.NotificationTemplateEdge.Cursor == nil { break } - return e.complexity.NotificationTemplateEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NotificationTemplateEdge.Cursor(childComplexity), true case "NotificationTemplateEdge.node": - if e.complexity.NotificationTemplateEdge.Node == nil { + if e.ComplexityRoot.NotificationTemplateEdge.Node == nil { break } - return e.complexity.NotificationTemplateEdge.Node(childComplexity), true + return e.ComplexityRoot.NotificationTemplateEdge.Node(childComplexity), true case "NotificationTemplateUpdatePayload.notificationTemplate": - if e.complexity.NotificationTemplateUpdatePayload.NotificationTemplate == nil { + if e.ComplexityRoot.NotificationTemplateUpdatePayload.NotificationTemplate == nil { break } - return e.complexity.NotificationTemplateUpdatePayload.NotificationTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplateUpdatePayload.NotificationTemplate(childComplexity), true case "NotificationUpdatePayload.notification": - if e.complexity.NotificationUpdatePayload.Notification == nil { + if e.ComplexityRoot.NotificationUpdatePayload.Notification == nil { break } - return e.complexity.NotificationUpdatePayload.Notification(childComplexity), true + return e.ComplexityRoot.NotificationUpdatePayload.Notification(childComplexity), true case "Onboarding.companyDetails": - if e.complexity.Onboarding.CompanyDetails == nil { + if e.ComplexityRoot.Onboarding.CompanyDetails == nil { break } - return e.complexity.Onboarding.CompanyDetails(childComplexity), true + return e.ComplexityRoot.Onboarding.CompanyDetails(childComplexity), true case "Onboarding.companyName": - if e.complexity.Onboarding.CompanyName == nil { + if e.ComplexityRoot.Onboarding.CompanyName == nil { break } - return e.complexity.Onboarding.CompanyName(childComplexity), true + return e.ComplexityRoot.Onboarding.CompanyName(childComplexity), true case "Onboarding.compliance": - if e.complexity.Onboarding.Compliance == nil { + if e.ComplexityRoot.Onboarding.Compliance == nil { break } - return e.complexity.Onboarding.Compliance(childComplexity), true + return e.ComplexityRoot.Onboarding.Compliance(childComplexity), true case "Onboarding.domains": - if e.complexity.Onboarding.Domains == nil { + if e.ComplexityRoot.Onboarding.Domains == nil { break } - return e.complexity.Onboarding.Domains(childComplexity), true + return e.ComplexityRoot.Onboarding.Domains(childComplexity), true case "Onboarding.id": - if e.complexity.Onboarding.ID == nil { + if e.ComplexityRoot.Onboarding.ID == nil { break } - return e.complexity.Onboarding.ID(childComplexity), true + return e.ComplexityRoot.Onboarding.ID(childComplexity), true case "Onboarding.organization": - if e.complexity.Onboarding.Organization == nil { + if e.ComplexityRoot.Onboarding.Organization == nil { break } - return e.complexity.Onboarding.Organization(childComplexity), true + return e.ComplexityRoot.Onboarding.Organization(childComplexity), true case "Onboarding.organizationID": - if e.complexity.Onboarding.OrganizationID == nil { + if e.ComplexityRoot.Onboarding.OrganizationID == nil { break } - return e.complexity.Onboarding.OrganizationID(childComplexity), true + return e.ComplexityRoot.Onboarding.OrganizationID(childComplexity), true case "Onboarding.userDetails": - if e.complexity.Onboarding.UserDetails == nil { + if e.ComplexityRoot.Onboarding.UserDetails == nil { break } - return e.complexity.Onboarding.UserDetails(childComplexity), true + return e.ComplexityRoot.Onboarding.UserDetails(childComplexity), true case "OnboardingCreatePayload.onboarding": - if e.complexity.OnboardingCreatePayload.Onboarding == nil { + if e.ComplexityRoot.OnboardingCreatePayload.Onboarding == nil { break } - return e.complexity.OnboardingCreatePayload.Onboarding(childComplexity), true + return e.ComplexityRoot.OnboardingCreatePayload.Onboarding(childComplexity), true case "OrgMembership.createdAt": - if e.complexity.OrgMembership.CreatedAt == nil { + if e.ComplexityRoot.OrgMembership.CreatedAt == nil { break } - return e.complexity.OrgMembership.CreatedAt(childComplexity), true + return e.ComplexityRoot.OrgMembership.CreatedAt(childComplexity), true case "OrgMembership.createdBy": - if e.complexity.OrgMembership.CreatedBy == nil { + if e.ComplexityRoot.OrgMembership.CreatedBy == nil { break } - return e.complexity.OrgMembership.CreatedBy(childComplexity), true + return e.ComplexityRoot.OrgMembership.CreatedBy(childComplexity), true case "OrgMembership.events": - if e.complexity.OrgMembership.Events == nil { + if e.ComplexityRoot.OrgMembership.Events == nil { break } @@ -30899,178 +30882,178 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.OrgMembership.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.OrgMembership.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "OrgMembership.id": - if e.complexity.OrgMembership.ID == nil { + if e.ComplexityRoot.OrgMembership.ID == nil { break } - return e.complexity.OrgMembership.ID(childComplexity), true + return e.ComplexityRoot.OrgMembership.ID(childComplexity), true case "OrgMembership.organization": - if e.complexity.OrgMembership.Organization == nil { + if e.ComplexityRoot.OrgMembership.Organization == nil { break } - return e.complexity.OrgMembership.Organization(childComplexity), true + return e.ComplexityRoot.OrgMembership.Organization(childComplexity), true case "OrgMembership.organizationID": - if e.complexity.OrgMembership.OrganizationID == nil { + if e.ComplexityRoot.OrgMembership.OrganizationID == nil { break } - return e.complexity.OrgMembership.OrganizationID(childComplexity), true + return e.ComplexityRoot.OrgMembership.OrganizationID(childComplexity), true case "OrgMembership.role": - if e.complexity.OrgMembership.Role == nil { + if e.ComplexityRoot.OrgMembership.Role == nil { break } - return e.complexity.OrgMembership.Role(childComplexity), true + return e.ComplexityRoot.OrgMembership.Role(childComplexity), true case "OrgMembership.updatedAt": - if e.complexity.OrgMembership.UpdatedAt == nil { + if e.ComplexityRoot.OrgMembership.UpdatedAt == nil { break } - return e.complexity.OrgMembership.UpdatedAt(childComplexity), true + return e.ComplexityRoot.OrgMembership.UpdatedAt(childComplexity), true case "OrgMembership.updatedBy": - if e.complexity.OrgMembership.UpdatedBy == nil { + if e.ComplexityRoot.OrgMembership.UpdatedBy == nil { break } - return e.complexity.OrgMembership.UpdatedBy(childComplexity), true + return e.ComplexityRoot.OrgMembership.UpdatedBy(childComplexity), true case "OrgMembership.user": - if e.complexity.OrgMembership.User == nil { + if e.ComplexityRoot.OrgMembership.User == nil { break } - return e.complexity.OrgMembership.User(childComplexity), true + return e.ComplexityRoot.OrgMembership.User(childComplexity), true case "OrgMembership.userID": - if e.complexity.OrgMembership.UserID == nil { + if e.ComplexityRoot.OrgMembership.UserID == nil { break } - return e.complexity.OrgMembership.UserID(childComplexity), true + return e.ComplexityRoot.OrgMembership.UserID(childComplexity), true case "OrgMembershipBulkCreatePayload.orgMemberships": - if e.complexity.OrgMembershipBulkCreatePayload.OrgMemberships == nil { + if e.ComplexityRoot.OrgMembershipBulkCreatePayload.OrgMemberships == nil { break } - return e.complexity.OrgMembershipBulkCreatePayload.OrgMemberships(childComplexity), true + return e.ComplexityRoot.OrgMembershipBulkCreatePayload.OrgMemberships(childComplexity), true case "OrgMembershipBulkDeletePayload.deletedIDs": - if e.complexity.OrgMembershipBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.OrgMembershipBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.OrgMembershipBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.OrgMembershipBulkDeletePayload.DeletedIDs(childComplexity), true case "OrgMembershipBulkUpdatePayload.orgMemberships": - if e.complexity.OrgMembershipBulkUpdatePayload.OrgMemberships == nil { + if e.ComplexityRoot.OrgMembershipBulkUpdatePayload.OrgMemberships == nil { break } - return e.complexity.OrgMembershipBulkUpdatePayload.OrgMemberships(childComplexity), true + return e.ComplexityRoot.OrgMembershipBulkUpdatePayload.OrgMemberships(childComplexity), true case "OrgMembershipBulkUpdatePayload.updatedIDs": - if e.complexity.OrgMembershipBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.OrgMembershipBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.OrgMembershipBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.OrgMembershipBulkUpdatePayload.UpdatedIDs(childComplexity), true case "OrgMembershipConnection.edges": - if e.complexity.OrgMembershipConnection.Edges == nil { + if e.ComplexityRoot.OrgMembershipConnection.Edges == nil { break } - return e.complexity.OrgMembershipConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrgMembershipConnection.Edges(childComplexity), true case "OrgMembershipConnection.pageInfo": - if e.complexity.OrgMembershipConnection.PageInfo == nil { + if e.ComplexityRoot.OrgMembershipConnection.PageInfo == nil { break } - return e.complexity.OrgMembershipConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrgMembershipConnection.PageInfo(childComplexity), true case "OrgMembershipConnection.totalCount": - if e.complexity.OrgMembershipConnection.TotalCount == nil { + if e.ComplexityRoot.OrgMembershipConnection.TotalCount == nil { break } - return e.complexity.OrgMembershipConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrgMembershipConnection.TotalCount(childComplexity), true case "OrgMembershipCreatePayload.orgMembership": - if e.complexity.OrgMembershipCreatePayload.OrgMembership == nil { + if e.ComplexityRoot.OrgMembershipCreatePayload.OrgMembership == nil { break } - return e.complexity.OrgMembershipCreatePayload.OrgMembership(childComplexity), true + return e.ComplexityRoot.OrgMembershipCreatePayload.OrgMembership(childComplexity), true case "OrgMembershipDeletePayload.deletedID": - if e.complexity.OrgMembershipDeletePayload.DeletedID == nil { + if e.ComplexityRoot.OrgMembershipDeletePayload.DeletedID == nil { break } - return e.complexity.OrgMembershipDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.OrgMembershipDeletePayload.DeletedID(childComplexity), true case "OrgMembershipEdge.cursor": - if e.complexity.OrgMembershipEdge.Cursor == nil { + if e.ComplexityRoot.OrgMembershipEdge.Cursor == nil { break } - return e.complexity.OrgMembershipEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrgMembershipEdge.Cursor(childComplexity), true case "OrgMembershipEdge.node": - if e.complexity.OrgMembershipEdge.Node == nil { + if e.ComplexityRoot.OrgMembershipEdge.Node == nil { break } - return e.complexity.OrgMembershipEdge.Node(childComplexity), true + return e.ComplexityRoot.OrgMembershipEdge.Node(childComplexity), true case "OrgMembershipUpdatePayload.orgMembership": - if e.complexity.OrgMembershipUpdatePayload.OrgMembership == nil { + if e.ComplexityRoot.OrgMembershipUpdatePayload.OrgMembership == nil { break } - return e.complexity.OrgMembershipUpdatePayload.OrgMembership(childComplexity), true + return e.ComplexityRoot.OrgMembershipUpdatePayload.OrgMembership(childComplexity), true case "OrgSubscription.active": - if e.complexity.OrgSubscription.Active == nil { + if e.ComplexityRoot.OrgSubscription.Active == nil { break } - return e.complexity.OrgSubscription.Active(childComplexity), true + return e.ComplexityRoot.OrgSubscription.Active(childComplexity), true case "OrgSubscription.createdAt": - if e.complexity.OrgSubscription.CreatedAt == nil { + if e.ComplexityRoot.OrgSubscription.CreatedAt == nil { break } - return e.complexity.OrgSubscription.CreatedAt(childComplexity), true + return e.ComplexityRoot.OrgSubscription.CreatedAt(childComplexity), true case "OrgSubscription.createdBy": - if e.complexity.OrgSubscription.CreatedBy == nil { + if e.ComplexityRoot.OrgSubscription.CreatedBy == nil { break } - return e.complexity.OrgSubscription.CreatedBy(childComplexity), true + return e.ComplexityRoot.OrgSubscription.CreatedBy(childComplexity), true case "OrgSubscription.daysUntilDue": - if e.complexity.OrgSubscription.DaysUntilDue == nil { + if e.ComplexityRoot.OrgSubscription.DaysUntilDue == nil { break } - return e.complexity.OrgSubscription.DaysUntilDue(childComplexity), true + return e.ComplexityRoot.OrgSubscription.DaysUntilDue(childComplexity), true case "OrgSubscription.events": - if e.complexity.OrgSubscription.Events == nil { + if e.ComplexityRoot.OrgSubscription.Events == nil { break } @@ -31079,122 +31062,122 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.OrgSubscription.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.OrgSubscription.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "OrgSubscription.expiresAt": - if e.complexity.OrgSubscription.ExpiresAt == nil { + if e.ComplexityRoot.OrgSubscription.ExpiresAt == nil { break } - return e.complexity.OrgSubscription.ExpiresAt(childComplexity), true + return e.ComplexityRoot.OrgSubscription.ExpiresAt(childComplexity), true case "OrgSubscription.id": - if e.complexity.OrgSubscription.ID == nil { + if e.ComplexityRoot.OrgSubscription.ID == nil { break } - return e.complexity.OrgSubscription.ID(childComplexity), true + return e.ComplexityRoot.OrgSubscription.ID(childComplexity), true case "OrgSubscription.managePaymentMethods": - if e.complexity.OrgSubscription.ManagePaymentMethods == nil { + if e.ComplexityRoot.OrgSubscription.ManagePaymentMethods == nil { break } - return e.complexity.OrgSubscription.ManagePaymentMethods(childComplexity), true + return e.ComplexityRoot.OrgSubscription.ManagePaymentMethods(childComplexity), true case "OrgSubscription.owner": - if e.complexity.OrgSubscription.Owner == nil { + if e.ComplexityRoot.OrgSubscription.Owner == nil { break } - return e.complexity.OrgSubscription.Owner(childComplexity), true + return e.ComplexityRoot.OrgSubscription.Owner(childComplexity), true case "OrgSubscription.ownerID": - if e.complexity.OrgSubscription.OwnerID == nil { + if e.ComplexityRoot.OrgSubscription.OwnerID == nil { break } - return e.complexity.OrgSubscription.OwnerID(childComplexity), true + return e.ComplexityRoot.OrgSubscription.OwnerID(childComplexity), true case "OrgSubscription.stripeSubscriptionID": - if e.complexity.OrgSubscription.StripeSubscriptionID == nil { + if e.ComplexityRoot.OrgSubscription.StripeSubscriptionID == nil { break } - return e.complexity.OrgSubscription.StripeSubscriptionID(childComplexity), true + return e.ComplexityRoot.OrgSubscription.StripeSubscriptionID(childComplexity), true case "OrgSubscription.stripeSubscriptionStatus": - if e.complexity.OrgSubscription.StripeSubscriptionStatus == nil { + if e.ComplexityRoot.OrgSubscription.StripeSubscriptionStatus == nil { break } - return e.complexity.OrgSubscription.StripeSubscriptionStatus(childComplexity), true + return e.ComplexityRoot.OrgSubscription.StripeSubscriptionStatus(childComplexity), true case "OrgSubscription.tags": - if e.complexity.OrgSubscription.Tags == nil { + if e.ComplexityRoot.OrgSubscription.Tags == nil { break } - return e.complexity.OrgSubscription.Tags(childComplexity), true + return e.ComplexityRoot.OrgSubscription.Tags(childComplexity), true case "OrgSubscription.trialExpiresAt": - if e.complexity.OrgSubscription.TrialExpiresAt == nil { + if e.ComplexityRoot.OrgSubscription.TrialExpiresAt == nil { break } - return e.complexity.OrgSubscription.TrialExpiresAt(childComplexity), true + return e.ComplexityRoot.OrgSubscription.TrialExpiresAt(childComplexity), true case "OrgSubscription.updatedAt": - if e.complexity.OrgSubscription.UpdatedAt == nil { + if e.ComplexityRoot.OrgSubscription.UpdatedAt == nil { break } - return e.complexity.OrgSubscription.UpdatedAt(childComplexity), true + return e.ComplexityRoot.OrgSubscription.UpdatedAt(childComplexity), true case "OrgSubscription.updatedBy": - if e.complexity.OrgSubscription.UpdatedBy == nil { + if e.ComplexityRoot.OrgSubscription.UpdatedBy == nil { break } - return e.complexity.OrgSubscription.UpdatedBy(childComplexity), true + return e.ComplexityRoot.OrgSubscription.UpdatedBy(childComplexity), true case "OrgSubscriptionConnection.edges": - if e.complexity.OrgSubscriptionConnection.Edges == nil { + if e.ComplexityRoot.OrgSubscriptionConnection.Edges == nil { break } - return e.complexity.OrgSubscriptionConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionConnection.Edges(childComplexity), true case "OrgSubscriptionConnection.pageInfo": - if e.complexity.OrgSubscriptionConnection.PageInfo == nil { + if e.ComplexityRoot.OrgSubscriptionConnection.PageInfo == nil { break } - return e.complexity.OrgSubscriptionConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionConnection.PageInfo(childComplexity), true case "OrgSubscriptionConnection.totalCount": - if e.complexity.OrgSubscriptionConnection.TotalCount == nil { + if e.ComplexityRoot.OrgSubscriptionConnection.TotalCount == nil { break } - return e.complexity.OrgSubscriptionConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionConnection.TotalCount(childComplexity), true case "OrgSubscriptionEdge.cursor": - if e.complexity.OrgSubscriptionEdge.Cursor == nil { + if e.ComplexityRoot.OrgSubscriptionEdge.Cursor == nil { break } - return e.complexity.OrgSubscriptionEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionEdge.Cursor(childComplexity), true case "OrgSubscriptionEdge.node": - if e.complexity.OrgSubscriptionEdge.Node == nil { + if e.ComplexityRoot.OrgSubscriptionEdge.Node == nil { break } - return e.complexity.OrgSubscriptionEdge.Node(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionEdge.Node(childComplexity), true case "Organization.apiTokens": - if e.complexity.Organization.APITokens == nil { + if e.ComplexityRoot.Organization.APITokens == nil { break } @@ -31203,10 +31186,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.APITokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.APITokenOrder), args["where"].(*generated.APITokenWhereInput)), true + return e.ComplexityRoot.Organization.APITokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.APITokenOrder), args["where"].(*generated.APITokenWhereInput)), true case "Organization.actionPlanCreators": - if e.complexity.Organization.ActionPlanCreators == nil { + if e.ComplexityRoot.Organization.ActionPlanCreators == nil { break } @@ -31215,10 +31198,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ActionPlanCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.ActionPlanCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.actionPlans": - if e.complexity.Organization.ActionPlans == nil { + if e.ComplexityRoot.Organization.ActionPlans == nil { break } @@ -31227,10 +31210,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Organization.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Organization.assessmentResponses": - if e.complexity.Organization.AssessmentResponses == nil { + if e.ComplexityRoot.Organization.AssessmentResponses == nil { break } @@ -31239,10 +31222,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true + return e.ComplexityRoot.Organization.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true case "Organization.assessments": - if e.complexity.Organization.Assessments == nil { + if e.ComplexityRoot.Organization.Assessments == nil { break } @@ -31251,10 +31234,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true + return e.ComplexityRoot.Organization.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true case "Organization.assetCreators": - if e.complexity.Organization.AssetCreators == nil { + if e.ComplexityRoot.Organization.AssetCreators == nil { break } @@ -31263,10 +31246,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.AssetCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.AssetCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.assets": - if e.complexity.Organization.Assets == nil { + if e.ComplexityRoot.Organization.Assets == nil { break } @@ -31275,38 +31258,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Organization.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Organization.avatarFile": - if e.complexity.Organization.AvatarFile == nil { + if e.ComplexityRoot.Organization.AvatarFile == nil { break } - return e.complexity.Organization.AvatarFile(childComplexity), true + return e.ComplexityRoot.Organization.AvatarFile(childComplexity), true case "Organization.avatarLocalFileID": - if e.complexity.Organization.AvatarLocalFileID == nil { + if e.ComplexityRoot.Organization.AvatarLocalFileID == nil { break } - return e.complexity.Organization.AvatarLocalFileID(childComplexity), true + return e.ComplexityRoot.Organization.AvatarLocalFileID(childComplexity), true case "Organization.avatarRemoteURL": - if e.complexity.Organization.AvatarRemoteURL == nil { + if e.ComplexityRoot.Organization.AvatarRemoteURL == nil { break } - return e.complexity.Organization.AvatarRemoteURL(childComplexity), true + return e.ComplexityRoot.Organization.AvatarRemoteURL(childComplexity), true case "Organization.avatarUpdatedAt": - if e.complexity.Organization.AvatarUpdatedAt == nil { + if e.ComplexityRoot.Organization.AvatarUpdatedAt == nil { break } - return e.complexity.Organization.AvatarUpdatedAt(childComplexity), true + return e.ComplexityRoot.Organization.AvatarUpdatedAt(childComplexity), true case "Organization.campaignTargets": - if e.complexity.Organization.CampaignTargets == nil { + if e.ComplexityRoot.Organization.CampaignTargets == nil { break } @@ -31315,10 +31298,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true + return e.ComplexityRoot.Organization.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true case "Organization.campaigns": - if e.complexity.Organization.Campaigns == nil { + if e.ComplexityRoot.Organization.Campaigns == nil { break } @@ -31327,10 +31310,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Organization.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Organization.children": - if e.complexity.Organization.Children == nil { + if e.ComplexityRoot.Organization.Children == nil { break } @@ -31339,10 +31322,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Children(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true + return e.ComplexityRoot.Organization.Children(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true case "Organization.contacts": - if e.complexity.Organization.Contacts == nil { + if e.ComplexityRoot.Organization.Contacts == nil { break } @@ -31351,10 +31334,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true + return e.ComplexityRoot.Organization.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true case "Organization.controlCreators": - if e.complexity.Organization.ControlCreators == nil { + if e.ComplexityRoot.Organization.ControlCreators == nil { break } @@ -31363,10 +31346,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ControlCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.ControlCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.controlImplementationCreators": - if e.complexity.Organization.ControlImplementationCreators == nil { + if e.ComplexityRoot.Organization.ControlImplementationCreators == nil { break } @@ -31375,10 +31358,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ControlImplementationCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.ControlImplementationCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.controlImplementations": - if e.complexity.Organization.ControlImplementations == nil { + if e.ComplexityRoot.Organization.ControlImplementations == nil { break } @@ -31387,10 +31370,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Organization.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Organization.controlObjectiveCreators": - if e.complexity.Organization.ControlObjectiveCreators == nil { + if e.ComplexityRoot.Organization.ControlObjectiveCreators == nil { break } @@ -31399,10 +31382,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ControlObjectiveCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.ControlObjectiveCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.controlObjectives": - if e.complexity.Organization.ControlObjectives == nil { + if e.ComplexityRoot.Organization.ControlObjectives == nil { break } @@ -31411,10 +31394,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Organization.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Organization.controls": - if e.complexity.Organization.Controls == nil { + if e.ComplexityRoot.Organization.Controls == nil { break } @@ -31423,24 +31406,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Organization.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Organization.createdAt": - if e.complexity.Organization.CreatedAt == nil { + if e.ComplexityRoot.Organization.CreatedAt == nil { break } - return e.complexity.Organization.CreatedAt(childComplexity), true + return e.ComplexityRoot.Organization.CreatedAt(childComplexity), true case "Organization.createdBy": - if e.complexity.Organization.CreatedBy == nil { + if e.ComplexityRoot.Organization.CreatedBy == nil { break } - return e.complexity.Organization.CreatedBy(childComplexity), true + return e.ComplexityRoot.Organization.CreatedBy(childComplexity), true case "Organization.customDomains": - if e.complexity.Organization.CustomDomains == nil { + if e.ComplexityRoot.Organization.CustomDomains == nil { break } @@ -31449,10 +31432,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true + return e.ComplexityRoot.Organization.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true case "Organization.customTypeEnums": - if e.complexity.Organization.CustomTypeEnums == nil { + if e.ComplexityRoot.Organization.CustomTypeEnums == nil { break } @@ -31461,10 +31444,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.CustomTypeEnums(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomTypeEnumOrder), args["where"].(*generated.CustomTypeEnumWhereInput)), true + return e.ComplexityRoot.Organization.CustomTypeEnums(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomTypeEnumOrder), args["where"].(*generated.CustomTypeEnumWhereInput)), true case "Organization.dnsVerifications": - if e.complexity.Organization.DNSVerifications == nil { + if e.ComplexityRoot.Organization.DNSVerifications == nil { break } @@ -31473,24 +31456,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.DNSVerifications(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DNSVerificationOrder), args["where"].(*generated.DNSVerificationWhereInput)), true + return e.ComplexityRoot.Organization.DNSVerifications(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DNSVerificationOrder), args["where"].(*generated.DNSVerificationWhereInput)), true case "Organization.dedicatedDb": - if e.complexity.Organization.DedicatedDb == nil { + if e.ComplexityRoot.Organization.DedicatedDb == nil { break } - return e.complexity.Organization.DedicatedDb(childComplexity), true + return e.ComplexityRoot.Organization.DedicatedDb(childComplexity), true case "Organization.description": - if e.complexity.Organization.Description == nil { + if e.ComplexityRoot.Organization.Description == nil { break } - return e.complexity.Organization.Description(childComplexity), true + return e.ComplexityRoot.Organization.Description(childComplexity), true case "Organization.directoryAccounts": - if e.complexity.Organization.DirectoryAccounts == nil { + if e.ComplexityRoot.Organization.DirectoryAccounts == nil { break } @@ -31499,10 +31482,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.Organization.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "Organization.directoryGroups": - if e.complexity.Organization.DirectoryGroups == nil { + if e.ComplexityRoot.Organization.DirectoryGroups == nil { break } @@ -31511,10 +31494,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true + return e.ComplexityRoot.Organization.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true case "Organization.directoryMemberships": - if e.complexity.Organization.DirectoryMemberships == nil { + if e.ComplexityRoot.Organization.DirectoryMemberships == nil { break } @@ -31523,10 +31506,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true + return e.ComplexityRoot.Organization.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true case "Organization.directorySyncRuns": - if e.complexity.Organization.DirectorySyncRuns == nil { + if e.ComplexityRoot.Organization.DirectorySyncRuns == nil { break } @@ -31535,10 +31518,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true + return e.ComplexityRoot.Organization.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true case "Organization.discussions": - if e.complexity.Organization.Discussions == nil { + if e.ComplexityRoot.Organization.Discussions == nil { break } @@ -31547,17 +31530,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true + return e.ComplexityRoot.Organization.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true case "Organization.displayName": - if e.complexity.Organization.DisplayName == nil { + if e.ComplexityRoot.Organization.DisplayName == nil { break } - return e.complexity.Organization.DisplayName(childComplexity), true + return e.ComplexityRoot.Organization.DisplayName(childComplexity), true case "Organization.documents": - if e.complexity.Organization.Documents == nil { + if e.ComplexityRoot.Organization.Documents == nil { break } @@ -31566,10 +31549,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Documents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true + return e.ComplexityRoot.Organization.Documents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true case "Organization.emailBrandings": - if e.complexity.Organization.EmailBrandings == nil { + if e.ComplexityRoot.Organization.EmailBrandings == nil { break } @@ -31578,10 +31561,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.EmailBrandings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailBrandingOrder), args["where"].(*generated.EmailBrandingWhereInput)), true + return e.ComplexityRoot.Organization.EmailBrandings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailBrandingOrder), args["where"].(*generated.EmailBrandingWhereInput)), true case "Organization.emailTemplates": - if e.complexity.Organization.EmailTemplates == nil { + if e.ComplexityRoot.Organization.EmailTemplates == nil { break } @@ -31590,10 +31573,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true + return e.ComplexityRoot.Organization.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true case "Organization.entities": - if e.complexity.Organization.Entities == nil { + if e.ComplexityRoot.Organization.Entities == nil { break } @@ -31602,10 +31585,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Organization.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Organization.entityTypes": - if e.complexity.Organization.EntityTypes == nil { + if e.ComplexityRoot.Organization.EntityTypes == nil { break } @@ -31614,10 +31597,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.EntityTypes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityTypeOrder), args["where"].(*generated.EntityTypeWhereInput)), true + return e.ComplexityRoot.Organization.EntityTypes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityTypeOrder), args["where"].(*generated.EntityTypeWhereInput)), true case "Organization.events": - if e.complexity.Organization.Events == nil { + if e.ComplexityRoot.Organization.Events == nil { break } @@ -31626,10 +31609,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Organization.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Organization.evidence": - if e.complexity.Organization.Evidence == nil { + if e.ComplexityRoot.Organization.Evidence == nil { break } @@ -31638,10 +31621,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Organization.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Organization.evidenceCreators": - if e.complexity.Organization.EvidenceCreators == nil { + if e.ComplexityRoot.Organization.EvidenceCreators == nil { break } @@ -31650,10 +31633,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.EvidenceCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.EvidenceCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.exports": - if e.complexity.Organization.Exports == nil { + if e.ComplexityRoot.Organization.Exports == nil { break } @@ -31662,10 +31645,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Exports(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ExportOrder), args["where"].(*generated.ExportWhereInput)), true + return e.ComplexityRoot.Organization.Exports(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ExportOrder), args["where"].(*generated.ExportWhereInput)), true case "Organization.files": - if e.complexity.Organization.Files == nil { + if e.ComplexityRoot.Organization.Files == nil { break } @@ -31674,10 +31657,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Organization.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Organization.findingCreators": - if e.complexity.Organization.FindingCreators == nil { + if e.ComplexityRoot.Organization.FindingCreators == nil { break } @@ -31686,10 +31669,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.FindingCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.FindingCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.findings": - if e.complexity.Organization.Findings == nil { + if e.ComplexityRoot.Organization.Findings == nil { break } @@ -31698,10 +31681,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.Organization.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "Organization.groupCreators": - if e.complexity.Organization.GroupCreators == nil { + if e.ComplexityRoot.Organization.GroupCreators == nil { break } @@ -31710,10 +31693,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.GroupCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.GroupCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.groups": - if e.complexity.Organization.Groups == nil { + if e.ComplexityRoot.Organization.Groups == nil { break } @@ -31722,17 +31705,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.id": - if e.complexity.Organization.ID == nil { + if e.ComplexityRoot.Organization.ID == nil { break } - return e.complexity.Organization.ID(childComplexity), true + return e.ComplexityRoot.Organization.ID(childComplexity), true case "Organization.identityHolderCreators": - if e.complexity.Organization.IdentityHolderCreators == nil { + if e.ComplexityRoot.Organization.IdentityHolderCreators == nil { break } @@ -31741,10 +31724,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.IdentityHolderCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.IdentityHolderCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.identityHolders": - if e.complexity.Organization.IdentityHolders == nil { + if e.ComplexityRoot.Organization.IdentityHolders == nil { break } @@ -31753,10 +31736,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Organization.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Organization.integrations": - if e.complexity.Organization.Integrations == nil { + if e.ComplexityRoot.Organization.Integrations == nil { break } @@ -31765,10 +31748,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Organization.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Organization.internalPolicies": - if e.complexity.Organization.InternalPolicies == nil { + if e.ComplexityRoot.Organization.InternalPolicies == nil { break } @@ -31777,10 +31760,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Organization.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Organization.internalPolicyCreators": - if e.complexity.Organization.InternalPolicyCreators == nil { + if e.ComplexityRoot.Organization.InternalPolicyCreators == nil { break } @@ -31789,10 +31772,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.InternalPolicyCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.InternalPolicyCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.invites": - if e.complexity.Organization.Invites == nil { + if e.ComplexityRoot.Organization.Invites == nil { break } @@ -31801,10 +31784,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Invites(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InviteOrder), args["where"].(*generated.InviteWhereInput)), true + return e.ComplexityRoot.Organization.Invites(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InviteOrder), args["where"].(*generated.InviteWhereInput)), true case "Organization.jobResults": - if e.complexity.Organization.JobResults == nil { + if e.ComplexityRoot.Organization.JobResults == nil { break } @@ -31813,10 +31796,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.JobResults(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobResultOrder), args["where"].(*generated.JobResultWhereInput)), true + return e.ComplexityRoot.Organization.JobResults(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobResultOrder), args["where"].(*generated.JobResultWhereInput)), true case "Organization.jobRunnerRegistrationTokens": - if e.complexity.Organization.JobRunnerRegistrationTokens == nil { + if e.ComplexityRoot.Organization.JobRunnerRegistrationTokens == nil { break } @@ -31825,10 +31808,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.JobRunnerRegistrationTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerRegistrationTokenOrder), args["where"].(*generated.JobRunnerRegistrationTokenWhereInput)), true + return e.ComplexityRoot.Organization.JobRunnerRegistrationTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerRegistrationTokenOrder), args["where"].(*generated.JobRunnerRegistrationTokenWhereInput)), true case "Organization.jobRunnerTokens": - if e.complexity.Organization.JobRunnerTokens == nil { + if e.ComplexityRoot.Organization.JobRunnerTokens == nil { break } @@ -31837,10 +31820,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.JobRunnerTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerTokenOrder), args["where"].(*generated.JobRunnerTokenWhereInput)), true + return e.ComplexityRoot.Organization.JobRunnerTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerTokenOrder), args["where"].(*generated.JobRunnerTokenWhereInput)), true case "Organization.jobRunners": - if e.complexity.Organization.JobRunners == nil { + if e.ComplexityRoot.Organization.JobRunners == nil { break } @@ -31849,10 +31832,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.JobRunners(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerOrder), args["where"].(*generated.JobRunnerWhereInput)), true + return e.ComplexityRoot.Organization.JobRunners(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerOrder), args["where"].(*generated.JobRunnerWhereInput)), true case "Organization.jobTemplates": - if e.complexity.Organization.JobTemplates == nil { + if e.ComplexityRoot.Organization.JobTemplates == nil { break } @@ -31861,10 +31844,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.JobTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobTemplateOrder), args["where"].(*generated.JobTemplateWhereInput)), true + return e.ComplexityRoot.Organization.JobTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobTemplateOrder), args["where"].(*generated.JobTemplateWhereInput)), true case "Organization.mappedControlCreators": - if e.complexity.Organization.MappedControlCreators == nil { + if e.ComplexityRoot.Organization.MappedControlCreators == nil { break } @@ -31873,10 +31856,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.MappedControlCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.MappedControlCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.mappedControls": - if e.complexity.Organization.MappedControls == nil { + if e.ComplexityRoot.Organization.MappedControls == nil { break } @@ -31885,10 +31868,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.MappedControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true + return e.ComplexityRoot.Organization.MappedControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true case "Organization.members": - if e.complexity.Organization.Members == nil { + if e.ComplexityRoot.Organization.Members == nil { break } @@ -31897,17 +31880,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true + return e.ComplexityRoot.Organization.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true case "Organization.name": - if e.complexity.Organization.Name == nil { + if e.ComplexityRoot.Organization.Name == nil { break } - return e.complexity.Organization.Name(childComplexity), true + return e.ComplexityRoot.Organization.Name(childComplexity), true case "Organization.narrativeCreators": - if e.complexity.Organization.NarrativeCreators == nil { + if e.ComplexityRoot.Organization.NarrativeCreators == nil { break } @@ -31916,10 +31899,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.NarrativeCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.NarrativeCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.narratives": - if e.complexity.Organization.Narratives == nil { + if e.ComplexityRoot.Organization.Narratives == nil { break } @@ -31928,10 +31911,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Organization.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Organization.notes": - if e.complexity.Organization.Notes == nil { + if e.ComplexityRoot.Organization.Notes == nil { break } @@ -31940,10 +31923,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Organization.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Organization.notificationPreferences": - if e.complexity.Organization.NotificationPreferences == nil { + if e.ComplexityRoot.Organization.NotificationPreferences == nil { break } @@ -31952,10 +31935,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.NotificationPreferences(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationPreferenceOrder), args["where"].(*generated.NotificationPreferenceWhereInput)), true + return e.ComplexityRoot.Organization.NotificationPreferences(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationPreferenceOrder), args["where"].(*generated.NotificationPreferenceWhereInput)), true case "Organization.notificationTemplates": - if e.complexity.Organization.NotificationTemplates == nil { + if e.ComplexityRoot.Organization.NotificationTemplates == nil { break } @@ -31964,24 +31947,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true + return e.ComplexityRoot.Organization.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true case "Organization.orgSubscriptions": - if e.complexity.Organization.OrgSubscriptions == nil { + if e.ComplexityRoot.Organization.OrgSubscriptions == nil { break } - return e.complexity.Organization.OrgSubscriptions(childComplexity), true + return e.ComplexityRoot.Organization.OrgSubscriptions(childComplexity), true case "Organization.parent": - if e.complexity.Organization.Parent == nil { + if e.ComplexityRoot.Organization.Parent == nil { break } - return e.complexity.Organization.Parent(childComplexity), true + return e.ComplexityRoot.Organization.Parent(childComplexity), true case "Organization.personalAccessTokens": - if e.complexity.Organization.PersonalAccessTokens == nil { + if e.ComplexityRoot.Organization.PersonalAccessTokens == nil { break } @@ -31990,17 +31973,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true + return e.ComplexityRoot.Organization.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true case "Organization.personalOrg": - if e.complexity.Organization.PersonalOrg == nil { + if e.ComplexityRoot.Organization.PersonalOrg == nil { break } - return e.complexity.Organization.PersonalOrg(childComplexity), true + return e.ComplexityRoot.Organization.PersonalOrg(childComplexity), true case "Organization.platforms": - if e.complexity.Organization.Platforms == nil { + if e.ComplexityRoot.Organization.Platforms == nil { break } @@ -32009,10 +31992,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Organization.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Organization.procedureCreators": - if e.complexity.Organization.ProcedureCreators == nil { + if e.ComplexityRoot.Organization.ProcedureCreators == nil { break } @@ -32021,10 +32004,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ProcedureCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.ProcedureCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.procedures": - if e.complexity.Organization.Procedures == nil { + if e.ComplexityRoot.Organization.Procedures == nil { break } @@ -32033,10 +32016,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Organization.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Organization.programCreators": - if e.complexity.Organization.ProgramCreators == nil { + if e.ComplexityRoot.Organization.ProgramCreators == nil { break } @@ -32045,10 +32028,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ProgramCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.ProgramCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.programs": - if e.complexity.Organization.Programs == nil { + if e.ComplexityRoot.Organization.Programs == nil { break } @@ -32057,10 +32040,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Organization.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Organization.remediations": - if e.complexity.Organization.Remediations == nil { + if e.ComplexityRoot.Organization.Remediations == nil { break } @@ -32069,10 +32052,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.Organization.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "Organization.reviews": - if e.complexity.Organization.Reviews == nil { + if e.ComplexityRoot.Organization.Reviews == nil { break } @@ -32081,10 +32064,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true + return e.ComplexityRoot.Organization.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true case "Organization.riskCreators": - if e.complexity.Organization.RiskCreators == nil { + if e.ComplexityRoot.Organization.RiskCreators == nil { break } @@ -32093,10 +32076,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.RiskCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.RiskCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.risks": - if e.complexity.Organization.Risks == nil { + if e.ComplexityRoot.Organization.Risks == nil { break } @@ -32105,10 +32088,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Organization.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Organization.scans": - if e.complexity.Organization.Scans == nil { + if e.ComplexityRoot.Organization.Scans == nil { break } @@ -32117,10 +32100,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Organization.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Organization.scheduledJobCreators": - if e.complexity.Organization.ScheduledJobCreators == nil { + if e.ComplexityRoot.Organization.ScheduledJobCreators == nil { break } @@ -32129,10 +32112,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ScheduledJobCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.ScheduledJobCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.scheduledJobRuns": - if e.complexity.Organization.ScheduledJobRuns == nil { + if e.ComplexityRoot.Organization.ScheduledJobRuns == nil { break } @@ -32141,10 +32124,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ScheduledJobRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobRunOrder), args["where"].(*generated.ScheduledJobRunWhereInput)), true + return e.ComplexityRoot.Organization.ScheduledJobRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobRunOrder), args["where"].(*generated.ScheduledJobRunWhereInput)), true case "Organization.scheduledJobs": - if e.complexity.Organization.ScheduledJobs == nil { + if e.ComplexityRoot.Organization.ScheduledJobs == nil { break } @@ -32153,10 +32136,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true + return e.ComplexityRoot.Organization.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true case "Organization.secrets": - if e.complexity.Organization.Secrets == nil { + if e.ComplexityRoot.Organization.Secrets == nil { break } @@ -32165,17 +32148,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true + return e.ComplexityRoot.Organization.Secrets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true case "Organization.setting": - if e.complexity.Organization.Setting == nil { + if e.ComplexityRoot.Organization.Setting == nil { break } - return e.complexity.Organization.Setting(childComplexity), true + return e.ComplexityRoot.Organization.Setting(childComplexity), true case "Organization.standardCreators": - if e.complexity.Organization.StandardCreators == nil { + if e.ComplexityRoot.Organization.StandardCreators == nil { break } @@ -32184,10 +32167,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.StandardCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.StandardCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.standards": - if e.complexity.Organization.Standards == nil { + if e.ComplexityRoot.Organization.Standards == nil { break } @@ -32196,17 +32179,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Standards(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.StandardOrder), args["where"].(*generated.StandardWhereInput)), true + return e.ComplexityRoot.Organization.Standards(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.StandardOrder), args["where"].(*generated.StandardWhereInput)), true case "Organization.stripeCustomerID": - if e.complexity.Organization.StripeCustomerID == nil { + if e.ComplexityRoot.Organization.StripeCustomerID == nil { break } - return e.complexity.Organization.StripeCustomerID(childComplexity), true + return e.ComplexityRoot.Organization.StripeCustomerID(childComplexity), true case "Organization.subcontrols": - if e.complexity.Organization.Subcontrols == nil { + if e.ComplexityRoot.Organization.Subcontrols == nil { break } @@ -32215,10 +32198,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Organization.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Organization.subprocessorCreators": - if e.complexity.Organization.SubprocessorCreators == nil { + if e.ComplexityRoot.Organization.SubprocessorCreators == nil { break } @@ -32227,10 +32210,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.SubprocessorCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.SubprocessorCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.subprocessors": - if e.complexity.Organization.Subprocessors == nil { + if e.ComplexityRoot.Organization.Subprocessors == nil { break } @@ -32239,10 +32222,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Subprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubprocessorOrder), args["where"].(*generated.SubprocessorWhereInput)), true + return e.ComplexityRoot.Organization.Subprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubprocessorOrder), args["where"].(*generated.SubprocessorWhereInput)), true case "Organization.subscribers": - if e.complexity.Organization.Subscribers == nil { + if e.ComplexityRoot.Organization.Subscribers == nil { break } @@ -32251,10 +32234,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Subscribers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubscriberOrder), args["where"].(*generated.SubscriberWhereInput)), true + return e.ComplexityRoot.Organization.Subscribers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubscriberOrder), args["where"].(*generated.SubscriberWhereInput)), true case "Organization.tagDefinitions": - if e.complexity.Organization.TagDefinitions == nil { + if e.ComplexityRoot.Organization.TagDefinitions == nil { break } @@ -32263,17 +32246,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.TagDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TagDefinitionOrder), args["where"].(*generated.TagDefinitionWhereInput)), true + return e.ComplexityRoot.Organization.TagDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TagDefinitionOrder), args["where"].(*generated.TagDefinitionWhereInput)), true case "Organization.tags": - if e.complexity.Organization.Tags == nil { + if e.ComplexityRoot.Organization.Tags == nil { break } - return e.complexity.Organization.Tags(childComplexity), true + return e.ComplexityRoot.Organization.Tags(childComplexity), true case "Organization.tasks": - if e.complexity.Organization.Tasks == nil { + if e.ComplexityRoot.Organization.Tasks == nil { break } @@ -32282,10 +32265,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Organization.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Organization.templateCreators": - if e.complexity.Organization.TemplateCreators == nil { + if e.ComplexityRoot.Organization.TemplateCreators == nil { break } @@ -32294,10 +32277,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.TemplateCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.TemplateCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.templates": - if e.complexity.Organization.Templates == nil { + if e.ComplexityRoot.Organization.Templates == nil { break } @@ -32306,10 +32289,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true + return e.ComplexityRoot.Organization.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true case "Organization.trustCenterDocCreators": - if e.complexity.Organization.TrustCenterDocCreators == nil { + if e.ComplexityRoot.Organization.TrustCenterDocCreators == nil { break } @@ -32318,10 +32301,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.TrustCenterDocCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.TrustCenterDocCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.trustCenterSubprocessorCreators": - if e.complexity.Organization.TrustCenterSubprocessorCreators == nil { + if e.ComplexityRoot.Organization.TrustCenterSubprocessorCreators == nil { break } @@ -32330,10 +32313,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.TrustCenterSubprocessorCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.TrustCenterSubprocessorCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.trustCenterWatermarkConfigs": - if e.complexity.Organization.TrustCenterWatermarkConfigs == nil { + if e.ComplexityRoot.Organization.TrustCenterWatermarkConfigs == nil { break } @@ -32342,10 +32325,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.TrustCenterWatermarkConfigs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterWatermarkConfigOrder), args["where"].(*generated.TrustCenterWatermarkConfigWhereInput)), true + return e.ComplexityRoot.Organization.TrustCenterWatermarkConfigs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterWatermarkConfigOrder), args["where"].(*generated.TrustCenterWatermarkConfigWhereInput)), true case "Organization.trustCenters": - if e.complexity.Organization.TrustCenters == nil { + if e.ComplexityRoot.Organization.TrustCenters == nil { break } @@ -32354,24 +32337,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.TrustCenters(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterOrder), args["where"].(*generated.TrustCenterWhereInput)), true + return e.ComplexityRoot.Organization.TrustCenters(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterOrder), args["where"].(*generated.TrustCenterWhereInput)), true case "Organization.updatedAt": - if e.complexity.Organization.UpdatedAt == nil { + if e.ComplexityRoot.Organization.UpdatedAt == nil { break } - return e.complexity.Organization.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Organization.UpdatedAt(childComplexity), true case "Organization.updatedBy": - if e.complexity.Organization.UpdatedBy == nil { + if e.ComplexityRoot.Organization.UpdatedBy == nil { break } - return e.complexity.Organization.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Organization.UpdatedBy(childComplexity), true case "Organization.users": - if e.complexity.Organization.Users == nil { + if e.ComplexityRoot.Organization.Users == nil { break } @@ -32380,10 +32363,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true + return e.ComplexityRoot.Organization.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true case "Organization.vulnerabilities": - if e.complexity.Organization.Vulnerabilities == nil { + if e.ComplexityRoot.Organization.Vulnerabilities == nil { break } @@ -32392,10 +32375,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Organization.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "Organization.vulnerabilityCreators": - if e.complexity.Organization.VulnerabilityCreators == nil { + if e.ComplexityRoot.Organization.VulnerabilityCreators == nil { break } @@ -32404,10 +32387,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.VulnerabilityCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Organization.VulnerabilityCreators(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Organization.workflowAssignmentTargets": - if e.complexity.Organization.WorkflowAssignmentTargets == nil { + if e.ComplexityRoot.Organization.WorkflowAssignmentTargets == nil { break } @@ -32416,10 +32399,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.WorkflowAssignmentTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), args["where"].(*generated.WorkflowAssignmentTargetWhereInput)), true + return e.ComplexityRoot.Organization.WorkflowAssignmentTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), args["where"].(*generated.WorkflowAssignmentTargetWhereInput)), true case "Organization.workflowAssignments": - if e.complexity.Organization.WorkflowAssignments == nil { + if e.ComplexityRoot.Organization.WorkflowAssignments == nil { break } @@ -32428,10 +32411,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.WorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true + return e.ComplexityRoot.Organization.WorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true case "Organization.workflowDefinitions": - if e.complexity.Organization.WorkflowDefinitions == nil { + if e.ComplexityRoot.Organization.WorkflowDefinitions == nil { break } @@ -32440,10 +32423,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.WorkflowDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowDefinitionOrder), args["where"].(*generated.WorkflowDefinitionWhereInput)), true + return e.ComplexityRoot.Organization.WorkflowDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowDefinitionOrder), args["where"].(*generated.WorkflowDefinitionWhereInput)), true case "Organization.workflowEvents": - if e.complexity.Organization.WorkflowEvents == nil { + if e.ComplexityRoot.Organization.WorkflowEvents == nil { break } @@ -32452,10 +32435,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.WorkflowEvents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput)), true + return e.ComplexityRoot.Organization.WorkflowEvents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput)), true case "Organization.workflowInstances": - if e.complexity.Organization.WorkflowInstances == nil { + if e.ComplexityRoot.Organization.WorkflowInstances == nil { break } @@ -32464,10 +32447,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.WorkflowInstances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowInstanceOrder), args["where"].(*generated.WorkflowInstanceWhereInput)), true + return e.ComplexityRoot.Organization.WorkflowInstances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowInstanceOrder), args["where"].(*generated.WorkflowInstanceWhereInput)), true case "Organization.workflowObjectRefs": - if e.complexity.Organization.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Organization.WorkflowObjectRefs == nil { break } @@ -32476,143 +32459,143 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Organization.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Organization.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "OrganizationBulkCreatePayload.organizations": - if e.complexity.OrganizationBulkCreatePayload.Organizations == nil { + if e.ComplexityRoot.OrganizationBulkCreatePayload.Organizations == nil { break } - return e.complexity.OrganizationBulkCreatePayload.Organizations(childComplexity), true + return e.ComplexityRoot.OrganizationBulkCreatePayload.Organizations(childComplexity), true case "OrganizationConnection.edges": - if e.complexity.OrganizationConnection.Edges == nil { + if e.ComplexityRoot.OrganizationConnection.Edges == nil { break } - return e.complexity.OrganizationConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrganizationConnection.Edges(childComplexity), true case "OrganizationConnection.pageInfo": - if e.complexity.OrganizationConnection.PageInfo == nil { + if e.ComplexityRoot.OrganizationConnection.PageInfo == nil { break } - return e.complexity.OrganizationConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrganizationConnection.PageInfo(childComplexity), true case "OrganizationConnection.totalCount": - if e.complexity.OrganizationConnection.TotalCount == nil { + if e.ComplexityRoot.OrganizationConnection.TotalCount == nil { break } - return e.complexity.OrganizationConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrganizationConnection.TotalCount(childComplexity), true case "OrganizationCreatePayload.organization": - if e.complexity.OrganizationCreatePayload.Organization == nil { + if e.ComplexityRoot.OrganizationCreatePayload.Organization == nil { break } - return e.complexity.OrganizationCreatePayload.Organization(childComplexity), true + return e.ComplexityRoot.OrganizationCreatePayload.Organization(childComplexity), true case "OrganizationDeletePayload.deletedID": - if e.complexity.OrganizationDeletePayload.DeletedID == nil { + if e.ComplexityRoot.OrganizationDeletePayload.DeletedID == nil { break } - return e.complexity.OrganizationDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.OrganizationDeletePayload.DeletedID(childComplexity), true case "OrganizationEdge.cursor": - if e.complexity.OrganizationEdge.Cursor == nil { + if e.ComplexityRoot.OrganizationEdge.Cursor == nil { break } - return e.complexity.OrganizationEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrganizationEdge.Cursor(childComplexity), true case "OrganizationEdge.node": - if e.complexity.OrganizationEdge.Node == nil { + if e.ComplexityRoot.OrganizationEdge.Node == nil { break } - return e.complexity.OrganizationEdge.Node(childComplexity), true + return e.ComplexityRoot.OrganizationEdge.Node(childComplexity), true case "OrganizationSetting.allowMatchingDomainsAutojoin": - if e.complexity.OrganizationSetting.AllowMatchingDomainsAutojoin == nil { + if e.ComplexityRoot.OrganizationSetting.AllowMatchingDomainsAutojoin == nil { break } - return e.complexity.OrganizationSetting.AllowMatchingDomainsAutojoin(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.AllowMatchingDomainsAutojoin(childComplexity), true case "OrganizationSetting.allowedEmailDomains": - if e.complexity.OrganizationSetting.AllowedEmailDomains == nil { + if e.ComplexityRoot.OrganizationSetting.AllowedEmailDomains == nil { break } - return e.complexity.OrganizationSetting.AllowedEmailDomains(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.AllowedEmailDomains(childComplexity), true case "OrganizationSetting.billingAddress": - if e.complexity.OrganizationSetting.BillingAddress == nil { + if e.ComplexityRoot.OrganizationSetting.BillingAddress == nil { break } - return e.complexity.OrganizationSetting.BillingAddress(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.BillingAddress(childComplexity), true case "OrganizationSetting.billingContact": - if e.complexity.OrganizationSetting.BillingContact == nil { + if e.ComplexityRoot.OrganizationSetting.BillingContact == nil { break } - return e.complexity.OrganizationSetting.BillingContact(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.BillingContact(childComplexity), true case "OrganizationSetting.billingEmail": - if e.complexity.OrganizationSetting.BillingEmail == nil { + if e.ComplexityRoot.OrganizationSetting.BillingEmail == nil { break } - return e.complexity.OrganizationSetting.BillingEmail(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.BillingEmail(childComplexity), true case "OrganizationSetting.billingNotificationsEnabled": - if e.complexity.OrganizationSetting.BillingNotificationsEnabled == nil { + if e.ComplexityRoot.OrganizationSetting.BillingNotificationsEnabled == nil { break } - return e.complexity.OrganizationSetting.BillingNotificationsEnabled(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.BillingNotificationsEnabled(childComplexity), true case "OrganizationSetting.billingPhone": - if e.complexity.OrganizationSetting.BillingPhone == nil { + if e.ComplexityRoot.OrganizationSetting.BillingPhone == nil { break } - return e.complexity.OrganizationSetting.BillingPhone(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.BillingPhone(childComplexity), true case "OrganizationSetting.complianceWebhookToken": - if e.complexity.OrganizationSetting.ComplianceWebhookToken == nil { + if e.ComplexityRoot.OrganizationSetting.ComplianceWebhookToken == nil { break } - return e.complexity.OrganizationSetting.ComplianceWebhookToken(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.ComplianceWebhookToken(childComplexity), true case "OrganizationSetting.createdAt": - if e.complexity.OrganizationSetting.CreatedAt == nil { + if e.ComplexityRoot.OrganizationSetting.CreatedAt == nil { break } - return e.complexity.OrganizationSetting.CreatedAt(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.CreatedAt(childComplexity), true case "OrganizationSetting.createdBy": - if e.complexity.OrganizationSetting.CreatedBy == nil { + if e.ComplexityRoot.OrganizationSetting.CreatedBy == nil { break } - return e.complexity.OrganizationSetting.CreatedBy(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.CreatedBy(childComplexity), true case "OrganizationSetting.domains": - if e.complexity.OrganizationSetting.Domains == nil { + if e.ComplexityRoot.OrganizationSetting.Domains == nil { break } - return e.complexity.OrganizationSetting.Domains(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.Domains(childComplexity), true case "OrganizationSetting.files": - if e.complexity.OrganizationSetting.Files == nil { + if e.ComplexityRoot.OrganizationSetting.Files == nil { break } @@ -32621,311 +32604,311 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.OrganizationSetting.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.OrganizationSetting.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "OrganizationSetting.geoLocation": - if e.complexity.OrganizationSetting.GeoLocation == nil { + if e.ComplexityRoot.OrganizationSetting.GeoLocation == nil { break } - return e.complexity.OrganizationSetting.GeoLocation(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.GeoLocation(childComplexity), true case "OrganizationSetting.id": - if e.complexity.OrganizationSetting.ID == nil { + if e.ComplexityRoot.OrganizationSetting.ID == nil { break } - return e.complexity.OrganizationSetting.ID(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.ID(childComplexity), true case "OrganizationSetting.identityProvider": - if e.complexity.OrganizationSetting.IdentityProvider == nil { + if e.ComplexityRoot.OrganizationSetting.IdentityProvider == nil { break } - return e.complexity.OrganizationSetting.IdentityProvider(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.IdentityProvider(childComplexity), true case "OrganizationSetting.identityProviderAuthTested": - if e.complexity.OrganizationSetting.IdentityProviderAuthTested == nil { + if e.ComplexityRoot.OrganizationSetting.IdentityProviderAuthTested == nil { break } - return e.complexity.OrganizationSetting.IdentityProviderAuthTested(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.IdentityProviderAuthTested(childComplexity), true case "OrganizationSetting.identityProviderClientID": - if e.complexity.OrganizationSetting.IdentityProviderClientID == nil { + if e.ComplexityRoot.OrganizationSetting.IdentityProviderClientID == nil { break } - return e.complexity.OrganizationSetting.IdentityProviderClientID(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.IdentityProviderClientID(childComplexity), true case "OrganizationSetting.identityProviderClientSecret": - if e.complexity.OrganizationSetting.IdentityProviderClientSecret == nil { + if e.ComplexityRoot.OrganizationSetting.IdentityProviderClientSecret == nil { break } - return e.complexity.OrganizationSetting.IdentityProviderClientSecret(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.IdentityProviderClientSecret(childComplexity), true case "OrganizationSetting.identityProviderEntityID": - if e.complexity.OrganizationSetting.IdentityProviderEntityID == nil { + if e.ComplexityRoot.OrganizationSetting.IdentityProviderEntityID == nil { break } - return e.complexity.OrganizationSetting.IdentityProviderEntityID(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.IdentityProviderEntityID(childComplexity), true case "OrganizationSetting.identityProviderLoginEnforced": - if e.complexity.OrganizationSetting.IdentityProviderLoginEnforced == nil { + if e.ComplexityRoot.OrganizationSetting.IdentityProviderLoginEnforced == nil { break } - return e.complexity.OrganizationSetting.IdentityProviderLoginEnforced(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.IdentityProviderLoginEnforced(childComplexity), true case "OrganizationSetting.identityProviderMetadataEndpoint": - if e.complexity.OrganizationSetting.IdentityProviderMetadataEndpoint == nil { + if e.ComplexityRoot.OrganizationSetting.IdentityProviderMetadataEndpoint == nil { break } - return e.complexity.OrganizationSetting.IdentityProviderMetadataEndpoint(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.IdentityProviderMetadataEndpoint(childComplexity), true case "OrganizationSetting.multifactorAuthEnforced": - if e.complexity.OrganizationSetting.MultifactorAuthEnforced == nil { + if e.ComplexityRoot.OrganizationSetting.MultifactorAuthEnforced == nil { break } - return e.complexity.OrganizationSetting.MultifactorAuthEnforced(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.MultifactorAuthEnforced(childComplexity), true case "OrganizationSetting.oidcDiscoveryEndpoint": - if e.complexity.OrganizationSetting.OidcDiscoveryEndpoint == nil { + if e.ComplexityRoot.OrganizationSetting.OidcDiscoveryEndpoint == nil { break } - return e.complexity.OrganizationSetting.OidcDiscoveryEndpoint(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.OidcDiscoveryEndpoint(childComplexity), true case "OrganizationSetting.organization": - if e.complexity.OrganizationSetting.Organization == nil { + if e.ComplexityRoot.OrganizationSetting.Organization == nil { break } - return e.complexity.OrganizationSetting.Organization(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.Organization(childComplexity), true case "OrganizationSetting.organizationID": - if e.complexity.OrganizationSetting.OrganizationID == nil { + if e.ComplexityRoot.OrganizationSetting.OrganizationID == nil { break } - return e.complexity.OrganizationSetting.OrganizationID(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.OrganizationID(childComplexity), true case "OrganizationSetting.paymentMethodAdded": - if e.complexity.OrganizationSetting.PaymentMethodAdded == nil { + if e.ComplexityRoot.OrganizationSetting.PaymentMethodAdded == nil { break } - return e.complexity.OrganizationSetting.PaymentMethodAdded(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.PaymentMethodAdded(childComplexity), true case "OrganizationSetting.samlCert": - if e.complexity.OrganizationSetting.SamlCert == nil { + if e.ComplexityRoot.OrganizationSetting.SamlCert == nil { break } - return e.complexity.OrganizationSetting.SamlCert(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.SamlCert(childComplexity), true case "OrganizationSetting.samlIssuer": - if e.complexity.OrganizationSetting.SamlIssuer == nil { + if e.ComplexityRoot.OrganizationSetting.SamlIssuer == nil { break } - return e.complexity.OrganizationSetting.SamlIssuer(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.SamlIssuer(childComplexity), true case "OrganizationSetting.samlSigninURL": - if e.complexity.OrganizationSetting.SamlSigninURL == nil { + if e.ComplexityRoot.OrganizationSetting.SamlSigninURL == nil { break } - return e.complexity.OrganizationSetting.SamlSigninURL(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.SamlSigninURL(childComplexity), true case "OrganizationSetting.tags": - if e.complexity.OrganizationSetting.Tags == nil { + if e.ComplexityRoot.OrganizationSetting.Tags == nil { break } - return e.complexity.OrganizationSetting.Tags(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.Tags(childComplexity), true case "OrganizationSetting.taxIdentifier": - if e.complexity.OrganizationSetting.TaxIdentifier == nil { + if e.ComplexityRoot.OrganizationSetting.TaxIdentifier == nil { break } - return e.complexity.OrganizationSetting.TaxIdentifier(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.TaxIdentifier(childComplexity), true case "OrganizationSetting.updatedAt": - if e.complexity.OrganizationSetting.UpdatedAt == nil { + if e.ComplexityRoot.OrganizationSetting.UpdatedAt == nil { break } - return e.complexity.OrganizationSetting.UpdatedAt(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.UpdatedAt(childComplexity), true case "OrganizationSetting.updatedBy": - if e.complexity.OrganizationSetting.UpdatedBy == nil { + if e.ComplexityRoot.OrganizationSetting.UpdatedBy == nil { break } - return e.complexity.OrganizationSetting.UpdatedBy(childComplexity), true + return e.ComplexityRoot.OrganizationSetting.UpdatedBy(childComplexity), true case "OrganizationSettingBulkCreatePayload.organizationSettings": - if e.complexity.OrganizationSettingBulkCreatePayload.OrganizationSettings == nil { + if e.ComplexityRoot.OrganizationSettingBulkCreatePayload.OrganizationSettings == nil { break } - return e.complexity.OrganizationSettingBulkCreatePayload.OrganizationSettings(childComplexity), true + return e.ComplexityRoot.OrganizationSettingBulkCreatePayload.OrganizationSettings(childComplexity), true case "OrganizationSettingBulkDeletePayload.deletedIDs": - if e.complexity.OrganizationSettingBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.OrganizationSettingBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.OrganizationSettingBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.OrganizationSettingBulkDeletePayload.DeletedIDs(childComplexity), true case "OrganizationSettingBulkUpdatePayload.organizationSettings": - if e.complexity.OrganizationSettingBulkUpdatePayload.OrganizationSettings == nil { + if e.ComplexityRoot.OrganizationSettingBulkUpdatePayload.OrganizationSettings == nil { break } - return e.complexity.OrganizationSettingBulkUpdatePayload.OrganizationSettings(childComplexity), true + return e.ComplexityRoot.OrganizationSettingBulkUpdatePayload.OrganizationSettings(childComplexity), true case "OrganizationSettingBulkUpdatePayload.updatedIDs": - if e.complexity.OrganizationSettingBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.OrganizationSettingBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.OrganizationSettingBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.OrganizationSettingBulkUpdatePayload.UpdatedIDs(childComplexity), true case "OrganizationSettingConnection.edges": - if e.complexity.OrganizationSettingConnection.Edges == nil { + if e.ComplexityRoot.OrganizationSettingConnection.Edges == nil { break } - return e.complexity.OrganizationSettingConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrganizationSettingConnection.Edges(childComplexity), true case "OrganizationSettingConnection.pageInfo": - if e.complexity.OrganizationSettingConnection.PageInfo == nil { + if e.ComplexityRoot.OrganizationSettingConnection.PageInfo == nil { break } - return e.complexity.OrganizationSettingConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrganizationSettingConnection.PageInfo(childComplexity), true case "OrganizationSettingConnection.totalCount": - if e.complexity.OrganizationSettingConnection.TotalCount == nil { + if e.ComplexityRoot.OrganizationSettingConnection.TotalCount == nil { break } - return e.complexity.OrganizationSettingConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrganizationSettingConnection.TotalCount(childComplexity), true case "OrganizationSettingCreatePayload.organizationSetting": - if e.complexity.OrganizationSettingCreatePayload.OrganizationSetting == nil { + if e.ComplexityRoot.OrganizationSettingCreatePayload.OrganizationSetting == nil { break } - return e.complexity.OrganizationSettingCreatePayload.OrganizationSetting(childComplexity), true + return e.ComplexityRoot.OrganizationSettingCreatePayload.OrganizationSetting(childComplexity), true case "OrganizationSettingDeletePayload.deletedID": - if e.complexity.OrganizationSettingDeletePayload.DeletedID == nil { + if e.ComplexityRoot.OrganizationSettingDeletePayload.DeletedID == nil { break } - return e.complexity.OrganizationSettingDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.OrganizationSettingDeletePayload.DeletedID(childComplexity), true case "OrganizationSettingEdge.cursor": - if e.complexity.OrganizationSettingEdge.Cursor == nil { + if e.ComplexityRoot.OrganizationSettingEdge.Cursor == nil { break } - return e.complexity.OrganizationSettingEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrganizationSettingEdge.Cursor(childComplexity), true case "OrganizationSettingEdge.node": - if e.complexity.OrganizationSettingEdge.Node == nil { + if e.ComplexityRoot.OrganizationSettingEdge.Node == nil { break } - return e.complexity.OrganizationSettingEdge.Node(childComplexity), true + return e.ComplexityRoot.OrganizationSettingEdge.Node(childComplexity), true case "OrganizationSettingUpdatePayload.organizationSetting": - if e.complexity.OrganizationSettingUpdatePayload.OrganizationSetting == nil { + if e.ComplexityRoot.OrganizationSettingUpdatePayload.OrganizationSetting == nil { break } - return e.complexity.OrganizationSettingUpdatePayload.OrganizationSetting(childComplexity), true + return e.ComplexityRoot.OrganizationSettingUpdatePayload.OrganizationSetting(childComplexity), true case "OrganizationTransferOwnershipPayload.invitationSent": - if e.complexity.OrganizationTransferOwnershipPayload.InvitationSent == nil { + if e.ComplexityRoot.OrganizationTransferOwnershipPayload.InvitationSent == nil { break } - return e.complexity.OrganizationTransferOwnershipPayload.InvitationSent(childComplexity), true + return e.ComplexityRoot.OrganizationTransferOwnershipPayload.InvitationSent(childComplexity), true case "OrganizationTransferOwnershipPayload.organization": - if e.complexity.OrganizationTransferOwnershipPayload.Organization == nil { + if e.ComplexityRoot.OrganizationTransferOwnershipPayload.Organization == nil { break } - return e.complexity.OrganizationTransferOwnershipPayload.Organization(childComplexity), true + return e.ComplexityRoot.OrganizationTransferOwnershipPayload.Organization(childComplexity), true case "OrganizationUpdatePayload.organization": - if e.complexity.OrganizationUpdatePayload.Organization == nil { + if e.ComplexityRoot.OrganizationUpdatePayload.Organization == nil { break } - return e.complexity.OrganizationUpdatePayload.Organization(childComplexity), true + return e.ComplexityRoot.OrganizationUpdatePayload.Organization(childComplexity), true case "PageInfo.endCursor": - if e.complexity.PageInfo.EndCursor == nil { + if e.ComplexityRoot.PageInfo.EndCursor == nil { break } - return e.complexity.PageInfo.EndCursor(childComplexity), true + return e.ComplexityRoot.PageInfo.EndCursor(childComplexity), true case "PageInfo.hasNextPage": - if e.complexity.PageInfo.HasNextPage == nil { + if e.ComplexityRoot.PageInfo.HasNextPage == nil { break } - return e.complexity.PageInfo.HasNextPage(childComplexity), true + return e.ComplexityRoot.PageInfo.HasNextPage(childComplexity), true case "PageInfo.hasPreviousPage": - if e.complexity.PageInfo.HasPreviousPage == nil { + if e.ComplexityRoot.PageInfo.HasPreviousPage == nil { break } - return e.complexity.PageInfo.HasPreviousPage(childComplexity), true + return e.ComplexityRoot.PageInfo.HasPreviousPage(childComplexity), true case "PageInfo.startCursor": - if e.complexity.PageInfo.StartCursor == nil { + if e.ComplexityRoot.PageInfo.StartCursor == nil { break } - return e.complexity.PageInfo.StartCursor(childComplexity), true + return e.ComplexityRoot.PageInfo.StartCursor(childComplexity), true case "PersonalAccessToken.createdAt": - if e.complexity.PersonalAccessToken.CreatedAt == nil { + if e.ComplexityRoot.PersonalAccessToken.CreatedAt == nil { break } - return e.complexity.PersonalAccessToken.CreatedAt(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.CreatedAt(childComplexity), true case "PersonalAccessToken.createdBy": - if e.complexity.PersonalAccessToken.CreatedBy == nil { + if e.ComplexityRoot.PersonalAccessToken.CreatedBy == nil { break } - return e.complexity.PersonalAccessToken.CreatedBy(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.CreatedBy(childComplexity), true case "PersonalAccessToken.description": - if e.complexity.PersonalAccessToken.Description == nil { + if e.ComplexityRoot.PersonalAccessToken.Description == nil { break } - return e.complexity.PersonalAccessToken.Description(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.Description(childComplexity), true case "PersonalAccessToken.events": - if e.complexity.PersonalAccessToken.Events == nil { + if e.ComplexityRoot.PersonalAccessToken.Events == nil { break } @@ -32934,45 +32917,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.PersonalAccessToken.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.PersonalAccessToken.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "PersonalAccessToken.expiresAt": - if e.complexity.PersonalAccessToken.ExpiresAt == nil { + if e.ComplexityRoot.PersonalAccessToken.ExpiresAt == nil { break } - return e.complexity.PersonalAccessToken.ExpiresAt(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.ExpiresAt(childComplexity), true case "PersonalAccessToken.id": - if e.complexity.PersonalAccessToken.ID == nil { + if e.ComplexityRoot.PersonalAccessToken.ID == nil { break } - return e.complexity.PersonalAccessToken.ID(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.ID(childComplexity), true case "PersonalAccessToken.isActive": - if e.complexity.PersonalAccessToken.IsActive == nil { + if e.ComplexityRoot.PersonalAccessToken.IsActive == nil { break } - return e.complexity.PersonalAccessToken.IsActive(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.IsActive(childComplexity), true case "PersonalAccessToken.lastUsedAt": - if e.complexity.PersonalAccessToken.LastUsedAt == nil { + if e.ComplexityRoot.PersonalAccessToken.LastUsedAt == nil { break } - return e.complexity.PersonalAccessToken.LastUsedAt(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.LastUsedAt(childComplexity), true case "PersonalAccessToken.name": - if e.complexity.PersonalAccessToken.Name == nil { + if e.ComplexityRoot.PersonalAccessToken.Name == nil { break } - return e.complexity.PersonalAccessToken.Name(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.Name(childComplexity), true case "PersonalAccessToken.organizations": - if e.complexity.PersonalAccessToken.Organizations == nil { + if e.ComplexityRoot.PersonalAccessToken.Organizations == nil { break } @@ -32981,171 +32964,171 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.PersonalAccessToken.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true + return e.ComplexityRoot.PersonalAccessToken.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true case "PersonalAccessToken.owner": - if e.complexity.PersonalAccessToken.Owner == nil { + if e.ComplexityRoot.PersonalAccessToken.Owner == nil { break } - return e.complexity.PersonalAccessToken.Owner(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.Owner(childComplexity), true case "PersonalAccessToken.revokedAt": - if e.complexity.PersonalAccessToken.RevokedAt == nil { + if e.ComplexityRoot.PersonalAccessToken.RevokedAt == nil { break } - return e.complexity.PersonalAccessToken.RevokedAt(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.RevokedAt(childComplexity), true case "PersonalAccessToken.revokedBy": - if e.complexity.PersonalAccessToken.RevokedBy == nil { + if e.ComplexityRoot.PersonalAccessToken.RevokedBy == nil { break } - return e.complexity.PersonalAccessToken.RevokedBy(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.RevokedBy(childComplexity), true case "PersonalAccessToken.revokedReason": - if e.complexity.PersonalAccessToken.RevokedReason == nil { + if e.ComplexityRoot.PersonalAccessToken.RevokedReason == nil { break } - return e.complexity.PersonalAccessToken.RevokedReason(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.RevokedReason(childComplexity), true case "PersonalAccessToken.ssoAuthorizations": - if e.complexity.PersonalAccessToken.SSOAuthorizations == nil { + if e.ComplexityRoot.PersonalAccessToken.SSOAuthorizations == nil { break } - return e.complexity.PersonalAccessToken.SSOAuthorizations(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.SSOAuthorizations(childComplexity), true case "PersonalAccessToken.scopes": - if e.complexity.PersonalAccessToken.Scopes == nil { + if e.ComplexityRoot.PersonalAccessToken.Scopes == nil { break } - return e.complexity.PersonalAccessToken.Scopes(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.Scopes(childComplexity), true case "PersonalAccessToken.tags": - if e.complexity.PersonalAccessToken.Tags == nil { + if e.ComplexityRoot.PersonalAccessToken.Tags == nil { break } - return e.complexity.PersonalAccessToken.Tags(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.Tags(childComplexity), true case "PersonalAccessToken.token": - if e.complexity.PersonalAccessToken.Token == nil { + if e.ComplexityRoot.PersonalAccessToken.Token == nil { break } - return e.complexity.PersonalAccessToken.Token(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.Token(childComplexity), true case "PersonalAccessToken.updatedAt": - if e.complexity.PersonalAccessToken.UpdatedAt == nil { + if e.ComplexityRoot.PersonalAccessToken.UpdatedAt == nil { break } - return e.complexity.PersonalAccessToken.UpdatedAt(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.UpdatedAt(childComplexity), true case "PersonalAccessToken.updatedBy": - if e.complexity.PersonalAccessToken.UpdatedBy == nil { + if e.ComplexityRoot.PersonalAccessToken.UpdatedBy == nil { break } - return e.complexity.PersonalAccessToken.UpdatedBy(childComplexity), true + return e.ComplexityRoot.PersonalAccessToken.UpdatedBy(childComplexity), true case "PersonalAccessTokenBulkCreatePayload.personalAccessTokens": - if e.complexity.PersonalAccessTokenBulkCreatePayload.PersonalAccessTokens == nil { + if e.ComplexityRoot.PersonalAccessTokenBulkCreatePayload.PersonalAccessTokens == nil { break } - return e.complexity.PersonalAccessTokenBulkCreatePayload.PersonalAccessTokens(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenBulkCreatePayload.PersonalAccessTokens(childComplexity), true case "PersonalAccessTokenConnection.edges": - if e.complexity.PersonalAccessTokenConnection.Edges == nil { + if e.ComplexityRoot.PersonalAccessTokenConnection.Edges == nil { break } - return e.complexity.PersonalAccessTokenConnection.Edges(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenConnection.Edges(childComplexity), true case "PersonalAccessTokenConnection.pageInfo": - if e.complexity.PersonalAccessTokenConnection.PageInfo == nil { + if e.ComplexityRoot.PersonalAccessTokenConnection.PageInfo == nil { break } - return e.complexity.PersonalAccessTokenConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenConnection.PageInfo(childComplexity), true case "PersonalAccessTokenConnection.totalCount": - if e.complexity.PersonalAccessTokenConnection.TotalCount == nil { + if e.ComplexityRoot.PersonalAccessTokenConnection.TotalCount == nil { break } - return e.complexity.PersonalAccessTokenConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenConnection.TotalCount(childComplexity), true case "PersonalAccessTokenCreatePayload.personalAccessToken": - if e.complexity.PersonalAccessTokenCreatePayload.PersonalAccessToken == nil { + if e.ComplexityRoot.PersonalAccessTokenCreatePayload.PersonalAccessToken == nil { break } - return e.complexity.PersonalAccessTokenCreatePayload.PersonalAccessToken(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenCreatePayload.PersonalAccessToken(childComplexity), true case "PersonalAccessTokenDeletePayload.deletedID": - if e.complexity.PersonalAccessTokenDeletePayload.DeletedID == nil { + if e.ComplexityRoot.PersonalAccessTokenDeletePayload.DeletedID == nil { break } - return e.complexity.PersonalAccessTokenDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenDeletePayload.DeletedID(childComplexity), true case "PersonalAccessTokenEdge.cursor": - if e.complexity.PersonalAccessTokenEdge.Cursor == nil { + if e.ComplexityRoot.PersonalAccessTokenEdge.Cursor == nil { break } - return e.complexity.PersonalAccessTokenEdge.Cursor(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenEdge.Cursor(childComplexity), true case "PersonalAccessTokenEdge.node": - if e.complexity.PersonalAccessTokenEdge.Node == nil { + if e.ComplexityRoot.PersonalAccessTokenEdge.Node == nil { break } - return e.complexity.PersonalAccessTokenEdge.Node(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenEdge.Node(childComplexity), true case "PersonalAccessTokenUpdatePayload.personalAccessToken": - if e.complexity.PersonalAccessTokenUpdatePayload.PersonalAccessToken == nil { + if e.ComplexityRoot.PersonalAccessTokenUpdatePayload.PersonalAccessToken == nil { break } - return e.complexity.PersonalAccessTokenUpdatePayload.PersonalAccessToken(childComplexity), true + return e.ComplexityRoot.PersonalAccessTokenUpdatePayload.PersonalAccessToken(childComplexity), true case "Platform.accessModel": - if e.complexity.Platform.AccessModel == nil { + if e.ComplexityRoot.Platform.AccessModel == nil { break } - return e.complexity.Platform.AccessModel(childComplexity), true + return e.ComplexityRoot.Platform.AccessModel(childComplexity), true case "Platform.accessModelID": - if e.complexity.Platform.AccessModelID == nil { + if e.ComplexityRoot.Platform.AccessModelID == nil { break } - return e.complexity.Platform.AccessModelID(childComplexity), true + return e.ComplexityRoot.Platform.AccessModelID(childComplexity), true case "Platform.accessModelName": - if e.complexity.Platform.AccessModelName == nil { + if e.ComplexityRoot.Platform.AccessModelName == nil { break } - return e.complexity.Platform.AccessModelName(childComplexity), true + return e.ComplexityRoot.Platform.AccessModelName(childComplexity), true case "Platform.activeWorkflowInstances": - if e.complexity.Platform.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.Platform.ActiveWorkflowInstances == nil { break } - return e.complexity.Platform.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.Platform.ActiveWorkflowInstances(childComplexity), true case "Platform.applicableFrameworks": - if e.complexity.Platform.ApplicableFrameworks == nil { + if e.ComplexityRoot.Platform.ApplicableFrameworks == nil { break } @@ -33154,10 +33137,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.ApplicableFrameworks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.StandardOrder), args["where"].(*generated.StandardWhereInput)), true + return e.ComplexityRoot.Platform.ApplicableFrameworks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.StandardOrder), args["where"].(*generated.StandardWhereInput)), true case "Platform.assessments": - if e.complexity.Platform.Assessments == nil { + if e.ComplexityRoot.Platform.Assessments == nil { break } @@ -33166,10 +33149,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true + return e.ComplexityRoot.Platform.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true case "Platform.assets": - if e.complexity.Platform.Assets == nil { + if e.ComplexityRoot.Platform.Assets == nil { break } @@ -33178,10 +33161,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Platform.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Platform.blockedGroups": - if e.complexity.Platform.BlockedGroups == nil { + if e.ComplexityRoot.Platform.BlockedGroups == nil { break } @@ -33190,59 +33173,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Platform.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Platform.businessOwner": - if e.complexity.Platform.BusinessOwner == nil { + if e.ComplexityRoot.Platform.BusinessOwner == nil { break } - return e.complexity.Platform.BusinessOwner(childComplexity), true + return e.ComplexityRoot.Platform.BusinessOwner(childComplexity), true case "Platform.businessOwnerGroup": - if e.complexity.Platform.BusinessOwnerGroup == nil { + if e.ComplexityRoot.Platform.BusinessOwnerGroup == nil { break } - return e.complexity.Platform.BusinessOwnerGroup(childComplexity), true + return e.ComplexityRoot.Platform.BusinessOwnerGroup(childComplexity), true case "Platform.businessOwnerGroupID": - if e.complexity.Platform.BusinessOwnerGroupID == nil { + if e.ComplexityRoot.Platform.BusinessOwnerGroupID == nil { break } - return e.complexity.Platform.BusinessOwnerGroupID(childComplexity), true + return e.ComplexityRoot.Platform.BusinessOwnerGroupID(childComplexity), true case "Platform.businessOwnerUser": - if e.complexity.Platform.BusinessOwnerUser == nil { + if e.ComplexityRoot.Platform.BusinessOwnerUser == nil { break } - return e.complexity.Platform.BusinessOwnerUser(childComplexity), true + return e.ComplexityRoot.Platform.BusinessOwnerUser(childComplexity), true case "Platform.businessOwnerUserID": - if e.complexity.Platform.BusinessOwnerUserID == nil { + if e.ComplexityRoot.Platform.BusinessOwnerUserID == nil { break } - return e.complexity.Platform.BusinessOwnerUserID(childComplexity), true + return e.ComplexityRoot.Platform.BusinessOwnerUserID(childComplexity), true case "Platform.businessPurpose": - if e.complexity.Platform.BusinessPurpose == nil { + if e.ComplexityRoot.Platform.BusinessPurpose == nil { break } - return e.complexity.Platform.BusinessPurpose(childComplexity), true + return e.ComplexityRoot.Platform.BusinessPurpose(childComplexity), true case "Platform.containsPii": - if e.complexity.Platform.ContainsPii == nil { + if e.ComplexityRoot.Platform.ContainsPii == nil { break } - return e.complexity.Platform.ContainsPii(childComplexity), true + return e.ComplexityRoot.Platform.ContainsPii(childComplexity), true case "Platform.controls": - if e.complexity.Platform.Controls == nil { + if e.ComplexityRoot.Platform.Controls == nil { break } @@ -33251,66 +33234,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Platform.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Platform.costCenter": - if e.complexity.Platform.CostCenter == nil { + if e.ComplexityRoot.Platform.CostCenter == nil { break } - return e.complexity.Platform.CostCenter(childComplexity), true + return e.ComplexityRoot.Platform.CostCenter(childComplexity), true case "Platform.createdAt": - if e.complexity.Platform.CreatedAt == nil { + if e.ComplexityRoot.Platform.CreatedAt == nil { break } - return e.complexity.Platform.CreatedAt(childComplexity), true + return e.ComplexityRoot.Platform.CreatedAt(childComplexity), true case "Platform.createdBy": - if e.complexity.Platform.CreatedBy == nil { + if e.ComplexityRoot.Platform.CreatedBy == nil { break } - return e.complexity.Platform.CreatedBy(childComplexity), true + return e.ComplexityRoot.Platform.CreatedBy(childComplexity), true case "Platform.criticality": - if e.complexity.Platform.Criticality == nil { + if e.ComplexityRoot.Platform.Criticality == nil { break } - return e.complexity.Platform.Criticality(childComplexity), true + return e.ComplexityRoot.Platform.Criticality(childComplexity), true case "Platform.criticalityID": - if e.complexity.Platform.CriticalityID == nil { + if e.ComplexityRoot.Platform.CriticalityID == nil { break } - return e.complexity.Platform.CriticalityID(childComplexity), true + return e.ComplexityRoot.Platform.CriticalityID(childComplexity), true case "Platform.criticalityName": - if e.complexity.Platform.CriticalityName == nil { + if e.ComplexityRoot.Platform.CriticalityName == nil { break } - return e.complexity.Platform.CriticalityName(childComplexity), true + return e.ComplexityRoot.Platform.CriticalityName(childComplexity), true case "Platform.dataFlowSummary": - if e.complexity.Platform.DataFlowSummary == nil { + if e.ComplexityRoot.Platform.DataFlowSummary == nil { break } - return e.complexity.Platform.DataFlowSummary(childComplexity), true + return e.ComplexityRoot.Platform.DataFlowSummary(childComplexity), true case "Platform.description": - if e.complexity.Platform.Description == nil { + if e.ComplexityRoot.Platform.Description == nil { break } - return e.complexity.Platform.Description(childComplexity), true + return e.ComplexityRoot.Platform.Description(childComplexity), true case "Platform.directoryAccounts": - if e.complexity.Platform.DirectoryAccounts == nil { + if e.ComplexityRoot.Platform.DirectoryAccounts == nil { break } @@ -33319,10 +33302,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.Platform.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "Platform.directoryGroups": - if e.complexity.Platform.DirectoryGroups == nil { + if e.ComplexityRoot.Platform.DirectoryGroups == nil { break } @@ -33331,10 +33314,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true + return e.ComplexityRoot.Platform.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true case "Platform.directoryMemberships": - if e.complexity.Platform.DirectoryMemberships == nil { + if e.ComplexityRoot.Platform.DirectoryMemberships == nil { break } @@ -33343,10 +33326,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true + return e.ComplexityRoot.Platform.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true case "Platform.directorySyncRuns": - if e.complexity.Platform.DirectorySyncRuns == nil { + if e.ComplexityRoot.Platform.DirectorySyncRuns == nil { break } @@ -33355,17 +33338,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true + return e.ComplexityRoot.Platform.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true case "Platform.displayID": - if e.complexity.Platform.DisplayID == nil { + if e.ComplexityRoot.Platform.DisplayID == nil { break } - return e.complexity.Platform.DisplayID(childComplexity), true + return e.ComplexityRoot.Platform.DisplayID(childComplexity), true case "Platform.editors": - if e.complexity.Platform.Editors == nil { + if e.ComplexityRoot.Platform.Editors == nil { break } @@ -33374,31 +33357,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Platform.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Platform.encryptionStatus": - if e.complexity.Platform.EncryptionStatus == nil { + if e.ComplexityRoot.Platform.EncryptionStatus == nil { break } - return e.complexity.Platform.EncryptionStatus(childComplexity), true + return e.ComplexityRoot.Platform.EncryptionStatus(childComplexity), true case "Platform.encryptionStatusID": - if e.complexity.Platform.EncryptionStatusID == nil { + if e.ComplexityRoot.Platform.EncryptionStatusID == nil { break } - return e.complexity.Platform.EncryptionStatusID(childComplexity), true + return e.ComplexityRoot.Platform.EncryptionStatusID(childComplexity), true case "Platform.encryptionStatusName": - if e.complexity.Platform.EncryptionStatusName == nil { + if e.ComplexityRoot.Platform.EncryptionStatusName == nil { break } - return e.complexity.Platform.EncryptionStatusName(childComplexity), true + return e.ComplexityRoot.Platform.EncryptionStatusName(childComplexity), true case "Platform.entities": - if e.complexity.Platform.Entities == nil { + if e.ComplexityRoot.Platform.Entities == nil { break } @@ -33407,38 +33390,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Platform.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Platform.environment": - if e.complexity.Platform.Environment == nil { + if e.ComplexityRoot.Platform.Environment == nil { break } - return e.complexity.Platform.Environment(childComplexity), true + return e.ComplexityRoot.Platform.Environment(childComplexity), true case "Platform.environmentID": - if e.complexity.Platform.EnvironmentID == nil { + if e.ComplexityRoot.Platform.EnvironmentID == nil { break } - return e.complexity.Platform.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Platform.EnvironmentID(childComplexity), true case "Platform.environmentName": - if e.complexity.Platform.EnvironmentName == nil { + if e.ComplexityRoot.Platform.EnvironmentName == nil { break } - return e.complexity.Platform.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Platform.EnvironmentName(childComplexity), true case "Platform.estimatedMonthlyCost": - if e.complexity.Platform.EstimatedMonthlyCost == nil { + if e.ComplexityRoot.Platform.EstimatedMonthlyCost == nil { break } - return e.complexity.Platform.EstimatedMonthlyCost(childComplexity), true + return e.ComplexityRoot.Platform.EstimatedMonthlyCost(childComplexity), true case "Platform.evidence": - if e.complexity.Platform.Evidence == nil { + if e.ComplexityRoot.Platform.Evidence == nil { break } @@ -33447,17 +33430,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Platform.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Platform.externalReferenceID": - if e.complexity.Platform.ExternalReferenceID == nil { + if e.ComplexityRoot.Platform.ExternalReferenceID == nil { break } - return e.complexity.Platform.ExternalReferenceID(childComplexity), true + return e.ComplexityRoot.Platform.ExternalReferenceID(childComplexity), true case "Platform.files": - if e.complexity.Platform.Files == nil { + if e.ComplexityRoot.Platform.Files == nil { break } @@ -33466,10 +33449,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Platform.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Platform.generatedScans": - if e.complexity.Platform.GeneratedScans == nil { + if e.ComplexityRoot.Platform.GeneratedScans == nil { break } @@ -33478,31 +33461,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.GeneratedScans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Platform.GeneratedScans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Platform.hasPendingWorkflow": - if e.complexity.Platform.HasPendingWorkflow == nil { + if e.ComplexityRoot.Platform.HasPendingWorkflow == nil { break } - return e.complexity.Platform.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.Platform.HasPendingWorkflow(childComplexity), true case "Platform.hasWorkflowHistory": - if e.complexity.Platform.HasWorkflowHistory == nil { + if e.ComplexityRoot.Platform.HasWorkflowHistory == nil { break } - return e.complexity.Platform.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.Platform.HasWorkflowHistory(childComplexity), true case "Platform.id": - if e.complexity.Platform.ID == nil { + if e.ComplexityRoot.Platform.ID == nil { break } - return e.complexity.Platform.ID(childComplexity), true + return e.ComplexityRoot.Platform.ID(childComplexity), true case "Platform.identityHolders": - if e.complexity.Platform.IdentityHolders == nil { + if e.ComplexityRoot.Platform.IdentityHolders == nil { break } @@ -33511,10 +33494,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Platform.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Platform.integrations": - if e.complexity.Platform.Integrations == nil { + if e.ComplexityRoot.Platform.Integrations == nil { break } @@ -33523,59 +33506,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Platform.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Platform.internalOwner": - if e.complexity.Platform.InternalOwner == nil { + if e.ComplexityRoot.Platform.InternalOwner == nil { break } - return e.complexity.Platform.InternalOwner(childComplexity), true + return e.ComplexityRoot.Platform.InternalOwner(childComplexity), true case "Platform.internalOwnerGroup": - if e.complexity.Platform.InternalOwnerGroup == nil { + if e.ComplexityRoot.Platform.InternalOwnerGroup == nil { break } - return e.complexity.Platform.InternalOwnerGroup(childComplexity), true + return e.ComplexityRoot.Platform.InternalOwnerGroup(childComplexity), true case "Platform.internalOwnerGroupID": - if e.complexity.Platform.InternalOwnerGroupID == nil { + if e.ComplexityRoot.Platform.InternalOwnerGroupID == nil { break } - return e.complexity.Platform.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.Platform.InternalOwnerGroupID(childComplexity), true case "Platform.internalOwnerUser": - if e.complexity.Platform.InternalOwnerUser == nil { + if e.ComplexityRoot.Platform.InternalOwnerUser == nil { break } - return e.complexity.Platform.InternalOwnerUser(childComplexity), true + return e.ComplexityRoot.Platform.InternalOwnerUser(childComplexity), true case "Platform.internalOwnerUserID": - if e.complexity.Platform.InternalOwnerUserID == nil { + if e.ComplexityRoot.Platform.InternalOwnerUserID == nil { break } - return e.complexity.Platform.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.Platform.InternalOwnerUserID(childComplexity), true case "Platform.metadata": - if e.complexity.Platform.Metadata == nil { + if e.ComplexityRoot.Platform.Metadata == nil { break } - return e.complexity.Platform.Metadata(childComplexity), true + return e.ComplexityRoot.Platform.Metadata(childComplexity), true case "Platform.name": - if e.complexity.Platform.Name == nil { + if e.ComplexityRoot.Platform.Name == nil { break } - return e.complexity.Platform.Name(childComplexity), true + return e.ComplexityRoot.Platform.Name(childComplexity), true case "Platform.outOfScopeAssets": - if e.complexity.Platform.OutOfScopeAssets == nil { + if e.ComplexityRoot.Platform.OutOfScopeAssets == nil { break } @@ -33584,10 +33567,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.OutOfScopeAssets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Platform.OutOfScopeAssets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Platform.outOfScopeVendors": - if e.complexity.Platform.OutOfScopeVendors == nil { + if e.ComplexityRoot.Platform.OutOfScopeVendors == nil { break } @@ -33596,101 +33579,101 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.OutOfScopeVendors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Platform.OutOfScopeVendors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Platform.owner": - if e.complexity.Platform.Owner == nil { + if e.ComplexityRoot.Platform.Owner == nil { break } - return e.complexity.Platform.Owner(childComplexity), true + return e.ComplexityRoot.Platform.Owner(childComplexity), true case "Platform.ownerID": - if e.complexity.Platform.OwnerID == nil { + if e.ComplexityRoot.Platform.OwnerID == nil { break } - return e.complexity.Platform.OwnerID(childComplexity), true + return e.ComplexityRoot.Platform.OwnerID(childComplexity), true case "Platform.physicalLocation": - if e.complexity.Platform.PhysicalLocation == nil { + if e.ComplexityRoot.Platform.PhysicalLocation == nil { break } - return e.complexity.Platform.PhysicalLocation(childComplexity), true + return e.ComplexityRoot.Platform.PhysicalLocation(childComplexity), true case "Platform.platformDataClassification": - if e.complexity.Platform.PlatformDataClassification == nil { + if e.ComplexityRoot.Platform.PlatformDataClassification == nil { break } - return e.complexity.Platform.PlatformDataClassification(childComplexity), true + return e.ComplexityRoot.Platform.PlatformDataClassification(childComplexity), true case "Platform.platformDataClassificationID": - if e.complexity.Platform.PlatformDataClassificationID == nil { + if e.ComplexityRoot.Platform.PlatformDataClassificationID == nil { break } - return e.complexity.Platform.PlatformDataClassificationID(childComplexity), true + return e.ComplexityRoot.Platform.PlatformDataClassificationID(childComplexity), true case "Platform.platformDataClassificationName": - if e.complexity.Platform.PlatformDataClassificationName == nil { + if e.ComplexityRoot.Platform.PlatformDataClassificationName == nil { break } - return e.complexity.Platform.PlatformDataClassificationName(childComplexity), true + return e.ComplexityRoot.Platform.PlatformDataClassificationName(childComplexity), true case "Platform.platformKind": - if e.complexity.Platform.PlatformKind == nil { + if e.ComplexityRoot.Platform.PlatformKind == nil { break } - return e.complexity.Platform.PlatformKind(childComplexity), true + return e.ComplexityRoot.Platform.PlatformKind(childComplexity), true case "Platform.platformKindID": - if e.complexity.Platform.PlatformKindID == nil { + if e.ComplexityRoot.Platform.PlatformKindID == nil { break } - return e.complexity.Platform.PlatformKindID(childComplexity), true + return e.ComplexityRoot.Platform.PlatformKindID(childComplexity), true case "Platform.platformKindName": - if e.complexity.Platform.PlatformKindName == nil { + if e.ComplexityRoot.Platform.PlatformKindName == nil { break } - return e.complexity.Platform.PlatformKindName(childComplexity), true + return e.ComplexityRoot.Platform.PlatformKindName(childComplexity), true case "Platform.platformOwner": - if e.complexity.Platform.PlatformOwner == nil { + if e.ComplexityRoot.Platform.PlatformOwner == nil { break } - return e.complexity.Platform.PlatformOwner(childComplexity), true + return e.ComplexityRoot.Platform.PlatformOwner(childComplexity), true case "Platform.platformOwnerID": - if e.complexity.Platform.PlatformOwnerID == nil { + if e.ComplexityRoot.Platform.PlatformOwnerID == nil { break } - return e.complexity.Platform.PlatformOwnerID(childComplexity), true + return e.ComplexityRoot.Platform.PlatformOwnerID(childComplexity), true case "Platform.purchaseDate": - if e.complexity.Platform.PurchaseDate == nil { + if e.ComplexityRoot.Platform.PurchaseDate == nil { break } - return e.complexity.Platform.PurchaseDate(childComplexity), true + return e.ComplexityRoot.Platform.PurchaseDate(childComplexity), true case "Platform.region": - if e.complexity.Platform.Region == nil { + if e.ComplexityRoot.Platform.Region == nil { break } - return e.complexity.Platform.Region(childComplexity), true + return e.ComplexityRoot.Platform.Region(childComplexity), true case "Platform.risks": - if e.complexity.Platform.Risks == nil { + if e.ComplexityRoot.Platform.Risks == nil { break } @@ -33699,10 +33682,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Platform.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Platform.scans": - if e.complexity.Platform.Scans == nil { + if e.ComplexityRoot.Platform.Scans == nil { break } @@ -33711,94 +33694,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Platform.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Platform.scope": - if e.complexity.Platform.Scope == nil { + if e.ComplexityRoot.Platform.Scope == nil { break } - return e.complexity.Platform.Scope(childComplexity), true + return e.ComplexityRoot.Platform.Scope(childComplexity), true case "Platform.scopeID": - if e.complexity.Platform.ScopeID == nil { + if e.ComplexityRoot.Platform.ScopeID == nil { break } - return e.complexity.Platform.ScopeID(childComplexity), true + return e.ComplexityRoot.Platform.ScopeID(childComplexity), true case "Platform.scopeName": - if e.complexity.Platform.ScopeName == nil { + if e.ComplexityRoot.Platform.ScopeName == nil { break } - return e.complexity.Platform.ScopeName(childComplexity), true + return e.ComplexityRoot.Platform.ScopeName(childComplexity), true case "Platform.scopeStatement": - if e.complexity.Platform.ScopeStatement == nil { + if e.ComplexityRoot.Platform.ScopeStatement == nil { break } - return e.complexity.Platform.ScopeStatement(childComplexity), true + return e.ComplexityRoot.Platform.ScopeStatement(childComplexity), true case "Platform.securityOwner": - if e.complexity.Platform.SecurityOwner == nil { + if e.ComplexityRoot.Platform.SecurityOwner == nil { break } - return e.complexity.Platform.SecurityOwner(childComplexity), true + return e.ComplexityRoot.Platform.SecurityOwner(childComplexity), true case "Platform.securityOwnerGroup": - if e.complexity.Platform.SecurityOwnerGroup == nil { + if e.ComplexityRoot.Platform.SecurityOwnerGroup == nil { break } - return e.complexity.Platform.SecurityOwnerGroup(childComplexity), true + return e.ComplexityRoot.Platform.SecurityOwnerGroup(childComplexity), true case "Platform.securityOwnerGroupID": - if e.complexity.Platform.SecurityOwnerGroupID == nil { + if e.ComplexityRoot.Platform.SecurityOwnerGroupID == nil { break } - return e.complexity.Platform.SecurityOwnerGroupID(childComplexity), true + return e.ComplexityRoot.Platform.SecurityOwnerGroupID(childComplexity), true case "Platform.securityOwnerUser": - if e.complexity.Platform.SecurityOwnerUser == nil { + if e.ComplexityRoot.Platform.SecurityOwnerUser == nil { break } - return e.complexity.Platform.SecurityOwnerUser(childComplexity), true + return e.ComplexityRoot.Platform.SecurityOwnerUser(childComplexity), true case "Platform.securityOwnerUserID": - if e.complexity.Platform.SecurityOwnerUserID == nil { + if e.ComplexityRoot.Platform.SecurityOwnerUserID == nil { break } - return e.complexity.Platform.SecurityOwnerUserID(childComplexity), true + return e.ComplexityRoot.Platform.SecurityOwnerUserID(childComplexity), true case "Platform.securityTier": - if e.complexity.Platform.SecurityTier == nil { + if e.ComplexityRoot.Platform.SecurityTier == nil { break } - return e.complexity.Platform.SecurityTier(childComplexity), true + return e.ComplexityRoot.Platform.SecurityTier(childComplexity), true case "Platform.securityTierID": - if e.complexity.Platform.SecurityTierID == nil { + if e.ComplexityRoot.Platform.SecurityTierID == nil { break } - return e.complexity.Platform.SecurityTierID(childComplexity), true + return e.ComplexityRoot.Platform.SecurityTierID(childComplexity), true case "Platform.securityTierName": - if e.complexity.Platform.SecurityTierName == nil { + if e.ComplexityRoot.Platform.SecurityTierName == nil { break } - return e.complexity.Platform.SecurityTierName(childComplexity), true + return e.ComplexityRoot.Platform.SecurityTierName(childComplexity), true case "Platform.sourceAssets": - if e.complexity.Platform.SourceAssets == nil { + if e.ComplexityRoot.Platform.SourceAssets == nil { break } @@ -33807,10 +33790,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.SourceAssets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Platform.SourceAssets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Platform.sourceEntities": - if e.complexity.Platform.SourceEntities == nil { + if e.ComplexityRoot.Platform.SourceEntities == nil { break } @@ -33819,38 +33802,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.SourceEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Platform.SourceEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Platform.sourceIdentifier": - if e.complexity.Platform.SourceIdentifier == nil { + if e.ComplexityRoot.Platform.SourceIdentifier == nil { break } - return e.complexity.Platform.SourceIdentifier(childComplexity), true + return e.ComplexityRoot.Platform.SourceIdentifier(childComplexity), true case "Platform.sourceType": - if e.complexity.Platform.SourceType == nil { + if e.ComplexityRoot.Platform.SourceType == nil { break } - return e.complexity.Platform.SourceType(childComplexity), true + return e.ComplexityRoot.Platform.SourceType(childComplexity), true case "Platform.status": - if e.complexity.Platform.Status == nil { + if e.ComplexityRoot.Platform.Status == nil { break } - return e.complexity.Platform.Status(childComplexity), true + return e.ComplexityRoot.Platform.Status(childComplexity), true case "Platform.tags": - if e.complexity.Platform.Tags == nil { + if e.ComplexityRoot.Platform.Tags == nil { break } - return e.complexity.Platform.Tags(childComplexity), true + return e.ComplexityRoot.Platform.Tags(childComplexity), true case "Platform.tasks": - if e.complexity.Platform.Tasks == nil { + if e.ComplexityRoot.Platform.Tasks == nil { break } @@ -33859,66 +33842,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Platform.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Platform.technicalOwner": - if e.complexity.Platform.TechnicalOwner == nil { + if e.ComplexityRoot.Platform.TechnicalOwner == nil { break } - return e.complexity.Platform.TechnicalOwner(childComplexity), true + return e.ComplexityRoot.Platform.TechnicalOwner(childComplexity), true case "Platform.technicalOwnerGroup": - if e.complexity.Platform.TechnicalOwnerGroup == nil { + if e.ComplexityRoot.Platform.TechnicalOwnerGroup == nil { break } - return e.complexity.Platform.TechnicalOwnerGroup(childComplexity), true + return e.ComplexityRoot.Platform.TechnicalOwnerGroup(childComplexity), true case "Platform.technicalOwnerGroupID": - if e.complexity.Platform.TechnicalOwnerGroupID == nil { + if e.ComplexityRoot.Platform.TechnicalOwnerGroupID == nil { break } - return e.complexity.Platform.TechnicalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.Platform.TechnicalOwnerGroupID(childComplexity), true case "Platform.technicalOwnerUser": - if e.complexity.Platform.TechnicalOwnerUser == nil { + if e.ComplexityRoot.Platform.TechnicalOwnerUser == nil { break } - return e.complexity.Platform.TechnicalOwnerUser(childComplexity), true + return e.ComplexityRoot.Platform.TechnicalOwnerUser(childComplexity), true case "Platform.technicalOwnerUserID": - if e.complexity.Platform.TechnicalOwnerUserID == nil { + if e.ComplexityRoot.Platform.TechnicalOwnerUserID == nil { break } - return e.complexity.Platform.TechnicalOwnerUserID(childComplexity), true + return e.ComplexityRoot.Platform.TechnicalOwnerUserID(childComplexity), true case "Platform.trustBoundaryDescription": - if e.complexity.Platform.TrustBoundaryDescription == nil { + if e.ComplexityRoot.Platform.TrustBoundaryDescription == nil { break } - return e.complexity.Platform.TrustBoundaryDescription(childComplexity), true + return e.ComplexityRoot.Platform.TrustBoundaryDescription(childComplexity), true case "Platform.updatedAt": - if e.complexity.Platform.UpdatedAt == nil { + if e.ComplexityRoot.Platform.UpdatedAt == nil { break } - return e.complexity.Platform.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Platform.UpdatedAt(childComplexity), true case "Platform.updatedBy": - if e.complexity.Platform.UpdatedBy == nil { + if e.ComplexityRoot.Platform.UpdatedBy == nil { break } - return e.complexity.Platform.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Platform.UpdatedBy(childComplexity), true case "Platform.viewers": - if e.complexity.Platform.Viewers == nil { + if e.ComplexityRoot.Platform.Viewers == nil { break } @@ -33927,17 +33910,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Platform.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Platform.workflowEligibleMarker": - if e.complexity.Platform.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.Platform.WorkflowEligibleMarker == nil { break } - return e.complexity.Platform.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.Platform.WorkflowEligibleMarker(childComplexity), true case "Platform.workflowObjectRefs": - if e.complexity.Platform.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Platform.WorkflowObjectRefs == nil { break } @@ -33946,10 +33929,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Platform.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "Platform.workflowTimeline": - if e.complexity.Platform.WorkflowTimeline == nil { + if e.ComplexityRoot.Platform.WorkflowTimeline == nil { break } @@ -33958,101 +33941,101 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Platform.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.Platform.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "PlatformBulkCreatePayload.platforms": - if e.complexity.PlatformBulkCreatePayload.Platforms == nil { + if e.ComplexityRoot.PlatformBulkCreatePayload.Platforms == nil { break } - return e.complexity.PlatformBulkCreatePayload.Platforms(childComplexity), true + return e.ComplexityRoot.PlatformBulkCreatePayload.Platforms(childComplexity), true case "PlatformConnection.edges": - if e.complexity.PlatformConnection.Edges == nil { + if e.ComplexityRoot.PlatformConnection.Edges == nil { break } - return e.complexity.PlatformConnection.Edges(childComplexity), true + return e.ComplexityRoot.PlatformConnection.Edges(childComplexity), true case "PlatformConnection.pageInfo": - if e.complexity.PlatformConnection.PageInfo == nil { + if e.ComplexityRoot.PlatformConnection.PageInfo == nil { break } - return e.complexity.PlatformConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.PlatformConnection.PageInfo(childComplexity), true case "PlatformConnection.totalCount": - if e.complexity.PlatformConnection.TotalCount == nil { + if e.ComplexityRoot.PlatformConnection.TotalCount == nil { break } - return e.complexity.PlatformConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.PlatformConnection.TotalCount(childComplexity), true case "PlatformCreatePayload.platform": - if e.complexity.PlatformCreatePayload.Platform == nil { + if e.ComplexityRoot.PlatformCreatePayload.Platform == nil { break } - return e.complexity.PlatformCreatePayload.Platform(childComplexity), true + return e.ComplexityRoot.PlatformCreatePayload.Platform(childComplexity), true case "PlatformDeletePayload.deletedID": - if e.complexity.PlatformDeletePayload.DeletedID == nil { + if e.ComplexityRoot.PlatformDeletePayload.DeletedID == nil { break } - return e.complexity.PlatformDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.PlatformDeletePayload.DeletedID(childComplexity), true case "PlatformEdge.cursor": - if e.complexity.PlatformEdge.Cursor == nil { + if e.ComplexityRoot.PlatformEdge.Cursor == nil { break } - return e.complexity.PlatformEdge.Cursor(childComplexity), true + return e.ComplexityRoot.PlatformEdge.Cursor(childComplexity), true case "PlatformEdge.node": - if e.complexity.PlatformEdge.Node == nil { + if e.ComplexityRoot.PlatformEdge.Node == nil { break } - return e.complexity.PlatformEdge.Node(childComplexity), true + return e.ComplexityRoot.PlatformEdge.Node(childComplexity), true case "PlatformUpdatePayload.platform": - if e.complexity.PlatformUpdatePayload.Platform == nil { + if e.ComplexityRoot.PlatformUpdatePayload.Platform == nil { break } - return e.complexity.PlatformUpdatePayload.Platform(childComplexity), true + return e.ComplexityRoot.PlatformUpdatePayload.Platform(childComplexity), true case "Procedure.activeWorkflowInstances": - if e.complexity.Procedure.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.Procedure.ActiveWorkflowInstances == nil { break } - return e.complexity.Procedure.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.Procedure.ActiveWorkflowInstances(childComplexity), true case "Procedure.approvalRequired": - if e.complexity.Procedure.ApprovalRequired == nil { + if e.ComplexityRoot.Procedure.ApprovalRequired == nil { break } - return e.complexity.Procedure.ApprovalRequired(childComplexity), true + return e.ComplexityRoot.Procedure.ApprovalRequired(childComplexity), true case "Procedure.approver": - if e.complexity.Procedure.Approver == nil { + if e.ComplexityRoot.Procedure.Approver == nil { break } - return e.complexity.Procedure.Approver(childComplexity), true + return e.ComplexityRoot.Procedure.Approver(childComplexity), true case "Procedure.approverID": - if e.complexity.Procedure.ApproverID == nil { + if e.ComplexityRoot.Procedure.ApproverID == nil { break } - return e.complexity.Procedure.ApproverID(childComplexity), true + return e.ComplexityRoot.Procedure.ApproverID(childComplexity), true case "Procedure.blockedGroups": - if e.complexity.Procedure.BlockedGroups == nil { + if e.ComplexityRoot.Procedure.BlockedGroups == nil { break } @@ -34061,10 +34044,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Procedure.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Procedure.comments": - if e.complexity.Procedure.Comments == nil { + if e.ComplexityRoot.Procedure.Comments == nil { break } @@ -34073,17 +34056,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Procedure.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Procedure.controlSuggestions": - if e.complexity.Procedure.ControlSuggestions == nil { + if e.ComplexityRoot.Procedure.ControlSuggestions == nil { break } - return e.complexity.Procedure.ControlSuggestions(childComplexity), true + return e.ComplexityRoot.Procedure.ControlSuggestions(childComplexity), true case "Procedure.controls": - if e.complexity.Procedure.Controls == nil { + if e.ComplexityRoot.Procedure.Controls == nil { break } @@ -34092,52 +34075,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Procedure.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Procedure.createdAt": - if e.complexity.Procedure.CreatedAt == nil { + if e.ComplexityRoot.Procedure.CreatedAt == nil { break } - return e.complexity.Procedure.CreatedAt(childComplexity), true + return e.ComplexityRoot.Procedure.CreatedAt(childComplexity), true case "Procedure.createdBy": - if e.complexity.Procedure.CreatedBy == nil { + if e.ComplexityRoot.Procedure.CreatedBy == nil { break } - return e.complexity.Procedure.CreatedBy(childComplexity), true + return e.ComplexityRoot.Procedure.CreatedBy(childComplexity), true case "Procedure.delegate": - if e.complexity.Procedure.Delegate == nil { + if e.ComplexityRoot.Procedure.Delegate == nil { break } - return e.complexity.Procedure.Delegate(childComplexity), true + return e.ComplexityRoot.Procedure.Delegate(childComplexity), true case "Procedure.delegateID": - if e.complexity.Procedure.DelegateID == nil { + if e.ComplexityRoot.Procedure.DelegateID == nil { break } - return e.complexity.Procedure.DelegateID(childComplexity), true + return e.ComplexityRoot.Procedure.DelegateID(childComplexity), true case "Procedure.details": - if e.complexity.Procedure.Details == nil { + if e.ComplexityRoot.Procedure.Details == nil { break } - return e.complexity.Procedure.Details(childComplexity), true + return e.ComplexityRoot.Procedure.Details(childComplexity), true case "Procedure.detailsJSON": - if e.complexity.Procedure.DetailsJSON == nil { + if e.ComplexityRoot.Procedure.DetailsJSON == nil { break } - return e.complexity.Procedure.DetailsJSON(childComplexity), true + return e.ComplexityRoot.Procedure.DetailsJSON(childComplexity), true case "Procedure.discussions": - if e.complexity.Procedure.Discussions == nil { + if e.ComplexityRoot.Procedure.Discussions == nil { break } @@ -34146,38 +34129,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true + return e.ComplexityRoot.Procedure.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true case "Procedure.dismissedControlSuggestions": - if e.complexity.Procedure.DismissedControlSuggestions == nil { + if e.ComplexityRoot.Procedure.DismissedControlSuggestions == nil { break } - return e.complexity.Procedure.DismissedControlSuggestions(childComplexity), true + return e.ComplexityRoot.Procedure.DismissedControlSuggestions(childComplexity), true case "Procedure.dismissedImprovementSuggestions": - if e.complexity.Procedure.DismissedImprovementSuggestions == nil { + if e.ComplexityRoot.Procedure.DismissedImprovementSuggestions == nil { break } - return e.complexity.Procedure.DismissedImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.Procedure.DismissedImprovementSuggestions(childComplexity), true case "Procedure.dismissedTagSuggestions": - if e.complexity.Procedure.DismissedTagSuggestions == nil { + if e.ComplexityRoot.Procedure.DismissedTagSuggestions == nil { break } - return e.complexity.Procedure.DismissedTagSuggestions(childComplexity), true + return e.ComplexityRoot.Procedure.DismissedTagSuggestions(childComplexity), true case "Procedure.displayID": - if e.complexity.Procedure.DisplayID == nil { + if e.ComplexityRoot.Procedure.DisplayID == nil { break } - return e.complexity.Procedure.DisplayID(childComplexity), true + return e.ComplexityRoot.Procedure.DisplayID(childComplexity), true case "Procedure.editors": - if e.complexity.Procedure.Editors == nil { + if e.ComplexityRoot.Procedure.Editors == nil { break } @@ -34186,80 +34169,80 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Procedure.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Procedure.environment": - if e.complexity.Procedure.Environment == nil { + if e.ComplexityRoot.Procedure.Environment == nil { break } - return e.complexity.Procedure.Environment(childComplexity), true + return e.ComplexityRoot.Procedure.Environment(childComplexity), true case "Procedure.environmentID": - if e.complexity.Procedure.EnvironmentID == nil { + if e.ComplexityRoot.Procedure.EnvironmentID == nil { break } - return e.complexity.Procedure.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Procedure.EnvironmentID(childComplexity), true case "Procedure.environmentName": - if e.complexity.Procedure.EnvironmentName == nil { + if e.ComplexityRoot.Procedure.EnvironmentName == nil { break } - return e.complexity.Procedure.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Procedure.EnvironmentName(childComplexity), true case "Procedure.file": - if e.complexity.Procedure.File == nil { + if e.ComplexityRoot.Procedure.File == nil { break } - return e.complexity.Procedure.File(childComplexity), true + return e.ComplexityRoot.Procedure.File(childComplexity), true case "Procedure.fileID": - if e.complexity.Procedure.FileID == nil { + if e.ComplexityRoot.Procedure.FileID == nil { break } - return e.complexity.Procedure.FileID(childComplexity), true + return e.ComplexityRoot.Procedure.FileID(childComplexity), true case "Procedure.hasPendingWorkflow": - if e.complexity.Procedure.HasPendingWorkflow == nil { + if e.ComplexityRoot.Procedure.HasPendingWorkflow == nil { break } - return e.complexity.Procedure.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.Procedure.HasPendingWorkflow(childComplexity), true case "Procedure.hasWorkflowHistory": - if e.complexity.Procedure.HasWorkflowHistory == nil { + if e.ComplexityRoot.Procedure.HasWorkflowHistory == nil { break } - return e.complexity.Procedure.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.Procedure.HasWorkflowHistory(childComplexity), true case "Procedure.id": - if e.complexity.Procedure.ID == nil { + if e.ComplexityRoot.Procedure.ID == nil { break } - return e.complexity.Procedure.ID(childComplexity), true + return e.ComplexityRoot.Procedure.ID(childComplexity), true case "Procedure.improvementSuggestions": - if e.complexity.Procedure.ImprovementSuggestions == nil { + if e.ComplexityRoot.Procedure.ImprovementSuggestions == nil { break } - return e.complexity.Procedure.ImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.Procedure.ImprovementSuggestions(childComplexity), true case "Procedure.internalNotes": - if e.complexity.Procedure.InternalNotes == nil { + if e.ComplexityRoot.Procedure.InternalNotes == nil { break } - return e.complexity.Procedure.InternalNotes(childComplexity), true + return e.ComplexityRoot.Procedure.InternalNotes(childComplexity), true case "Procedure.internalPolicies": - if e.complexity.Procedure.InternalPolicies == nil { + if e.ComplexityRoot.Procedure.InternalPolicies == nil { break } @@ -34268,17 +34251,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Procedure.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Procedure.name": - if e.complexity.Procedure.Name == nil { + if e.ComplexityRoot.Procedure.Name == nil { break } - return e.complexity.Procedure.Name(childComplexity), true + return e.ComplexityRoot.Procedure.Name(childComplexity), true case "Procedure.narratives": - if e.complexity.Procedure.Narratives == nil { + if e.ComplexityRoot.Procedure.Narratives == nil { break } @@ -34287,45 +34270,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Procedure.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Procedure.owner": - if e.complexity.Procedure.Owner == nil { + if e.ComplexityRoot.Procedure.Owner == nil { break } - return e.complexity.Procedure.Owner(childComplexity), true + return e.ComplexityRoot.Procedure.Owner(childComplexity), true case "Procedure.ownerID": - if e.complexity.Procedure.OwnerID == nil { + if e.ComplexityRoot.Procedure.OwnerID == nil { break } - return e.complexity.Procedure.OwnerID(childComplexity), true + return e.ComplexityRoot.Procedure.OwnerID(childComplexity), true case "Procedure.procedureKind": - if e.complexity.Procedure.ProcedureKind == nil { + if e.ComplexityRoot.Procedure.ProcedureKind == nil { break } - return e.complexity.Procedure.ProcedureKind(childComplexity), true + return e.ComplexityRoot.Procedure.ProcedureKind(childComplexity), true case "Procedure.procedureKindID": - if e.complexity.Procedure.ProcedureKindID == nil { + if e.ComplexityRoot.Procedure.ProcedureKindID == nil { break } - return e.complexity.Procedure.ProcedureKindID(childComplexity), true + return e.ComplexityRoot.Procedure.ProcedureKindID(childComplexity), true case "Procedure.procedureKindName": - if e.complexity.Procedure.ProcedureKindName == nil { + if e.ComplexityRoot.Procedure.ProcedureKindName == nil { break } - return e.complexity.Procedure.ProcedureKindName(childComplexity), true + return e.ComplexityRoot.Procedure.ProcedureKindName(childComplexity), true case "Procedure.programs": - if e.complexity.Procedure.Programs == nil { + if e.ComplexityRoot.Procedure.Programs == nil { break } @@ -34334,31 +34317,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Procedure.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Procedure.reviewDue": - if e.complexity.Procedure.ReviewDue == nil { + if e.ComplexityRoot.Procedure.ReviewDue == nil { break } - return e.complexity.Procedure.ReviewDue(childComplexity), true + return e.ComplexityRoot.Procedure.ReviewDue(childComplexity), true case "Procedure.reviewFrequency": - if e.complexity.Procedure.ReviewFrequency == nil { + if e.ComplexityRoot.Procedure.ReviewFrequency == nil { break } - return e.complexity.Procedure.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.Procedure.ReviewFrequency(childComplexity), true case "Procedure.revision": - if e.complexity.Procedure.Revision == nil { + if e.ComplexityRoot.Procedure.Revision == nil { break } - return e.complexity.Procedure.Revision(childComplexity), true + return e.ComplexityRoot.Procedure.Revision(childComplexity), true case "Procedure.risks": - if e.complexity.Procedure.Risks == nil { + if e.ComplexityRoot.Procedure.Risks == nil { break } @@ -34367,38 +34350,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Procedure.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Procedure.scope": - if e.complexity.Procedure.Scope == nil { + if e.ComplexityRoot.Procedure.Scope == nil { break } - return e.complexity.Procedure.Scope(childComplexity), true + return e.ComplexityRoot.Procedure.Scope(childComplexity), true case "Procedure.scopeID": - if e.complexity.Procedure.ScopeID == nil { + if e.ComplexityRoot.Procedure.ScopeID == nil { break } - return e.complexity.Procedure.ScopeID(childComplexity), true + return e.ComplexityRoot.Procedure.ScopeID(childComplexity), true case "Procedure.scopeName": - if e.complexity.Procedure.ScopeName == nil { + if e.ComplexityRoot.Procedure.ScopeName == nil { break } - return e.complexity.Procedure.ScopeName(childComplexity), true + return e.ComplexityRoot.Procedure.ScopeName(childComplexity), true case "Procedure.status": - if e.complexity.Procedure.Status == nil { + if e.ComplexityRoot.Procedure.Status == nil { break } - return e.complexity.Procedure.Status(childComplexity), true + return e.ComplexityRoot.Procedure.Status(childComplexity), true case "Procedure.subcontrols": - if e.complexity.Procedure.Subcontrols == nil { + if e.ComplexityRoot.Procedure.Subcontrols == nil { break } @@ -34407,45 +34390,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Procedure.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Procedure.summary": - if e.complexity.Procedure.Summary == nil { + if e.ComplexityRoot.Procedure.Summary == nil { break } - return e.complexity.Procedure.Summary(childComplexity), true + return e.ComplexityRoot.Procedure.Summary(childComplexity), true case "Procedure.systemInternalID": - if e.complexity.Procedure.SystemInternalID == nil { + if e.ComplexityRoot.Procedure.SystemInternalID == nil { break } - return e.complexity.Procedure.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Procedure.SystemInternalID(childComplexity), true case "Procedure.systemOwned": - if e.complexity.Procedure.SystemOwned == nil { + if e.ComplexityRoot.Procedure.SystemOwned == nil { break } - return e.complexity.Procedure.SystemOwned(childComplexity), true + return e.ComplexityRoot.Procedure.SystemOwned(childComplexity), true case "Procedure.tagSuggestions": - if e.complexity.Procedure.TagSuggestions == nil { + if e.ComplexityRoot.Procedure.TagSuggestions == nil { break } - return e.complexity.Procedure.TagSuggestions(childComplexity), true + return e.ComplexityRoot.Procedure.TagSuggestions(childComplexity), true case "Procedure.tags": - if e.complexity.Procedure.Tags == nil { + if e.ComplexityRoot.Procedure.Tags == nil { break } - return e.complexity.Procedure.Tags(childComplexity), true + return e.ComplexityRoot.Procedure.Tags(childComplexity), true case "Procedure.tasks": - if e.complexity.Procedure.Tasks == nil { + if e.ComplexityRoot.Procedure.Tasks == nil { break } @@ -34454,38 +34437,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Procedure.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Procedure.url": - if e.complexity.Procedure.URL == nil { + if e.ComplexityRoot.Procedure.URL == nil { break } - return e.complexity.Procedure.URL(childComplexity), true + return e.ComplexityRoot.Procedure.URL(childComplexity), true case "Procedure.updatedAt": - if e.complexity.Procedure.UpdatedAt == nil { + if e.ComplexityRoot.Procedure.UpdatedAt == nil { break } - return e.complexity.Procedure.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Procedure.UpdatedAt(childComplexity), true case "Procedure.updatedBy": - if e.complexity.Procedure.UpdatedBy == nil { + if e.ComplexityRoot.Procedure.UpdatedBy == nil { break } - return e.complexity.Procedure.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Procedure.UpdatedBy(childComplexity), true case "Procedure.workflowEligibleMarker": - if e.complexity.Procedure.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.Procedure.WorkflowEligibleMarker == nil { break } - return e.complexity.Procedure.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.Procedure.WorkflowEligibleMarker(childComplexity), true case "Procedure.workflowObjectRefs": - if e.complexity.Procedure.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Procedure.WorkflowObjectRefs == nil { break } @@ -34494,10 +34477,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Procedure.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "Procedure.workflowTimeline": - if e.complexity.Procedure.WorkflowTimeline == nil { + if e.ComplexityRoot.Procedure.WorkflowTimeline == nil { break } @@ -34506,94 +34489,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Procedure.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.Procedure.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "ProcedureBulkCreatePayload.procedures": - if e.complexity.ProcedureBulkCreatePayload.Procedures == nil { + if e.ComplexityRoot.ProcedureBulkCreatePayload.Procedures == nil { break } - return e.complexity.ProcedureBulkCreatePayload.Procedures(childComplexity), true + return e.ComplexityRoot.ProcedureBulkCreatePayload.Procedures(childComplexity), true case "ProcedureBulkDeletePayload.deletedIDs": - if e.complexity.ProcedureBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ProcedureBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ProcedureBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ProcedureBulkDeletePayload.DeletedIDs(childComplexity), true case "ProcedureBulkUpdatePayload.procedures": - if e.complexity.ProcedureBulkUpdatePayload.Procedures == nil { + if e.ComplexityRoot.ProcedureBulkUpdatePayload.Procedures == nil { break } - return e.complexity.ProcedureBulkUpdatePayload.Procedures(childComplexity), true + return e.ComplexityRoot.ProcedureBulkUpdatePayload.Procedures(childComplexity), true case "ProcedureBulkUpdatePayload.updatedIDs": - if e.complexity.ProcedureBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ProcedureBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ProcedureBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ProcedureBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ProcedureConnection.edges": - if e.complexity.ProcedureConnection.Edges == nil { + if e.ComplexityRoot.ProcedureConnection.Edges == nil { break } - return e.complexity.ProcedureConnection.Edges(childComplexity), true + return e.ComplexityRoot.ProcedureConnection.Edges(childComplexity), true case "ProcedureConnection.pageInfo": - if e.complexity.ProcedureConnection.PageInfo == nil { + if e.ComplexityRoot.ProcedureConnection.PageInfo == nil { break } - return e.complexity.ProcedureConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ProcedureConnection.PageInfo(childComplexity), true case "ProcedureConnection.totalCount": - if e.complexity.ProcedureConnection.TotalCount == nil { + if e.ComplexityRoot.ProcedureConnection.TotalCount == nil { break } - return e.complexity.ProcedureConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ProcedureConnection.TotalCount(childComplexity), true case "ProcedureCreatePayload.procedure": - if e.complexity.ProcedureCreatePayload.Procedure == nil { + if e.ComplexityRoot.ProcedureCreatePayload.Procedure == nil { break } - return e.complexity.ProcedureCreatePayload.Procedure(childComplexity), true + return e.ComplexityRoot.ProcedureCreatePayload.Procedure(childComplexity), true case "ProcedureDeletePayload.deletedID": - if e.complexity.ProcedureDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ProcedureDeletePayload.DeletedID == nil { break } - return e.complexity.ProcedureDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ProcedureDeletePayload.DeletedID(childComplexity), true case "ProcedureEdge.cursor": - if e.complexity.ProcedureEdge.Cursor == nil { + if e.ComplexityRoot.ProcedureEdge.Cursor == nil { break } - return e.complexity.ProcedureEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ProcedureEdge.Cursor(childComplexity), true case "ProcedureEdge.node": - if e.complexity.ProcedureEdge.Node == nil { + if e.ComplexityRoot.ProcedureEdge.Node == nil { break } - return e.complexity.ProcedureEdge.Node(childComplexity), true + return e.ComplexityRoot.ProcedureEdge.Node(childComplexity), true case "ProcedureUpdatePayload.procedure": - if e.complexity.ProcedureUpdatePayload.Procedure == nil { + if e.ComplexityRoot.ProcedureUpdatePayload.Procedure == nil { break } - return e.complexity.ProcedureUpdatePayload.Procedure(childComplexity), true + return e.ComplexityRoot.ProcedureUpdatePayload.Procedure(childComplexity), true case "Program.actionPlans": - if e.complexity.Program.ActionPlans == nil { + if e.ComplexityRoot.Program.ActionPlans == nil { break } @@ -34602,52 +34585,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Program.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Program.auditFirm": - if e.complexity.Program.AuditFirm == nil { + if e.ComplexityRoot.Program.AuditFirm == nil { break } - return e.complexity.Program.AuditFirm(childComplexity), true + return e.ComplexityRoot.Program.AuditFirm(childComplexity), true case "Program.auditor": - if e.complexity.Program.Auditor == nil { + if e.ComplexityRoot.Program.Auditor == nil { break } - return e.complexity.Program.Auditor(childComplexity), true + return e.ComplexityRoot.Program.Auditor(childComplexity), true case "Program.auditorEmail": - if e.complexity.Program.AuditorEmail == nil { + if e.ComplexityRoot.Program.AuditorEmail == nil { break } - return e.complexity.Program.AuditorEmail(childComplexity), true + return e.ComplexityRoot.Program.AuditorEmail(childComplexity), true case "Program.auditorReadComments": - if e.complexity.Program.AuditorReadComments == nil { + if e.ComplexityRoot.Program.AuditorReadComments == nil { break } - return e.complexity.Program.AuditorReadComments(childComplexity), true + return e.ComplexityRoot.Program.AuditorReadComments(childComplexity), true case "Program.auditorReady": - if e.complexity.Program.AuditorReady == nil { + if e.ComplexityRoot.Program.AuditorReady == nil { break } - return e.complexity.Program.AuditorReady(childComplexity), true + return e.ComplexityRoot.Program.AuditorReady(childComplexity), true case "Program.auditorWriteComments": - if e.complexity.Program.AuditorWriteComments == nil { + if e.ComplexityRoot.Program.AuditorWriteComments == nil { break } - return e.complexity.Program.AuditorWriteComments(childComplexity), true + return e.ComplexityRoot.Program.AuditorWriteComments(childComplexity), true case "Program.blockedGroups": - if e.complexity.Program.BlockedGroups == nil { + if e.ComplexityRoot.Program.BlockedGroups == nil { break } @@ -34656,10 +34639,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Program.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Program.controlObjectives": - if e.complexity.Program.ControlObjectives == nil { + if e.ComplexityRoot.Program.ControlObjectives == nil { break } @@ -34668,10 +34651,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Program.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Program.controls": - if e.complexity.Program.Controls == nil { + if e.ComplexityRoot.Program.Controls == nil { break } @@ -34680,38 +34663,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Program.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Program.createdAt": - if e.complexity.Program.CreatedAt == nil { + if e.ComplexityRoot.Program.CreatedAt == nil { break } - return e.complexity.Program.CreatedAt(childComplexity), true + return e.ComplexityRoot.Program.CreatedAt(childComplexity), true case "Program.createdBy": - if e.complexity.Program.CreatedBy == nil { + if e.ComplexityRoot.Program.CreatedBy == nil { break } - return e.complexity.Program.CreatedBy(childComplexity), true + return e.ComplexityRoot.Program.CreatedBy(childComplexity), true case "Program.description": - if e.complexity.Program.Description == nil { + if e.ComplexityRoot.Program.Description == nil { break } - return e.complexity.Program.Description(childComplexity), true + return e.ComplexityRoot.Program.Description(childComplexity), true case "Program.displayID": - if e.complexity.Program.DisplayID == nil { + if e.ComplexityRoot.Program.DisplayID == nil { break } - return e.complexity.Program.DisplayID(childComplexity), true + return e.ComplexityRoot.Program.DisplayID(childComplexity), true case "Program.editors": - if e.complexity.Program.Editors == nil { + if e.ComplexityRoot.Program.Editors == nil { break } @@ -34720,17 +34703,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Program.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Program.endDate": - if e.complexity.Program.EndDate == nil { + if e.ComplexityRoot.Program.EndDate == nil { break } - return e.complexity.Program.EndDate(childComplexity), true + return e.ComplexityRoot.Program.EndDate(childComplexity), true case "Program.evidence": - if e.complexity.Program.Evidence == nil { + if e.ComplexityRoot.Program.Evidence == nil { break } @@ -34739,10 +34722,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Program.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Program.files": - if e.complexity.Program.Files == nil { + if e.ComplexityRoot.Program.Files == nil { break } @@ -34751,24 +34734,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Program.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Program.frameworkName": - if e.complexity.Program.FrameworkName == nil { + if e.ComplexityRoot.Program.FrameworkName == nil { break } - return e.complexity.Program.FrameworkName(childComplexity), true + return e.ComplexityRoot.Program.FrameworkName(childComplexity), true case "Program.id": - if e.complexity.Program.ID == nil { + if e.ComplexityRoot.Program.ID == nil { break } - return e.complexity.Program.ID(childComplexity), true + return e.ComplexityRoot.Program.ID(childComplexity), true case "Program.internalPolicies": - if e.complexity.Program.InternalPolicies == nil { + if e.ComplexityRoot.Program.InternalPolicies == nil { break } @@ -34777,10 +34760,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Program.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Program.members": - if e.complexity.Program.Members == nil { + if e.ComplexityRoot.Program.Members == nil { break } @@ -34789,17 +34772,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramMembershipOrder), args["where"].(*generated.ProgramMembershipWhereInput)), true + return e.ComplexityRoot.Program.Members(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramMembershipOrder), args["where"].(*generated.ProgramMembershipWhereInput)), true case "Program.name": - if e.complexity.Program.Name == nil { + if e.ComplexityRoot.Program.Name == nil { break } - return e.complexity.Program.Name(childComplexity), true + return e.ComplexityRoot.Program.Name(childComplexity), true case "Program.narratives": - if e.complexity.Program.Narratives == nil { + if e.ComplexityRoot.Program.Narratives == nil { break } @@ -34808,10 +34791,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Program.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Program.notes": - if e.complexity.Program.Notes == nil { + if e.ComplexityRoot.Program.Notes == nil { break } @@ -34820,24 +34803,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Program.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Program.owner": - if e.complexity.Program.Owner == nil { + if e.ComplexityRoot.Program.Owner == nil { break } - return e.complexity.Program.Owner(childComplexity), true + return e.ComplexityRoot.Program.Owner(childComplexity), true case "Program.ownerID": - if e.complexity.Program.OwnerID == nil { + if e.ComplexityRoot.Program.OwnerID == nil { break } - return e.complexity.Program.OwnerID(childComplexity), true + return e.ComplexityRoot.Program.OwnerID(childComplexity), true case "Program.procedures": - if e.complexity.Program.Procedures == nil { + if e.ComplexityRoot.Program.Procedures == nil { break } @@ -34846,45 +34829,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Program.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Program.programKind": - if e.complexity.Program.ProgramKind == nil { + if e.ComplexityRoot.Program.ProgramKind == nil { break } - return e.complexity.Program.ProgramKind(childComplexity), true + return e.ComplexityRoot.Program.ProgramKind(childComplexity), true case "Program.programKindID": - if e.complexity.Program.ProgramKindID == nil { + if e.ComplexityRoot.Program.ProgramKindID == nil { break } - return e.complexity.Program.ProgramKindID(childComplexity), true + return e.ComplexityRoot.Program.ProgramKindID(childComplexity), true case "Program.programKindName": - if e.complexity.Program.ProgramKindName == nil { + if e.ComplexityRoot.Program.ProgramKindName == nil { break } - return e.complexity.Program.ProgramKindName(childComplexity), true + return e.ComplexityRoot.Program.ProgramKindName(childComplexity), true case "Program.programOwner": - if e.complexity.Program.ProgramOwner == nil { + if e.ComplexityRoot.Program.ProgramOwner == nil { break } - return e.complexity.Program.ProgramOwner(childComplexity), true + return e.ComplexityRoot.Program.ProgramOwner(childComplexity), true case "Program.programOwnerID": - if e.complexity.Program.ProgramOwnerID == nil { + if e.ComplexityRoot.Program.ProgramOwnerID == nil { break } - return e.complexity.Program.ProgramOwnerID(childComplexity), true + return e.ComplexityRoot.Program.ProgramOwnerID(childComplexity), true case "Program.risks": - if e.complexity.Program.Risks == nil { + if e.ComplexityRoot.Program.Risks == nil { break } @@ -34893,24 +34876,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Program.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Program.startDate": - if e.complexity.Program.StartDate == nil { + if e.ComplexityRoot.Program.StartDate == nil { break } - return e.complexity.Program.StartDate(childComplexity), true + return e.ComplexityRoot.Program.StartDate(childComplexity), true case "Program.status": - if e.complexity.Program.Status == nil { + if e.ComplexityRoot.Program.Status == nil { break } - return e.complexity.Program.Status(childComplexity), true + return e.ComplexityRoot.Program.Status(childComplexity), true case "Program.subcontrols": - if e.complexity.Program.Subcontrols == nil { + if e.ComplexityRoot.Program.Subcontrols == nil { break } @@ -34919,17 +34902,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Program.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Program.tags": - if e.complexity.Program.Tags == nil { + if e.ComplexityRoot.Program.Tags == nil { break } - return e.complexity.Program.Tags(childComplexity), true + return e.ComplexityRoot.Program.Tags(childComplexity), true case "Program.tasks": - if e.complexity.Program.Tasks == nil { + if e.ComplexityRoot.Program.Tasks == nil { break } @@ -34938,24 +34921,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Program.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Program.updatedAt": - if e.complexity.Program.UpdatedAt == nil { + if e.ComplexityRoot.Program.UpdatedAt == nil { break } - return e.complexity.Program.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Program.UpdatedAt(childComplexity), true case "Program.updatedBy": - if e.complexity.Program.UpdatedBy == nil { + if e.ComplexityRoot.Program.UpdatedBy == nil { break } - return e.complexity.Program.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Program.UpdatedBy(childComplexity), true case "Program.users": - if e.complexity.Program.Users == nil { + if e.ComplexityRoot.Program.Users == nil { break } @@ -34964,10 +34947,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true + return e.ComplexityRoot.Program.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true case "Program.viewers": - if e.complexity.Program.Viewers == nil { + if e.ComplexityRoot.Program.Viewers == nil { break } @@ -34976,248 +34959,248 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Program.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Program.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "ProgramBulkCreatePayload.programs": - if e.complexity.ProgramBulkCreatePayload.Programs == nil { + if e.ComplexityRoot.ProgramBulkCreatePayload.Programs == nil { break } - return e.complexity.ProgramBulkCreatePayload.Programs(childComplexity), true + return e.ComplexityRoot.ProgramBulkCreatePayload.Programs(childComplexity), true case "ProgramBulkDeletePayload.deletedIDs": - if e.complexity.ProgramBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ProgramBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ProgramBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ProgramBulkDeletePayload.DeletedIDs(childComplexity), true case "ProgramBulkUpdatePayload.programs": - if e.complexity.ProgramBulkUpdatePayload.Programs == nil { + if e.ComplexityRoot.ProgramBulkUpdatePayload.Programs == nil { break } - return e.complexity.ProgramBulkUpdatePayload.Programs(childComplexity), true + return e.ComplexityRoot.ProgramBulkUpdatePayload.Programs(childComplexity), true case "ProgramBulkUpdatePayload.updatedIDs": - if e.complexity.ProgramBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ProgramBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ProgramBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ProgramBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ProgramConnection.edges": - if e.complexity.ProgramConnection.Edges == nil { + if e.ComplexityRoot.ProgramConnection.Edges == nil { break } - return e.complexity.ProgramConnection.Edges(childComplexity), true + return e.ComplexityRoot.ProgramConnection.Edges(childComplexity), true case "ProgramConnection.pageInfo": - if e.complexity.ProgramConnection.PageInfo == nil { + if e.ComplexityRoot.ProgramConnection.PageInfo == nil { break } - return e.complexity.ProgramConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ProgramConnection.PageInfo(childComplexity), true case "ProgramConnection.totalCount": - if e.complexity.ProgramConnection.TotalCount == nil { + if e.ComplexityRoot.ProgramConnection.TotalCount == nil { break } - return e.complexity.ProgramConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ProgramConnection.TotalCount(childComplexity), true case "ProgramCreatePayload.program": - if e.complexity.ProgramCreatePayload.Program == nil { + if e.ComplexityRoot.ProgramCreatePayload.Program == nil { break } - return e.complexity.ProgramCreatePayload.Program(childComplexity), true + return e.ComplexityRoot.ProgramCreatePayload.Program(childComplexity), true case "ProgramDeletePayload.deletedID": - if e.complexity.ProgramDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ProgramDeletePayload.DeletedID == nil { break } - return e.complexity.ProgramDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ProgramDeletePayload.DeletedID(childComplexity), true case "ProgramEdge.cursor": - if e.complexity.ProgramEdge.Cursor == nil { + if e.ComplexityRoot.ProgramEdge.Cursor == nil { break } - return e.complexity.ProgramEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ProgramEdge.Cursor(childComplexity), true case "ProgramEdge.node": - if e.complexity.ProgramEdge.Node == nil { + if e.ComplexityRoot.ProgramEdge.Node == nil { break } - return e.complexity.ProgramEdge.Node(childComplexity), true + return e.ComplexityRoot.ProgramEdge.Node(childComplexity), true case "ProgramMembership.createdAt": - if e.complexity.ProgramMembership.CreatedAt == nil { + if e.ComplexityRoot.ProgramMembership.CreatedAt == nil { break } - return e.complexity.ProgramMembership.CreatedAt(childComplexity), true + return e.ComplexityRoot.ProgramMembership.CreatedAt(childComplexity), true case "ProgramMembership.createdBy": - if e.complexity.ProgramMembership.CreatedBy == nil { + if e.ComplexityRoot.ProgramMembership.CreatedBy == nil { break } - return e.complexity.ProgramMembership.CreatedBy(childComplexity), true + return e.ComplexityRoot.ProgramMembership.CreatedBy(childComplexity), true case "ProgramMembership.id": - if e.complexity.ProgramMembership.ID == nil { + if e.ComplexityRoot.ProgramMembership.ID == nil { break } - return e.complexity.ProgramMembership.ID(childComplexity), true + return e.ComplexityRoot.ProgramMembership.ID(childComplexity), true case "ProgramMembership.program": - if e.complexity.ProgramMembership.Program == nil { + if e.ComplexityRoot.ProgramMembership.Program == nil { break } - return e.complexity.ProgramMembership.Program(childComplexity), true + return e.ComplexityRoot.ProgramMembership.Program(childComplexity), true case "ProgramMembership.programID": - if e.complexity.ProgramMembership.ProgramID == nil { + if e.ComplexityRoot.ProgramMembership.ProgramID == nil { break } - return e.complexity.ProgramMembership.ProgramID(childComplexity), true + return e.ComplexityRoot.ProgramMembership.ProgramID(childComplexity), true case "ProgramMembership.role": - if e.complexity.ProgramMembership.Role == nil { + if e.ComplexityRoot.ProgramMembership.Role == nil { break } - return e.complexity.ProgramMembership.Role(childComplexity), true + return e.ComplexityRoot.ProgramMembership.Role(childComplexity), true case "ProgramMembership.updatedAt": - if e.complexity.ProgramMembership.UpdatedAt == nil { + if e.ComplexityRoot.ProgramMembership.UpdatedAt == nil { break } - return e.complexity.ProgramMembership.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ProgramMembership.UpdatedAt(childComplexity), true case "ProgramMembership.updatedBy": - if e.complexity.ProgramMembership.UpdatedBy == nil { + if e.ComplexityRoot.ProgramMembership.UpdatedBy == nil { break } - return e.complexity.ProgramMembership.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ProgramMembership.UpdatedBy(childComplexity), true case "ProgramMembership.user": - if e.complexity.ProgramMembership.User == nil { + if e.ComplexityRoot.ProgramMembership.User == nil { break } - return e.complexity.ProgramMembership.User(childComplexity), true + return e.ComplexityRoot.ProgramMembership.User(childComplexity), true case "ProgramMembership.userID": - if e.complexity.ProgramMembership.UserID == nil { + if e.ComplexityRoot.ProgramMembership.UserID == nil { break } - return e.complexity.ProgramMembership.UserID(childComplexity), true + return e.ComplexityRoot.ProgramMembership.UserID(childComplexity), true case "ProgramMembershipBulkCreatePayload.programMemberships": - if e.complexity.ProgramMembershipBulkCreatePayload.ProgramMemberships == nil { + if e.ComplexityRoot.ProgramMembershipBulkCreatePayload.ProgramMemberships == nil { break } - return e.complexity.ProgramMembershipBulkCreatePayload.ProgramMemberships(childComplexity), true + return e.ComplexityRoot.ProgramMembershipBulkCreatePayload.ProgramMemberships(childComplexity), true case "ProgramMembershipBulkDeletePayload.deletedIDs": - if e.complexity.ProgramMembershipBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ProgramMembershipBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ProgramMembershipBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ProgramMembershipBulkDeletePayload.DeletedIDs(childComplexity), true case "ProgramMembershipBulkUpdatePayload.programMemberships": - if e.complexity.ProgramMembershipBulkUpdatePayload.ProgramMemberships == nil { + if e.ComplexityRoot.ProgramMembershipBulkUpdatePayload.ProgramMemberships == nil { break } - return e.complexity.ProgramMembershipBulkUpdatePayload.ProgramMemberships(childComplexity), true + return e.ComplexityRoot.ProgramMembershipBulkUpdatePayload.ProgramMemberships(childComplexity), true case "ProgramMembershipBulkUpdatePayload.updatedIDs": - if e.complexity.ProgramMembershipBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ProgramMembershipBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ProgramMembershipBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ProgramMembershipBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ProgramMembershipConnection.edges": - if e.complexity.ProgramMembershipConnection.Edges == nil { + if e.ComplexityRoot.ProgramMembershipConnection.Edges == nil { break } - return e.complexity.ProgramMembershipConnection.Edges(childComplexity), true + return e.ComplexityRoot.ProgramMembershipConnection.Edges(childComplexity), true case "ProgramMembershipConnection.pageInfo": - if e.complexity.ProgramMembershipConnection.PageInfo == nil { + if e.ComplexityRoot.ProgramMembershipConnection.PageInfo == nil { break } - return e.complexity.ProgramMembershipConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ProgramMembershipConnection.PageInfo(childComplexity), true case "ProgramMembershipConnection.totalCount": - if e.complexity.ProgramMembershipConnection.TotalCount == nil { + if e.ComplexityRoot.ProgramMembershipConnection.TotalCount == nil { break } - return e.complexity.ProgramMembershipConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ProgramMembershipConnection.TotalCount(childComplexity), true case "ProgramMembershipCreatePayload.programMembership": - if e.complexity.ProgramMembershipCreatePayload.ProgramMembership == nil { + if e.ComplexityRoot.ProgramMembershipCreatePayload.ProgramMembership == nil { break } - return e.complexity.ProgramMembershipCreatePayload.ProgramMembership(childComplexity), true + return e.ComplexityRoot.ProgramMembershipCreatePayload.ProgramMembership(childComplexity), true case "ProgramMembershipDeletePayload.deletedID": - if e.complexity.ProgramMembershipDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ProgramMembershipDeletePayload.DeletedID == nil { break } - return e.complexity.ProgramMembershipDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ProgramMembershipDeletePayload.DeletedID(childComplexity), true case "ProgramMembershipEdge.cursor": - if e.complexity.ProgramMembershipEdge.Cursor == nil { + if e.ComplexityRoot.ProgramMembershipEdge.Cursor == nil { break } - return e.complexity.ProgramMembershipEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ProgramMembershipEdge.Cursor(childComplexity), true case "ProgramMembershipEdge.node": - if e.complexity.ProgramMembershipEdge.Node == nil { + if e.ComplexityRoot.ProgramMembershipEdge.Node == nil { break } - return e.complexity.ProgramMembershipEdge.Node(childComplexity), true + return e.ComplexityRoot.ProgramMembershipEdge.Node(childComplexity), true case "ProgramMembershipUpdatePayload.programMembership": - if e.complexity.ProgramMembershipUpdatePayload.ProgramMembership == nil { + if e.ComplexityRoot.ProgramMembershipUpdatePayload.ProgramMembership == nil { break } - return e.complexity.ProgramMembershipUpdatePayload.ProgramMembership(childComplexity), true + return e.ComplexityRoot.ProgramMembershipUpdatePayload.ProgramMembership(childComplexity), true case "ProgramUpdatePayload.program": - if e.complexity.ProgramUpdatePayload.Program == nil { + if e.ComplexityRoot.ProgramUpdatePayload.Program == nil { break } - return e.complexity.ProgramUpdatePayload.Program(childComplexity), true + return e.ComplexityRoot.ProgramUpdatePayload.Program(childComplexity), true case "Query.apiToken": - if e.complexity.Query.APIToken == nil { + if e.ComplexityRoot.Query.APIToken == nil { break } @@ -35226,10 +35209,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.APIToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.APIToken(childComplexity, args["id"].(string)), true case "Query.apiTokens": - if e.complexity.Query.APITokens == nil { + if e.ComplexityRoot.Query.APITokens == nil { break } @@ -35238,10 +35221,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.APITokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.APITokenOrder), args["where"].(*generated.APITokenWhereInput)), true + return e.ComplexityRoot.Query.APITokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.APITokenOrder), args["where"].(*generated.APITokenWhereInput)), true case "Query.actionPlan": - if e.complexity.Query.ActionPlan == nil { + if e.ComplexityRoot.Query.ActionPlan == nil { break } @@ -35250,10 +35233,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ActionPlan(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.ActionPlan(childComplexity, args["id"].(string)), true case "Query.actionPlanSearch": - if e.complexity.Query.ActionPlanSearch == nil { + if e.ComplexityRoot.Query.ActionPlanSearch == nil { break } @@ -35262,10 +35245,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ActionPlanSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ActionPlanSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.actionPlans": - if e.complexity.Query.ActionPlans == nil { + if e.ComplexityRoot.Query.ActionPlans == nil { break } @@ -35274,10 +35257,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Query.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Query.assessment": - if e.complexity.Query.Assessment == nil { + if e.ComplexityRoot.Query.Assessment == nil { break } @@ -35286,10 +35269,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Assessment(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Assessment(childComplexity, args["id"].(string)), true case "Query.assessmentResponse": - if e.complexity.Query.AssessmentResponse == nil { + if e.ComplexityRoot.Query.AssessmentResponse == nil { break } @@ -35298,10 +35281,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssessmentResponse(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.AssessmentResponse(childComplexity, args["id"].(string)), true case "Query.assessmentResponseSearch": - if e.complexity.Query.AssessmentResponseSearch == nil { + if e.ComplexityRoot.Query.AssessmentResponseSearch == nil { break } @@ -35310,10 +35293,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssessmentResponseSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.AssessmentResponseSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.assessmentResponses": - if e.complexity.Query.AssessmentResponses == nil { + if e.ComplexityRoot.Query.AssessmentResponses == nil { break } @@ -35322,10 +35305,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true + return e.ComplexityRoot.Query.AssessmentResponses(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentResponseOrder), args["where"].(*generated.AssessmentResponseWhereInput)), true case "Query.assessmentSearch": - if e.complexity.Query.AssessmentSearch == nil { + if e.ComplexityRoot.Query.AssessmentSearch == nil { break } @@ -35334,10 +35317,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssessmentSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.AssessmentSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.assessments": - if e.complexity.Query.Assessments == nil { + if e.ComplexityRoot.Query.Assessments == nil { break } @@ -35346,10 +35329,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true + return e.ComplexityRoot.Query.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true case "Query.asset": - if e.complexity.Query.Asset == nil { + if e.ComplexityRoot.Query.Asset == nil { break } @@ -35358,10 +35341,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Asset(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Asset(childComplexity, args["id"].(string)), true case "Query.assetSearch": - if e.complexity.Query.AssetSearch == nil { + if e.ComplexityRoot.Query.AssetSearch == nil { break } @@ -35370,10 +35353,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssetSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.AssetSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.assets": - if e.complexity.Query.Assets == nil { + if e.ComplexityRoot.Query.Assets == nil { break } @@ -35382,10 +35365,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Query.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Query.campaign": - if e.complexity.Query.Campaign == nil { + if e.ComplexityRoot.Query.Campaign == nil { break } @@ -35394,10 +35377,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Campaign(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Campaign(childComplexity, args["id"].(string)), true case "Query.campaignSearch": - if e.complexity.Query.CampaignSearch == nil { + if e.ComplexityRoot.Query.CampaignSearch == nil { break } @@ -35406,10 +35389,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CampaignSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.CampaignSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.campaignTarget": - if e.complexity.Query.CampaignTarget == nil { + if e.ComplexityRoot.Query.CampaignTarget == nil { break } @@ -35418,10 +35401,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CampaignTarget(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.CampaignTarget(childComplexity, args["id"].(string)), true case "Query.campaignTargetSearch": - if e.complexity.Query.CampaignTargetSearch == nil { + if e.ComplexityRoot.Query.CampaignTargetSearch == nil { break } @@ -35430,10 +35413,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CampaignTargetSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.CampaignTargetSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.campaignTargets": - if e.complexity.Query.CampaignTargets == nil { + if e.ComplexityRoot.Query.CampaignTargets == nil { break } @@ -35442,10 +35425,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true + return e.ComplexityRoot.Query.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true case "Query.campaigns": - if e.complexity.Query.Campaigns == nil { + if e.ComplexityRoot.Query.Campaigns == nil { break } @@ -35454,10 +35437,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Query.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Query.contact": - if e.complexity.Query.Contact == nil { + if e.ComplexityRoot.Query.Contact == nil { break } @@ -35466,10 +35449,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Contact(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Contact(childComplexity, args["id"].(string)), true case "Query.contactSearch": - if e.complexity.Query.ContactSearch == nil { + if e.ComplexityRoot.Query.ContactSearch == nil { break } @@ -35478,10 +35461,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ContactSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ContactSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.contacts": - if e.complexity.Query.Contacts == nil { + if e.ComplexityRoot.Query.Contacts == nil { break } @@ -35490,10 +35473,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true + return e.ComplexityRoot.Query.Contacts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ContactOrder), args["where"].(*generated.ContactWhereInput)), true case "Query.control": - if e.complexity.Query.Control == nil { + if e.ComplexityRoot.Query.Control == nil { break } @@ -35502,17 +35485,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Control(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Control(childComplexity, args["id"].(string)), true case "Query.controlCategories": - if e.complexity.Query.ControlCategories == nil { + if e.ComplexityRoot.Query.ControlCategories == nil { break } - return e.complexity.Query.ControlCategories(childComplexity), true + return e.ComplexityRoot.Query.ControlCategories(childComplexity), true case "Query.controlCategoriesByFramework": - if e.complexity.Query.ControlCategoriesByFramework == nil { + if e.ComplexityRoot.Query.ControlCategoriesByFramework == nil { break } @@ -35521,10 +35504,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlCategoriesByFramework(childComplexity, args["orderBy"].([]*model.ControlCategoryOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Query.ControlCategoriesByFramework(childComplexity, args["orderBy"].([]*model.ControlCategoryOrder), args["where"].(*generated.ControlWhereInput)), true case "Query.controlDiff": - if e.complexity.Query.ControlDiff == nil { + if e.ComplexityRoot.Query.ControlDiff == nil { break } @@ -35533,10 +35516,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlDiff(childComplexity, args["input"].(model.ControlDiffInput)), true + return e.ComplexityRoot.Query.ControlDiff(childComplexity, args["input"].(model.ControlDiffInput)), true case "Query.controlImplementation": - if e.complexity.Query.ControlImplementation == nil { + if e.ComplexityRoot.Query.ControlImplementation == nil { break } @@ -35545,10 +35528,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlImplementation(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.ControlImplementation(childComplexity, args["id"].(string)), true case "Query.controlImplementations": - if e.complexity.Query.ControlImplementations == nil { + if e.ComplexityRoot.Query.ControlImplementations == nil { break } @@ -35557,10 +35540,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Query.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Query.controlObjective": - if e.complexity.Query.ControlObjective == nil { + if e.ComplexityRoot.Query.ControlObjective == nil { break } @@ -35569,10 +35552,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlObjective(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.ControlObjective(childComplexity, args["id"].(string)), true case "Query.controlObjectiveSearch": - if e.complexity.Query.ControlObjectiveSearch == nil { + if e.ComplexityRoot.Query.ControlObjectiveSearch == nil { break } @@ -35581,10 +35564,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlObjectiveSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ControlObjectiveSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.controlObjectives": - if e.complexity.Query.ControlObjectives == nil { + if e.ComplexityRoot.Query.ControlObjectives == nil { break } @@ -35593,10 +35576,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Query.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Query.controlSearch": - if e.complexity.Query.ControlSearch == nil { + if e.ComplexityRoot.Query.ControlSearch == nil { break } @@ -35605,17 +35588,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ControlSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.controlSubcategories": - if e.complexity.Query.ControlSubcategories == nil { + if e.ComplexityRoot.Query.ControlSubcategories == nil { break } - return e.complexity.Query.ControlSubcategories(childComplexity), true + return e.ComplexityRoot.Query.ControlSubcategories(childComplexity), true case "Query.controlSubcategoriesByFramework": - if e.complexity.Query.ControlSubcategoriesByFramework == nil { + if e.ComplexityRoot.Query.ControlSubcategoriesByFramework == nil { break } @@ -35624,10 +35607,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlSubcategoriesByFramework(childComplexity, args["orderBy"].([]*model.ControlCategoryOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Query.ControlSubcategoriesByFramework(childComplexity, args["orderBy"].([]*model.ControlCategoryOrder), args["where"].(*generated.ControlWhereInput)), true case "Query.controls": - if e.complexity.Query.Controls == nil { + if e.ComplexityRoot.Query.Controls == nil { break } @@ -35636,10 +35619,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Query.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Query.controlsGroupByCategory": - if e.complexity.Query.ControlsGroupByCategory == nil { + if e.ComplexityRoot.Query.ControlsGroupByCategory == nil { break } @@ -35648,10 +35631,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlsGroupByCategory(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput), args["category"].(*string)), true + return e.ComplexityRoot.Query.ControlsGroupByCategory(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput), args["category"].(*string)), true case "Query.customDomain": - if e.complexity.Query.CustomDomain == nil { + if e.ComplexityRoot.Query.CustomDomain == nil { break } @@ -35660,10 +35643,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CustomDomain(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.CustomDomain(childComplexity, args["id"].(string)), true case "Query.customDomains": - if e.complexity.Query.CustomDomains == nil { + if e.ComplexityRoot.Query.CustomDomains == nil { break } @@ -35672,10 +35655,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true + return e.ComplexityRoot.Query.CustomDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomDomainOrder), args["where"].(*generated.CustomDomainWhereInput)), true case "Query.customTypeEnum": - if e.complexity.Query.CustomTypeEnum == nil { + if e.ComplexityRoot.Query.CustomTypeEnum == nil { break } @@ -35684,10 +35667,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CustomTypeEnum(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.CustomTypeEnum(childComplexity, args["id"].(string)), true case "Query.customTypeEnumSearch": - if e.complexity.Query.CustomTypeEnumSearch == nil { + if e.ComplexityRoot.Query.CustomTypeEnumSearch == nil { break } @@ -35696,10 +35679,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CustomTypeEnumSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.CustomTypeEnumSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.customTypeEnums": - if e.complexity.Query.CustomTypeEnums == nil { + if e.ComplexityRoot.Query.CustomTypeEnums == nil { break } @@ -35708,10 +35691,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CustomTypeEnums(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomTypeEnumOrder), args["where"].(*generated.CustomTypeEnumWhereInput)), true + return e.ComplexityRoot.Query.CustomTypeEnums(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CustomTypeEnumOrder), args["where"].(*generated.CustomTypeEnumWhereInput)), true case "Query.dnsVerification": - if e.complexity.Query.DNSVerification == nil { + if e.ComplexityRoot.Query.DNSVerification == nil { break } @@ -35720,10 +35703,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DNSVerification(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.DNSVerification(childComplexity, args["id"].(string)), true case "Query.dnsVerifications": - if e.complexity.Query.DNSVerifications == nil { + if e.ComplexityRoot.Query.DNSVerifications == nil { break } @@ -35732,10 +35715,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DNSVerifications(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DNSVerificationOrder), args["where"].(*generated.DNSVerificationWhereInput)), true + return e.ComplexityRoot.Query.DNSVerifications(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DNSVerificationOrder), args["where"].(*generated.DNSVerificationWhereInput)), true case "Query.directoryAccount": - if e.complexity.Query.DirectoryAccount == nil { + if e.ComplexityRoot.Query.DirectoryAccount == nil { break } @@ -35744,10 +35727,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryAccount(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.DirectoryAccount(childComplexity, args["id"].(string)), true case "Query.directoryAccounts": - if e.complexity.Query.DirectoryAccounts == nil { + if e.ComplexityRoot.Query.DirectoryAccounts == nil { break } @@ -35756,10 +35739,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true + return e.ComplexityRoot.Query.DirectoryAccounts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryAccountOrder), args["where"].(*generated.DirectoryAccountWhereInput)), true case "Query.directoryGroup": - if e.complexity.Query.DirectoryGroup == nil { + if e.ComplexityRoot.Query.DirectoryGroup == nil { break } @@ -35768,10 +35751,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryGroup(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.DirectoryGroup(childComplexity, args["id"].(string)), true case "Query.directoryGroups": - if e.complexity.Query.DirectoryGroups == nil { + if e.ComplexityRoot.Query.DirectoryGroups == nil { break } @@ -35780,10 +35763,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true + return e.ComplexityRoot.Query.DirectoryGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryGroupOrder), args["where"].(*generated.DirectoryGroupWhereInput)), true case "Query.directoryMembership": - if e.complexity.Query.DirectoryMembership == nil { + if e.ComplexityRoot.Query.DirectoryMembership == nil { break } @@ -35792,10 +35775,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.DirectoryMembership(childComplexity, args["id"].(string)), true case "Query.directoryMemberships": - if e.complexity.Query.DirectoryMemberships == nil { + if e.ComplexityRoot.Query.DirectoryMemberships == nil { break } @@ -35804,10 +35787,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true + return e.ComplexityRoot.Query.DirectoryMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectoryMembershipOrder), args["where"].(*generated.DirectoryMembershipWhereInput)), true case "Query.directorySyncRun": - if e.complexity.Query.DirectorySyncRun == nil { + if e.ComplexityRoot.Query.DirectorySyncRun == nil { break } @@ -35816,10 +35799,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectorySyncRun(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.DirectorySyncRun(childComplexity, args["id"].(string)), true case "Query.directorySyncRuns": - if e.complexity.Query.DirectorySyncRuns == nil { + if e.ComplexityRoot.Query.DirectorySyncRuns == nil { break } @@ -35828,10 +35811,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true + return e.ComplexityRoot.Query.DirectorySyncRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DirectorySyncRunOrder), args["where"].(*generated.DirectorySyncRunWhereInput)), true case "Query.discussion": - if e.complexity.Query.Discussion == nil { + if e.ComplexityRoot.Query.Discussion == nil { break } @@ -35840,10 +35823,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Discussion(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Discussion(childComplexity, args["id"].(string)), true case "Query.discussions": - if e.complexity.Query.Discussions == nil { + if e.ComplexityRoot.Query.Discussions == nil { break } @@ -35852,10 +35835,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true + return e.ComplexityRoot.Query.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true case "Query.documentData": - if e.complexity.Query.DocumentData == nil { + if e.ComplexityRoot.Query.DocumentData == nil { break } @@ -35864,10 +35847,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DocumentData(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.DocumentData(childComplexity, args["id"].(string)), true case "Query.documentDataSlice": - if e.complexity.Query.DocumentDataSlice == nil { + if e.ComplexityRoot.Query.DocumentDataSlice == nil { break } @@ -35876,10 +35859,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DocumentDataSlice(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true + return e.ComplexityRoot.Query.DocumentDataSlice(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true case "Query.emailBranding": - if e.complexity.Query.EmailBranding == nil { + if e.ComplexityRoot.Query.EmailBranding == nil { break } @@ -35888,10 +35871,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailBranding(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.EmailBranding(childComplexity, args["id"].(string)), true case "Query.emailBrandingSearch": - if e.complexity.Query.EmailBrandingSearch == nil { + if e.ComplexityRoot.Query.EmailBrandingSearch == nil { break } @@ -35900,10 +35883,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailBrandingSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.EmailBrandingSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.emailBrandings": - if e.complexity.Query.EmailBrandings == nil { + if e.ComplexityRoot.Query.EmailBrandings == nil { break } @@ -35912,10 +35895,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailBrandings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailBrandingOrder), args["where"].(*generated.EmailBrandingWhereInput)), true + return e.ComplexityRoot.Query.EmailBrandings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailBrandingOrder), args["where"].(*generated.EmailBrandingWhereInput)), true case "Query.emailTemplate": - if e.complexity.Query.EmailTemplate == nil { + if e.ComplexityRoot.Query.EmailTemplate == nil { break } @@ -35924,10 +35907,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailTemplate(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.EmailTemplate(childComplexity, args["id"].(string)), true case "Query.emailTemplateSearch": - if e.complexity.Query.EmailTemplateSearch == nil { + if e.ComplexityRoot.Query.EmailTemplateSearch == nil { break } @@ -35936,10 +35919,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailTemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.EmailTemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.emailTemplates": - if e.complexity.Query.EmailTemplates == nil { + if e.ComplexityRoot.Query.EmailTemplates == nil { break } @@ -35948,10 +35931,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true + return e.ComplexityRoot.Query.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true case "Query.entities": - if e.complexity.Query.Entities == nil { + if e.ComplexityRoot.Query.Entities == nil { break } @@ -35960,10 +35943,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Query.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Query.entity": - if e.complexity.Query.Entity == nil { + if e.ComplexityRoot.Query.Entity == nil { break } @@ -35972,10 +35955,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Entity(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Entity(childComplexity, args["id"].(string)), true case "Query.entitySearch": - if e.complexity.Query.EntitySearch == nil { + if e.ComplexityRoot.Query.EntitySearch == nil { break } @@ -35984,10 +35967,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EntitySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.EntitySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.entityType": - if e.complexity.Query.EntityType == nil { + if e.ComplexityRoot.Query.EntityType == nil { break } @@ -35996,10 +35979,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EntityType(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.EntityType(childComplexity, args["id"].(string)), true case "Query.entityTypes": - if e.complexity.Query.EntityTypes == nil { + if e.ComplexityRoot.Query.EntityTypes == nil { break } @@ -36008,10 +35991,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EntityTypes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityTypeOrder), args["where"].(*generated.EntityTypeWhereInput)), true + return e.ComplexityRoot.Query.EntityTypes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityTypeOrder), args["where"].(*generated.EntityTypeWhereInput)), true case "Query.event": - if e.complexity.Query.Event == nil { + if e.ComplexityRoot.Query.Event == nil { break } @@ -36020,10 +36003,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Event(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Event(childComplexity, args["id"].(string)), true case "Query.events": - if e.complexity.Query.Events == nil { + if e.ComplexityRoot.Query.Events == nil { break } @@ -36032,10 +36015,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Query.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Query.evidence": - if e.complexity.Query.Evidence == nil { + if e.ComplexityRoot.Query.Evidence == nil { break } @@ -36044,10 +36027,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Evidence(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Evidence(childComplexity, args["id"].(string)), true case "Query.evidenceSearch": - if e.complexity.Query.EvidenceSearch == nil { + if e.ComplexityRoot.Query.EvidenceSearch == nil { break } @@ -36056,10 +36039,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EvidenceSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.EvidenceSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.evidences": - if e.complexity.Query.Evidences == nil { + if e.ComplexityRoot.Query.Evidences == nil { break } @@ -36068,10 +36051,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Evidences(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Query.Evidences(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Query.export": - if e.complexity.Query.Export == nil { + if e.ComplexityRoot.Query.Export == nil { break } @@ -36080,10 +36063,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Export(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Export(childComplexity, args["id"].(string)), true case "Query.exports": - if e.complexity.Query.Exports == nil { + if e.ComplexityRoot.Query.Exports == nil { break } @@ -36092,10 +36075,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Exports(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ExportOrder), args["where"].(*generated.ExportWhereInput)), true + return e.ComplexityRoot.Query.Exports(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ExportOrder), args["where"].(*generated.ExportWhereInput)), true case "Query.file": - if e.complexity.Query.File == nil { + if e.ComplexityRoot.Query.File == nil { break } @@ -36104,10 +36087,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.File(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.File(childComplexity, args["id"].(string)), true case "Query.files": - if e.complexity.Query.Files == nil { + if e.ComplexityRoot.Query.Files == nil { break } @@ -36116,10 +36099,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Query.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Query.finding": - if e.complexity.Query.Finding == nil { + if e.ComplexityRoot.Query.Finding == nil { break } @@ -36128,10 +36111,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Finding(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Finding(childComplexity, args["id"].(string)), true case "Query.findingControl": - if e.complexity.Query.FindingControl == nil { + if e.ComplexityRoot.Query.FindingControl == nil { break } @@ -36140,10 +36123,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.FindingControl(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.FindingControl(childComplexity, args["id"].(string)), true case "Query.findingControls": - if e.complexity.Query.FindingControls == nil { + if e.ComplexityRoot.Query.FindingControls == nil { break } @@ -36152,10 +36135,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.FindingControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingControlOrder), args["where"].(*generated.FindingControlWhereInput)), true + return e.ComplexityRoot.Query.FindingControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingControlOrder), args["where"].(*generated.FindingControlWhereInput)), true case "Query.findingSearch": - if e.complexity.Query.FindingSearch == nil { + if e.ComplexityRoot.Query.FindingSearch == nil { break } @@ -36164,10 +36147,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.FindingSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.FindingSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.findings": - if e.complexity.Query.Findings == nil { + if e.ComplexityRoot.Query.Findings == nil { break } @@ -36176,10 +36159,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.Query.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "Query.group": - if e.complexity.Query.Group == nil { + if e.ComplexityRoot.Query.Group == nil { break } @@ -36188,10 +36171,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Group(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Group(childComplexity, args["id"].(string)), true case "Query.groupMembership": - if e.complexity.Query.GroupMembership == nil { + if e.ComplexityRoot.Query.GroupMembership == nil { break } @@ -36200,10 +36183,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.GroupMembership(childComplexity, args["id"].(string)), true case "Query.groupMemberships": - if e.complexity.Query.GroupMemberships == nil { + if e.ComplexityRoot.Query.GroupMemberships == nil { break } @@ -36212,10 +36195,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true + return e.ComplexityRoot.Query.GroupMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true case "Query.groupSearch": - if e.complexity.Query.GroupSearch == nil { + if e.ComplexityRoot.Query.GroupSearch == nil { break } @@ -36224,10 +36207,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.GroupSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.groupSetting": - if e.complexity.Query.GroupSetting == nil { + if e.ComplexityRoot.Query.GroupSetting == nil { break } @@ -36236,10 +36219,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupSetting(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.GroupSetting(childComplexity, args["id"].(string)), true case "Query.groupSettings": - if e.complexity.Query.GroupSettings == nil { + if e.ComplexityRoot.Query.GroupSettings == nil { break } @@ -36248,10 +36231,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupSettingOrder), args["where"].(*generated.GroupSettingWhereInput)), true + return e.ComplexityRoot.Query.GroupSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupSettingOrder), args["where"].(*generated.GroupSettingWhereInput)), true case "Query.groups": - if e.complexity.Query.Groups == nil { + if e.ComplexityRoot.Query.Groups == nil { break } @@ -36260,10 +36243,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Query.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Query.hush": - if e.complexity.Query.Hush == nil { + if e.ComplexityRoot.Query.Hush == nil { break } @@ -36272,10 +36255,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Hush(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Hush(childComplexity, args["id"].(string)), true case "Query.hushes": - if e.complexity.Query.Hushes == nil { + if e.ComplexityRoot.Query.Hushes == nil { break } @@ -36284,10 +36267,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Hushes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true + return e.ComplexityRoot.Query.Hushes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.HushOrder), args["where"].(*generated.HushWhereInput)), true case "Query.identityHolder": - if e.complexity.Query.IdentityHolder == nil { + if e.ComplexityRoot.Query.IdentityHolder == nil { break } @@ -36296,10 +36279,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.IdentityHolder(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.IdentityHolder(childComplexity, args["id"].(string)), true case "Query.identityHolderSearch": - if e.complexity.Query.IdentityHolderSearch == nil { + if e.ComplexityRoot.Query.IdentityHolderSearch == nil { break } @@ -36308,10 +36291,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.IdentityHolderSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.IdentityHolderSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.identityHolders": - if e.complexity.Query.IdentityHolders == nil { + if e.ComplexityRoot.Query.IdentityHolders == nil { break } @@ -36320,10 +36303,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Query.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Query.integration": - if e.complexity.Query.Integration == nil { + if e.ComplexityRoot.Query.Integration == nil { break } @@ -36332,10 +36315,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Integration(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Integration(childComplexity, args["id"].(string)), true case "Query.integrationSearch": - if e.complexity.Query.IntegrationSearch == nil { + if e.ComplexityRoot.Query.IntegrationSearch == nil { break } @@ -36344,10 +36327,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.IntegrationSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.IntegrationSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.integrations": - if e.complexity.Query.Integrations == nil { + if e.ComplexityRoot.Query.Integrations == nil { break } @@ -36356,10 +36339,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Query.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Query.internalPolicies": - if e.complexity.Query.InternalPolicies == nil { + if e.ComplexityRoot.Query.InternalPolicies == nil { break } @@ -36368,10 +36351,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Query.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Query.internalPolicy": - if e.complexity.Query.InternalPolicy == nil { + if e.ComplexityRoot.Query.InternalPolicy == nil { break } @@ -36380,10 +36363,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.InternalPolicy(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.InternalPolicy(childComplexity, args["id"].(string)), true case "Query.internalPolicySearch": - if e.complexity.Query.InternalPolicySearch == nil { + if e.ComplexityRoot.Query.InternalPolicySearch == nil { break } @@ -36392,10 +36375,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.InternalPolicySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.InternalPolicySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.invite": - if e.complexity.Query.Invite == nil { + if e.ComplexityRoot.Query.Invite == nil { break } @@ -36404,10 +36387,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Invite(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Invite(childComplexity, args["id"].(string)), true case "Query.inviteSearch": - if e.complexity.Query.InviteSearch == nil { + if e.ComplexityRoot.Query.InviteSearch == nil { break } @@ -36416,10 +36399,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.InviteSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.InviteSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.invites": - if e.complexity.Query.Invites == nil { + if e.ComplexityRoot.Query.Invites == nil { break } @@ -36428,10 +36411,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Invites(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InviteOrder), args["where"].(*generated.InviteWhereInput)), true + return e.ComplexityRoot.Query.Invites(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InviteOrder), args["where"].(*generated.InviteWhereInput)), true case "Query.jobResult": - if e.complexity.Query.JobResult == nil { + if e.ComplexityRoot.Query.JobResult == nil { break } @@ -36440,10 +36423,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobResult(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.JobResult(childComplexity, args["id"].(string)), true case "Query.jobResults": - if e.complexity.Query.JobResults == nil { + if e.ComplexityRoot.Query.JobResults == nil { break } @@ -36452,10 +36435,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobResults(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobResultOrder), args["where"].(*generated.JobResultWhereInput)), true + return e.ComplexityRoot.Query.JobResults(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobResultOrder), args["where"].(*generated.JobResultWhereInput)), true case "Query.jobRunner": - if e.complexity.Query.JobRunner == nil { + if e.ComplexityRoot.Query.JobRunner == nil { break } @@ -36464,10 +36447,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobRunner(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.JobRunner(childComplexity, args["id"].(string)), true case "Query.jobRunnerRegistrationToken": - if e.complexity.Query.JobRunnerRegistrationToken == nil { + if e.ComplexityRoot.Query.JobRunnerRegistrationToken == nil { break } @@ -36476,10 +36459,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobRunnerRegistrationToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.JobRunnerRegistrationToken(childComplexity, args["id"].(string)), true case "Query.jobRunnerRegistrationTokens": - if e.complexity.Query.JobRunnerRegistrationTokens == nil { + if e.ComplexityRoot.Query.JobRunnerRegistrationTokens == nil { break } @@ -36488,10 +36471,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobRunnerRegistrationTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerRegistrationTokenOrder), args["where"].(*generated.JobRunnerRegistrationTokenWhereInput)), true + return e.ComplexityRoot.Query.JobRunnerRegistrationTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerRegistrationTokenOrder), args["where"].(*generated.JobRunnerRegistrationTokenWhereInput)), true case "Query.jobRunnerSearch": - if e.complexity.Query.JobRunnerSearch == nil { + if e.ComplexityRoot.Query.JobRunnerSearch == nil { break } @@ -36500,10 +36483,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobRunnerSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.JobRunnerSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.jobRunnerToken": - if e.complexity.Query.JobRunnerToken == nil { + if e.ComplexityRoot.Query.JobRunnerToken == nil { break } @@ -36512,10 +36495,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobRunnerToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.JobRunnerToken(childComplexity, args["id"].(string)), true case "Query.jobRunnerTokens": - if e.complexity.Query.JobRunnerTokens == nil { + if e.ComplexityRoot.Query.JobRunnerTokens == nil { break } @@ -36524,10 +36507,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobRunnerTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerTokenOrder), args["where"].(*generated.JobRunnerTokenWhereInput)), true + return e.ComplexityRoot.Query.JobRunnerTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerTokenOrder), args["where"].(*generated.JobRunnerTokenWhereInput)), true case "Query.jobRunners": - if e.complexity.Query.JobRunners == nil { + if e.ComplexityRoot.Query.JobRunners == nil { break } @@ -36536,10 +36519,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobRunners(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerOrder), args["where"].(*generated.JobRunnerWhereInput)), true + return e.ComplexityRoot.Query.JobRunners(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobRunnerOrder), args["where"].(*generated.JobRunnerWhereInput)), true case "Query.jobTemplate": - if e.complexity.Query.JobTemplate == nil { + if e.ComplexityRoot.Query.JobTemplate == nil { break } @@ -36548,10 +36531,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobTemplate(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.JobTemplate(childComplexity, args["id"].(string)), true case "Query.jobTemplateSearch": - if e.complexity.Query.JobTemplateSearch == nil { + if e.ComplexityRoot.Query.JobTemplateSearch == nil { break } @@ -36560,10 +36543,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobTemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.JobTemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.jobTemplates": - if e.complexity.Query.JobTemplates == nil { + if e.ComplexityRoot.Query.JobTemplates == nil { break } @@ -36572,10 +36555,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobTemplateOrder), args["where"].(*generated.JobTemplateWhereInput)), true + return e.ComplexityRoot.Query.JobTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.JobTemplateOrder), args["where"].(*generated.JobTemplateWhereInput)), true case "Query.mappableDomain": - if e.complexity.Query.MappableDomain == nil { + if e.ComplexityRoot.Query.MappableDomain == nil { break } @@ -36584,10 +36567,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.MappableDomain(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.MappableDomain(childComplexity, args["id"].(string)), true case "Query.mappableDomains": - if e.complexity.Query.MappableDomains == nil { + if e.ComplexityRoot.Query.MappableDomains == nil { break } @@ -36596,10 +36579,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.MappableDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappableDomainOrder), args["where"].(*generated.MappableDomainWhereInput)), true + return e.ComplexityRoot.Query.MappableDomains(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappableDomainOrder), args["where"].(*generated.MappableDomainWhereInput)), true case "Query.mappedControl": - if e.complexity.Query.MappedControl == nil { + if e.ComplexityRoot.Query.MappedControl == nil { break } @@ -36608,10 +36591,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.MappedControl(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.MappedControl(childComplexity, args["id"].(string)), true case "Query.mappedControls": - if e.complexity.Query.MappedControls == nil { + if e.ComplexityRoot.Query.MappedControls == nil { break } @@ -36620,10 +36603,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.MappedControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true + return e.ComplexityRoot.Query.MappedControls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.MappedControlOrder), args["where"].(*generated.MappedControlWhereInput)), true case "Query.myWorkflowAssignments": - if e.complexity.Query.MyWorkflowAssignments == nil { + if e.ComplexityRoot.Query.MyWorkflowAssignments == nil { break } @@ -36632,10 +36615,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.MyWorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true + return e.ComplexityRoot.Query.MyWorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true case "Query.narrative": - if e.complexity.Query.Narrative == nil { + if e.ComplexityRoot.Query.Narrative == nil { break } @@ -36644,10 +36627,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Narrative(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Narrative(childComplexity, args["id"].(string)), true case "Query.narrativeSearch": - if e.complexity.Query.NarrativeSearch == nil { + if e.ComplexityRoot.Query.NarrativeSearch == nil { break } @@ -36656,10 +36639,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NarrativeSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.NarrativeSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.narratives": - if e.complexity.Query.Narratives == nil { + if e.ComplexityRoot.Query.Narratives == nil { break } @@ -36668,10 +36651,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Query.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Query.node": - if e.complexity.Query.Node == nil { + if e.ComplexityRoot.Query.Node == nil { break } @@ -36680,10 +36663,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Node(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Node(childComplexity, args["id"].(string)), true case "Query.nodes": - if e.complexity.Query.Nodes == nil { + if e.ComplexityRoot.Query.Nodes == nil { break } @@ -36692,10 +36675,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Nodes(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Query.Nodes(childComplexity, args["ids"].([]string)), true case "Query.note": - if e.complexity.Query.Note == nil { + if e.ComplexityRoot.Query.Note == nil { break } @@ -36704,10 +36687,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Note(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Note(childComplexity, args["id"].(string)), true case "Query.notes": - if e.complexity.Query.Notes == nil { + if e.ComplexityRoot.Query.Notes == nil { break } @@ -36716,10 +36699,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Query.Notes(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Query.notificationPreference": - if e.complexity.Query.NotificationPreference == nil { + if e.ComplexityRoot.Query.NotificationPreference == nil { break } @@ -36728,10 +36711,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NotificationPreference(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.NotificationPreference(childComplexity, args["id"].(string)), true case "Query.notificationPreferences": - if e.complexity.Query.NotificationPreferences == nil { + if e.ComplexityRoot.Query.NotificationPreferences == nil { break } @@ -36740,10 +36723,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NotificationPreferences(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationPreferenceOrder), args["where"].(*generated.NotificationPreferenceWhereInput)), true + return e.ComplexityRoot.Query.NotificationPreferences(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationPreferenceOrder), args["where"].(*generated.NotificationPreferenceWhereInput)), true case "Query.notificationTemplate": - if e.complexity.Query.NotificationTemplate == nil { + if e.ComplexityRoot.Query.NotificationTemplate == nil { break } @@ -36752,10 +36735,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NotificationTemplate(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.NotificationTemplate(childComplexity, args["id"].(string)), true case "Query.notificationTemplateSearch": - if e.complexity.Query.NotificationTemplateSearch == nil { + if e.ComplexityRoot.Query.NotificationTemplateSearch == nil { break } @@ -36764,10 +36747,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NotificationTemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.NotificationTemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.notificationTemplates": - if e.complexity.Query.NotificationTemplates == nil { + if e.ComplexityRoot.Query.NotificationTemplates == nil { break } @@ -36776,10 +36759,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true + return e.ComplexityRoot.Query.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true case "Query.orgMembership": - if e.complexity.Query.OrgMembership == nil { + if e.ComplexityRoot.Query.OrgMembership == nil { break } @@ -36788,10 +36771,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrgMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.OrgMembership(childComplexity, args["id"].(string)), true case "Query.orgMemberships": - if e.complexity.Query.OrgMemberships == nil { + if e.ComplexityRoot.Query.OrgMemberships == nil { break } @@ -36800,10 +36783,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrgMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true + return e.ComplexityRoot.Query.OrgMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true case "Query.orgSubscription": - if e.complexity.Query.OrgSubscription == nil { + if e.ComplexityRoot.Query.OrgSubscription == nil { break } @@ -36812,10 +36795,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrgSubscription(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.OrgSubscription(childComplexity, args["id"].(string)), true case "Query.orgSubscriptions": - if e.complexity.Query.OrgSubscriptions == nil { + if e.ComplexityRoot.Query.OrgSubscriptions == nil { break } @@ -36824,10 +36807,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrgSubscriptions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.OrgSubscriptionOrder), args["where"].(*generated.OrgSubscriptionWhereInput)), true + return e.ComplexityRoot.Query.OrgSubscriptions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.OrgSubscriptionOrder), args["where"].(*generated.OrgSubscriptionWhereInput)), true case "Query.organization": - if e.complexity.Query.Organization == nil { + if e.ComplexityRoot.Query.Organization == nil { break } @@ -36836,10 +36819,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Organization(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Organization(childComplexity, args["id"].(string)), true case "Query.organizationSearch": - if e.complexity.Query.OrganizationSearch == nil { + if e.ComplexityRoot.Query.OrganizationSearch == nil { break } @@ -36848,10 +36831,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrganizationSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.OrganizationSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.organizationSetting": - if e.complexity.Query.OrganizationSetting == nil { + if e.ComplexityRoot.Query.OrganizationSetting == nil { break } @@ -36860,10 +36843,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrganizationSetting(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.OrganizationSetting(childComplexity, args["id"].(string)), true case "Query.organizationSettings": - if e.complexity.Query.OrganizationSettings == nil { + if e.ComplexityRoot.Query.OrganizationSettings == nil { break } @@ -36872,10 +36855,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrganizationSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationSettingOrder), args["where"].(*generated.OrganizationSettingWhereInput)), true + return e.ComplexityRoot.Query.OrganizationSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationSettingOrder), args["where"].(*generated.OrganizationSettingWhereInput)), true case "Query.organizations": - if e.complexity.Query.Organizations == nil { + if e.ComplexityRoot.Query.Organizations == nil { break } @@ -36884,10 +36867,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true + return e.ComplexityRoot.Query.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true case "Query.personalAccessToken": - if e.complexity.Query.PersonalAccessToken == nil { + if e.ComplexityRoot.Query.PersonalAccessToken == nil { break } @@ -36896,10 +36879,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.PersonalAccessToken(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.PersonalAccessToken(childComplexity, args["id"].(string)), true case "Query.personalAccessTokens": - if e.complexity.Query.PersonalAccessTokens == nil { + if e.ComplexityRoot.Query.PersonalAccessTokens == nil { break } @@ -36908,10 +36891,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true + return e.ComplexityRoot.Query.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true case "Query.platform": - if e.complexity.Query.Platform == nil { + if e.ComplexityRoot.Query.Platform == nil { break } @@ -36920,10 +36903,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Platform(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Platform(childComplexity, args["id"].(string)), true case "Query.platformSearch": - if e.complexity.Query.PlatformSearch == nil { + if e.ComplexityRoot.Query.PlatformSearch == nil { break } @@ -36932,10 +36915,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.PlatformSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.PlatformSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.platforms": - if e.complexity.Query.Platforms == nil { + if e.ComplexityRoot.Query.Platforms == nil { break } @@ -36944,10 +36927,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Query.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Query.procedure": - if e.complexity.Query.Procedure == nil { + if e.ComplexityRoot.Query.Procedure == nil { break } @@ -36956,10 +36939,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Procedure(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Procedure(childComplexity, args["id"].(string)), true case "Query.procedureSearch": - if e.complexity.Query.ProcedureSearch == nil { + if e.ComplexityRoot.Query.ProcedureSearch == nil { break } @@ -36968,10 +36951,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ProcedureSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ProcedureSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.procedures": - if e.complexity.Query.Procedures == nil { + if e.ComplexityRoot.Query.Procedures == nil { break } @@ -36980,10 +36963,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Query.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Query.program": - if e.complexity.Query.Program == nil { + if e.ComplexityRoot.Query.Program == nil { break } @@ -36992,10 +36975,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Program(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Program(childComplexity, args["id"].(string)), true case "Query.programMembership": - if e.complexity.Query.ProgramMembership == nil { + if e.ComplexityRoot.Query.ProgramMembership == nil { break } @@ -37004,10 +36987,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ProgramMembership(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.ProgramMembership(childComplexity, args["id"].(string)), true case "Query.programMemberships": - if e.complexity.Query.ProgramMemberships == nil { + if e.ComplexityRoot.Query.ProgramMemberships == nil { break } @@ -37016,10 +36999,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ProgramMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramMembershipOrder), args["where"].(*generated.ProgramMembershipWhereInput)), true + return e.ComplexityRoot.Query.ProgramMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramMembershipOrder), args["where"].(*generated.ProgramMembershipWhereInput)), true case "Query.programSearch": - if e.complexity.Query.ProgramSearch == nil { + if e.ComplexityRoot.Query.ProgramSearch == nil { break } @@ -37028,10 +37011,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ProgramSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ProgramSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.programs": - if e.complexity.Query.Programs == nil { + if e.ComplexityRoot.Query.Programs == nil { break } @@ -37040,10 +37023,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Query.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Query.remediation": - if e.complexity.Query.Remediation == nil { + if e.ComplexityRoot.Query.Remediation == nil { break } @@ -37052,10 +37035,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Remediation(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Remediation(childComplexity, args["id"].(string)), true case "Query.remediationSearch": - if e.complexity.Query.RemediationSearch == nil { + if e.ComplexityRoot.Query.RemediationSearch == nil { break } @@ -37064,10 +37047,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.RemediationSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.RemediationSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.remediations": - if e.complexity.Query.Remediations == nil { + if e.ComplexityRoot.Query.Remediations == nil { break } @@ -37076,10 +37059,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.Query.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "Query.review": - if e.complexity.Query.Review == nil { + if e.ComplexityRoot.Query.Review == nil { break } @@ -37088,10 +37071,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Review(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Review(childComplexity, args["id"].(string)), true case "Query.reviewSearch": - if e.complexity.Query.ReviewSearch == nil { + if e.ComplexityRoot.Query.ReviewSearch == nil { break } @@ -37100,10 +37083,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ReviewSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ReviewSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.reviews": - if e.complexity.Query.Reviews == nil { + if e.ComplexityRoot.Query.Reviews == nil { break } @@ -37112,10 +37095,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true + return e.ComplexityRoot.Query.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true case "Query.risk": - if e.complexity.Query.Risk == nil { + if e.ComplexityRoot.Query.Risk == nil { break } @@ -37124,10 +37107,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Risk(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Risk(childComplexity, args["id"].(string)), true case "Query.riskSearch": - if e.complexity.Query.RiskSearch == nil { + if e.ComplexityRoot.Query.RiskSearch == nil { break } @@ -37136,10 +37119,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.RiskSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.RiskSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.risks": - if e.complexity.Query.Risks == nil { + if e.ComplexityRoot.Query.Risks == nil { break } @@ -37148,10 +37131,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Query.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Query.scan": - if e.complexity.Query.Scan == nil { + if e.ComplexityRoot.Query.Scan == nil { break } @@ -37160,10 +37143,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Scan(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Scan(childComplexity, args["id"].(string)), true case "Query.scanSearch": - if e.complexity.Query.ScanSearch == nil { + if e.ComplexityRoot.Query.ScanSearch == nil { break } @@ -37172,10 +37155,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ScanSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.ScanSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.scans": - if e.complexity.Query.Scans == nil { + if e.ComplexityRoot.Query.Scans == nil { break } @@ -37184,10 +37167,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Query.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Query.scheduledJob": - if e.complexity.Query.ScheduledJob == nil { + if e.ComplexityRoot.Query.ScheduledJob == nil { break } @@ -37196,10 +37179,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ScheduledJob(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.ScheduledJob(childComplexity, args["id"].(string)), true case "Query.scheduledJobRun": - if e.complexity.Query.ScheduledJobRun == nil { + if e.ComplexityRoot.Query.ScheduledJobRun == nil { break } @@ -37208,10 +37191,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ScheduledJobRun(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.ScheduledJobRun(childComplexity, args["id"].(string)), true case "Query.scheduledJobRuns": - if e.complexity.Query.ScheduledJobRuns == nil { + if e.ComplexityRoot.Query.ScheduledJobRuns == nil { break } @@ -37220,10 +37203,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ScheduledJobRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobRunOrder), args["where"].(*generated.ScheduledJobRunWhereInput)), true + return e.ComplexityRoot.Query.ScheduledJobRuns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobRunOrder), args["where"].(*generated.ScheduledJobRunWhereInput)), true case "Query.scheduledJobs": - if e.complexity.Query.ScheduledJobs == nil { + if e.ComplexityRoot.Query.ScheduledJobs == nil { break } @@ -37232,10 +37215,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true + return e.ComplexityRoot.Query.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true case "Query.search": - if e.complexity.Query.Search == nil { + if e.ComplexityRoot.Query.Search == nil { break } @@ -37244,17 +37227,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Search(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.Search(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.self": - if e.complexity.Query.Self == nil { + if e.ComplexityRoot.Query.Self == nil { break } - return e.complexity.Query.Self(childComplexity), true + return e.ComplexityRoot.Query.Self(childComplexity), true case "Query.standard": - if e.complexity.Query.Standard == nil { + if e.ComplexityRoot.Query.Standard == nil { break } @@ -37263,10 +37246,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Standard(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Standard(childComplexity, args["id"].(string)), true case "Query.standardSearch": - if e.complexity.Query.StandardSearch == nil { + if e.ComplexityRoot.Query.StandardSearch == nil { break } @@ -37275,10 +37258,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.StandardSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.StandardSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.standards": - if e.complexity.Query.Standards == nil { + if e.ComplexityRoot.Query.Standards == nil { break } @@ -37287,10 +37270,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Standards(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.StandardOrder), args["where"].(*generated.StandardWhereInput)), true + return e.ComplexityRoot.Query.Standards(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.StandardOrder), args["where"].(*generated.StandardWhereInput)), true case "Query.subcontrol": - if e.complexity.Query.Subcontrol == nil { + if e.ComplexityRoot.Query.Subcontrol == nil { break } @@ -37299,10 +37282,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Subcontrol(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Subcontrol(childComplexity, args["id"].(string)), true case "Query.subcontrolSearch": - if e.complexity.Query.SubcontrolSearch == nil { + if e.ComplexityRoot.Query.SubcontrolSearch == nil { break } @@ -37311,10 +37294,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.SubcontrolSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.SubcontrolSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.subcontrols": - if e.complexity.Query.Subcontrols == nil { + if e.ComplexityRoot.Query.Subcontrols == nil { break } @@ -37323,10 +37306,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Query.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Query.subprocessor": - if e.complexity.Query.Subprocessor == nil { + if e.ComplexityRoot.Query.Subprocessor == nil { break } @@ -37335,10 +37318,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Subprocessor(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Subprocessor(childComplexity, args["id"].(string)), true case "Query.subprocessorSearch": - if e.complexity.Query.SubprocessorSearch == nil { + if e.ComplexityRoot.Query.SubprocessorSearch == nil { break } @@ -37347,10 +37330,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.SubprocessorSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.SubprocessorSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.subprocessors": - if e.complexity.Query.Subprocessors == nil { + if e.ComplexityRoot.Query.Subprocessors == nil { break } @@ -37359,10 +37342,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Subprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubprocessorOrder), args["where"].(*generated.SubprocessorWhereInput)), true + return e.ComplexityRoot.Query.Subprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubprocessorOrder), args["where"].(*generated.SubprocessorWhereInput)), true case "Query.subscriber": - if e.complexity.Query.Subscriber == nil { + if e.ComplexityRoot.Query.Subscriber == nil { break } @@ -37371,10 +37354,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Subscriber(childComplexity, args["email"].(string)), true + return e.ComplexityRoot.Query.Subscriber(childComplexity, args["email"].(string)), true case "Query.subscriberSearch": - if e.complexity.Query.SubscriberSearch == nil { + if e.ComplexityRoot.Query.SubscriberSearch == nil { break } @@ -37383,10 +37366,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.SubscriberSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.SubscriberSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.subscribers": - if e.complexity.Query.Subscribers == nil { + if e.ComplexityRoot.Query.Subscribers == nil { break } @@ -37395,10 +37378,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Subscribers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubscriberOrder), args["where"].(*generated.SubscriberWhereInput)), true + return e.ComplexityRoot.Query.Subscribers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubscriberOrder), args["where"].(*generated.SubscriberWhereInput)), true case "Query.tagDefinition": - if e.complexity.Query.TagDefinition == nil { + if e.ComplexityRoot.Query.TagDefinition == nil { break } @@ -37407,10 +37390,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TagDefinition(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TagDefinition(childComplexity, args["id"].(string)), true case "Query.tagDefinitionSearch": - if e.complexity.Query.TagDefinitionSearch == nil { + if e.ComplexityRoot.Query.TagDefinitionSearch == nil { break } @@ -37419,10 +37402,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TagDefinitionSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.TagDefinitionSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.tagDefinitions": - if e.complexity.Query.TagDefinitions == nil { + if e.ComplexityRoot.Query.TagDefinitions == nil { break } @@ -37431,10 +37414,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TagDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TagDefinitionOrder), args["where"].(*generated.TagDefinitionWhereInput)), true + return e.ComplexityRoot.Query.TagDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TagDefinitionOrder), args["where"].(*generated.TagDefinitionWhereInput)), true case "Query.task": - if e.complexity.Query.Task == nil { + if e.ComplexityRoot.Query.Task == nil { break } @@ -37443,10 +37426,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Task(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Task(childComplexity, args["id"].(string)), true case "Query.taskSearch": - if e.complexity.Query.TaskSearch == nil { + if e.ComplexityRoot.Query.TaskSearch == nil { break } @@ -37455,10 +37438,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TaskSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.TaskSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.tasks": - if e.complexity.Query.Tasks == nil { + if e.ComplexityRoot.Query.Tasks == nil { break } @@ -37467,10 +37450,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Query.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Query.template": - if e.complexity.Query.Template == nil { + if e.ComplexityRoot.Query.Template == nil { break } @@ -37479,10 +37462,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Template(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Template(childComplexity, args["id"].(string)), true case "Query.templateSearch": - if e.complexity.Query.TemplateSearch == nil { + if e.ComplexityRoot.Query.TemplateSearch == nil { break } @@ -37491,10 +37474,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.TemplateSearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.templates": - if e.complexity.Query.Templates == nil { + if e.ComplexityRoot.Query.Templates == nil { break } @@ -37503,10 +37486,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true + return e.ComplexityRoot.Query.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true case "Query.tfaSetting": - if e.complexity.Query.TfaSetting == nil { + if e.ComplexityRoot.Query.TfaSetting == nil { break } @@ -37515,10 +37498,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TfaSetting(childComplexity, args["id"].(*string)), true + return e.ComplexityRoot.Query.TfaSetting(childComplexity, args["id"].(*string)), true case "Query.tfaSettings": - if e.complexity.Query.TfaSettings == nil { + if e.ComplexityRoot.Query.TfaSettings == nil { break } @@ -37527,10 +37510,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TfaSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TFASettingOrder), args["where"].(*generated.TFASettingWhereInput)), true + return e.ComplexityRoot.Query.TfaSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TFASettingOrder), args["where"].(*generated.TFASettingWhereInput)), true case "Query.trustCenter": - if e.complexity.Query.TrustCenter == nil { + if e.ComplexityRoot.Query.TrustCenter == nil { break } @@ -37539,10 +37522,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenter(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenter(childComplexity, args["id"].(string)), true case "Query.trustCenterCompliance": - if e.complexity.Query.TrustCenterCompliance == nil { + if e.ComplexityRoot.Query.TrustCenterCompliance == nil { break } @@ -37551,10 +37534,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterCompliance(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterCompliance(childComplexity, args["id"].(string)), true case "Query.trustCenterCompliances": - if e.complexity.Query.TrustCenterCompliances == nil { + if e.ComplexityRoot.Query.TrustCenterCompliances == nil { break } @@ -37563,10 +37546,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterCompliances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterComplianceOrder), args["where"].(*generated.TrustCenterComplianceWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterCompliances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterComplianceOrder), args["where"].(*generated.TrustCenterComplianceWhereInput)), true case "Query.trustCenterDoc": - if e.complexity.Query.TrustCenterDoc == nil { + if e.ComplexityRoot.Query.TrustCenterDoc == nil { break } @@ -37575,10 +37558,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterDoc(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterDoc(childComplexity, args["id"].(string)), true case "Query.trustCenterDocs": - if e.complexity.Query.TrustCenterDocs == nil { + if e.ComplexityRoot.Query.TrustCenterDocs == nil { break } @@ -37587,10 +37570,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true case "Query.trustCenterEntities": - if e.complexity.Query.TrustCenterEntities == nil { + if e.ComplexityRoot.Query.TrustCenterEntities == nil { break } @@ -37599,10 +37582,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterEntityOrder), args["where"].(*generated.TrustCenterEntityWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterEntityOrder), args["where"].(*generated.TrustCenterEntityWhereInput)), true case "Query.trustCenterEntity": - if e.complexity.Query.TrustCenterEntity == nil { + if e.ComplexityRoot.Query.TrustCenterEntity == nil { break } @@ -37611,10 +37594,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterEntity(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterEntity(childComplexity, args["id"].(string)), true case "Query.trustCenterEntitySearch": - if e.complexity.Query.TrustCenterEntitySearch == nil { + if e.ComplexityRoot.Query.TrustCenterEntitySearch == nil { break } @@ -37623,10 +37606,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterEntitySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.TrustCenterEntitySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.trustCenterFAQs": - if e.complexity.Query.TrustCenterFAQs == nil { + if e.ComplexityRoot.Query.TrustCenterFAQs == nil { break } @@ -37635,10 +37618,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterFAQs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterFAQOrder), args["where"].(*generated.TrustCenterFAQWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterFAQs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterFAQOrder), args["where"].(*generated.TrustCenterFAQWhereInput)), true case "Query.trustCenterFAQ": - if e.complexity.Query.TrustCenterFaq == nil { + if e.ComplexityRoot.Query.TrustCenterFaq == nil { break } @@ -37647,10 +37630,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterFaq(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterFaq(childComplexity, args["id"].(string)), true case "Query.trustCenterNDARequest": - if e.complexity.Query.TrustCenterNDARequest == nil { + if e.ComplexityRoot.Query.TrustCenterNDARequest == nil { break } @@ -37659,10 +37642,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterNDARequest(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterNDARequest(childComplexity, args["id"].(string)), true case "Query.trustCenterNdaRequests": - if e.complexity.Query.TrustCenterNdaRequests == nil { + if e.ComplexityRoot.Query.TrustCenterNdaRequests == nil { break } @@ -37671,10 +37654,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterNdaRequests(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterNDARequestOrder), args["where"].(*generated.TrustCenterNDARequestWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterNdaRequests(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterNDARequestOrder), args["where"].(*generated.TrustCenterNDARequestWhereInput)), true case "Query.trustCenterSetting": - if e.complexity.Query.TrustCenterSetting == nil { + if e.ComplexityRoot.Query.TrustCenterSetting == nil { break } @@ -37683,10 +37666,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterSetting(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterSetting(childComplexity, args["id"].(string)), true case "Query.trustCenterSettings": - if e.complexity.Query.TrustCenterSettings == nil { + if e.ComplexityRoot.Query.TrustCenterSettings == nil { break } @@ -37695,10 +37678,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSettingOrder), args["where"].(*generated.TrustCenterSettingWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSettingOrder), args["where"].(*generated.TrustCenterSettingWhereInput)), true case "Query.trustCenterSubprocessor": - if e.complexity.Query.TrustCenterSubprocessor == nil { + if e.ComplexityRoot.Query.TrustCenterSubprocessor == nil { break } @@ -37707,10 +37690,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterSubprocessor(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterSubprocessor(childComplexity, args["id"].(string)), true case "Query.trustCenterSubprocessors": - if e.complexity.Query.TrustCenterSubprocessors == nil { + if e.ComplexityRoot.Query.TrustCenterSubprocessors == nil { break } @@ -37719,10 +37702,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterSubprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), args["where"].(*generated.TrustCenterSubprocessorWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterSubprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), args["where"].(*generated.TrustCenterSubprocessorWhereInput)), true case "Query.trustCenterWatermarkConfig": - if e.complexity.Query.TrustCenterWatermarkConfig == nil { + if e.ComplexityRoot.Query.TrustCenterWatermarkConfig == nil { break } @@ -37731,10 +37714,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterWatermarkConfig(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.TrustCenterWatermarkConfig(childComplexity, args["id"].(string)), true case "Query.trustCenterWatermarkConfigs": - if e.complexity.Query.TrustCenterWatermarkConfigs == nil { + if e.ComplexityRoot.Query.TrustCenterWatermarkConfigs == nil { break } @@ -37743,10 +37726,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterWatermarkConfigs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterWatermarkConfigOrder), args["where"].(*generated.TrustCenterWatermarkConfigWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterWatermarkConfigs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterWatermarkConfigOrder), args["where"].(*generated.TrustCenterWatermarkConfigWhereInput)), true case "Query.trustCenters": - if e.complexity.Query.TrustCenters == nil { + if e.ComplexityRoot.Query.TrustCenters == nil { break } @@ -37755,10 +37738,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenters(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterOrder), args["where"].(*generated.TrustCenterWhereInput)), true + return e.ComplexityRoot.Query.TrustCenters(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterOrder), args["where"].(*generated.TrustCenterWhereInput)), true case "Query.user": - if e.complexity.Query.User == nil { + if e.ComplexityRoot.Query.User == nil { break } @@ -37767,10 +37750,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.User(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.User(childComplexity, args["id"].(string)), true case "Query.userSetting": - if e.complexity.Query.UserSetting == nil { + if e.ComplexityRoot.Query.UserSetting == nil { break } @@ -37779,10 +37762,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.UserSetting(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.UserSetting(childComplexity, args["id"].(string)), true case "Query.userSettings": - if e.complexity.Query.UserSettings == nil { + if e.ComplexityRoot.Query.UserSettings == nil { break } @@ -37791,10 +37774,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.UserSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserSettingOrder), args["where"].(*generated.UserSettingWhereInput)), true + return e.ComplexityRoot.Query.UserSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserSettingOrder), args["where"].(*generated.UserSettingWhereInput)), true case "Query.users": - if e.complexity.Query.Users == nil { + if e.ComplexityRoot.Query.Users == nil { break } @@ -37803,10 +37786,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true + return e.ComplexityRoot.Query.Users(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.UserOrder), args["where"].(*generated.UserWhereInput)), true case "Query.vulnerabilities": - if e.complexity.Query.Vulnerabilities == nil { + if e.ComplexityRoot.Query.Vulnerabilities == nil { break } @@ -37815,10 +37798,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Query.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "Query.vulnerability": - if e.complexity.Query.Vulnerability == nil { + if e.ComplexityRoot.Query.Vulnerability == nil { break } @@ -37827,10 +37810,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Vulnerability(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Vulnerability(childComplexity, args["id"].(string)), true case "Query.vulnerabilitySearch": - if e.complexity.Query.VulnerabilitySearch == nil { + if e.ComplexityRoot.Query.VulnerabilitySearch == nil { break } @@ -37839,10 +37822,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.VulnerabilitySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true + return e.ComplexityRoot.Query.VulnerabilitySearch(childComplexity, args["query"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int)), true case "Query.vulnerabilitySummary": - if e.complexity.Query.VulnerabilitySummary == nil { + if e.ComplexityRoot.Query.VulnerabilitySummary == nil { break } @@ -37851,10 +37834,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.VulnerabilitySummary(childComplexity, args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Query.VulnerabilitySummary(childComplexity, args["where"].(*generated.VulnerabilityWhereInput)), true case "Query.webauthns": - if e.complexity.Query.Webauthns == nil { + if e.ComplexityRoot.Query.Webauthns == nil { break } @@ -37863,10 +37846,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Webauthns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.WebauthnOrder), args["where"].(*generated.WebauthnWhereInput)), true + return e.ComplexityRoot.Query.Webauthns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.WebauthnOrder), args["where"].(*generated.WebauthnWhereInput)), true case "Query.workflowAssignment": - if e.complexity.Query.WorkflowAssignment == nil { + if e.ComplexityRoot.Query.WorkflowAssignment == nil { break } @@ -37875,10 +37858,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowAssignment(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.WorkflowAssignment(childComplexity, args["id"].(string)), true case "Query.workflowAssignmentTarget": - if e.complexity.Query.WorkflowAssignmentTarget == nil { + if e.ComplexityRoot.Query.WorkflowAssignmentTarget == nil { break } @@ -37887,10 +37870,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowAssignmentTarget(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.WorkflowAssignmentTarget(childComplexity, args["id"].(string)), true case "Query.workflowAssignmentTargets": - if e.complexity.Query.WorkflowAssignmentTargets == nil { + if e.ComplexityRoot.Query.WorkflowAssignmentTargets == nil { break } @@ -37899,10 +37882,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowAssignmentTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), args["where"].(*generated.WorkflowAssignmentTargetWhereInput)), true + return e.ComplexityRoot.Query.WorkflowAssignmentTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), args["where"].(*generated.WorkflowAssignmentTargetWhereInput)), true case "Query.workflowAssignments": - if e.complexity.Query.WorkflowAssignments == nil { + if e.ComplexityRoot.Query.WorkflowAssignments == nil { break } @@ -37911,10 +37894,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true + return e.ComplexityRoot.Query.WorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true case "Query.workflowDefinition": - if e.complexity.Query.WorkflowDefinition == nil { + if e.ComplexityRoot.Query.WorkflowDefinition == nil { break } @@ -37923,10 +37906,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowDefinition(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.WorkflowDefinition(childComplexity, args["id"].(string)), true case "Query.workflowDefinitions": - if e.complexity.Query.WorkflowDefinitions == nil { + if e.ComplexityRoot.Query.WorkflowDefinitions == nil { break } @@ -37935,10 +37918,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowDefinitionOrder), args["where"].(*generated.WorkflowDefinitionWhereInput)), true + return e.ComplexityRoot.Query.WorkflowDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowDefinitionOrder), args["where"].(*generated.WorkflowDefinitionWhereInput)), true case "Query.workflowEvent": - if e.complexity.Query.WorkflowEvent == nil { + if e.ComplexityRoot.Query.WorkflowEvent == nil { break } @@ -37947,10 +37930,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowEvent(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.WorkflowEvent(childComplexity, args["id"].(string)), true case "Query.workflowEventTimeline": - if e.complexity.Query.WorkflowEventTimeline == nil { + if e.ComplexityRoot.Query.WorkflowEventTimeline == nil { break } @@ -37959,10 +37942,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowEventTimeline(childComplexity, args["workflowInstanceID"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.Query.WorkflowEventTimeline(childComplexity, args["workflowInstanceID"].(string), args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "Query.workflowEvents": - if e.complexity.Query.WorkflowEvents == nil { + if e.ComplexityRoot.Query.WorkflowEvents == nil { break } @@ -37971,10 +37954,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowEvents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput)), true + return e.ComplexityRoot.Query.WorkflowEvents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput)), true case "Query.workflowInstance": - if e.complexity.Query.WorkflowInstance == nil { + if e.ComplexityRoot.Query.WorkflowInstance == nil { break } @@ -37983,10 +37966,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowInstance(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.WorkflowInstance(childComplexity, args["id"].(string)), true case "Query.workflowInstances": - if e.complexity.Query.WorkflowInstances == nil { + if e.ComplexityRoot.Query.WorkflowInstances == nil { break } @@ -37995,17 +37978,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowInstances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowInstanceOrder), args["where"].(*generated.WorkflowInstanceWhereInput)), true + return e.ComplexityRoot.Query.WorkflowInstances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowInstanceOrder), args["where"].(*generated.WorkflowInstanceWhereInput)), true case "Query.workflowMetadata": - if e.complexity.Query.WorkflowMetadata == nil { + if e.ComplexityRoot.Query.WorkflowMetadata == nil { break } - return e.complexity.Query.WorkflowMetadata(childComplexity), true + return e.ComplexityRoot.Query.WorkflowMetadata(childComplexity), true case "Query.workflowObjectRef": - if e.complexity.Query.WorkflowObjectRef == nil { + if e.ComplexityRoot.Query.WorkflowObjectRef == nil { break } @@ -38014,10 +37997,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowObjectRef(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.WorkflowObjectRef(childComplexity, args["id"].(string)), true case "Query.workflowObjectRefs": - if e.complexity.Query.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Query.WorkflowObjectRefs == nil { break } @@ -38026,10 +38009,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Query.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "Query.workflowProposal": - if e.complexity.Query.WorkflowProposal == nil { + if e.ComplexityRoot.Query.WorkflowProposal == nil { break } @@ -38038,10 +38021,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowProposal(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.WorkflowProposal(childComplexity, args["id"].(string)), true case "Query.workflowProposalsForObject": - if e.complexity.Query.WorkflowProposalsForObject == nil { + if e.ComplexityRoot.Query.WorkflowProposalsForObject == nil { break } @@ -38050,10 +38033,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowProposalsForObject(childComplexity, args["objectType"].(string), args["objectID"].(string), args["includeStates"].([]enums.WorkflowProposalState)), true + return e.ComplexityRoot.Query.WorkflowProposalsForObject(childComplexity, args["objectType"].(string), args["objectID"].(string), args["includeStates"].([]enums.WorkflowProposalState)), true case "Remediation.actionPlans": - if e.complexity.Remediation.ActionPlans == nil { + if e.ComplexityRoot.Remediation.ActionPlans == nil { break } @@ -38062,10 +38045,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Remediation.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Remediation.assets": - if e.complexity.Remediation.Assets == nil { + if e.ComplexityRoot.Remediation.Assets == nil { break } @@ -38074,10 +38057,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Remediation.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Remediation.blockedGroups": - if e.complexity.Remediation.BlockedGroups == nil { + if e.ComplexityRoot.Remediation.BlockedGroups == nil { break } @@ -38086,10 +38069,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Remediation.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Remediation.comments": - if e.complexity.Remediation.Comments == nil { + if e.ComplexityRoot.Remediation.Comments == nil { break } @@ -38098,17 +38081,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Remediation.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Remediation.completedAt": - if e.complexity.Remediation.CompletedAt == nil { + if e.ComplexityRoot.Remediation.CompletedAt == nil { break } - return e.complexity.Remediation.CompletedAt(childComplexity), true + return e.ComplexityRoot.Remediation.CompletedAt(childComplexity), true case "Remediation.controls": - if e.complexity.Remediation.Controls == nil { + if e.ComplexityRoot.Remediation.Controls == nil { break } @@ -38117,38 +38100,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Remediation.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Remediation.createdAt": - if e.complexity.Remediation.CreatedAt == nil { + if e.ComplexityRoot.Remediation.CreatedAt == nil { break } - return e.complexity.Remediation.CreatedAt(childComplexity), true + return e.ComplexityRoot.Remediation.CreatedAt(childComplexity), true case "Remediation.createdBy": - if e.complexity.Remediation.CreatedBy == nil { + if e.ComplexityRoot.Remediation.CreatedBy == nil { break } - return e.complexity.Remediation.CreatedBy(childComplexity), true + return e.ComplexityRoot.Remediation.CreatedBy(childComplexity), true case "Remediation.displayID": - if e.complexity.Remediation.DisplayID == nil { + if e.ComplexityRoot.Remediation.DisplayID == nil { break } - return e.complexity.Remediation.DisplayID(childComplexity), true + return e.ComplexityRoot.Remediation.DisplayID(childComplexity), true case "Remediation.dueAt": - if e.complexity.Remediation.DueAt == nil { + if e.ComplexityRoot.Remediation.DueAt == nil { break } - return e.complexity.Remediation.DueAt(childComplexity), true + return e.ComplexityRoot.Remediation.DueAt(childComplexity), true case "Remediation.editors": - if e.complexity.Remediation.Editors == nil { + if e.ComplexityRoot.Remediation.Editors == nil { break } @@ -38157,10 +38140,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Remediation.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Remediation.entities": - if e.complexity.Remediation.Entities == nil { + if e.ComplexityRoot.Remediation.Entities == nil { break } @@ -38169,66 +38152,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Remediation.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Remediation.environment": - if e.complexity.Remediation.Environment == nil { + if e.ComplexityRoot.Remediation.Environment == nil { break } - return e.complexity.Remediation.Environment(childComplexity), true + return e.ComplexityRoot.Remediation.Environment(childComplexity), true case "Remediation.environmentID": - if e.complexity.Remediation.EnvironmentID == nil { + if e.ComplexityRoot.Remediation.EnvironmentID == nil { break } - return e.complexity.Remediation.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Remediation.EnvironmentID(childComplexity), true case "Remediation.environmentName": - if e.complexity.Remediation.EnvironmentName == nil { + if e.ComplexityRoot.Remediation.EnvironmentName == nil { break } - return e.complexity.Remediation.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Remediation.EnvironmentName(childComplexity), true case "Remediation.error": - if e.complexity.Remediation.Error == nil { + if e.ComplexityRoot.Remediation.Error == nil { break } - return e.complexity.Remediation.Error(childComplexity), true + return e.ComplexityRoot.Remediation.Error(childComplexity), true case "Remediation.explanation": - if e.complexity.Remediation.Explanation == nil { + if e.ComplexityRoot.Remediation.Explanation == nil { break } - return e.complexity.Remediation.Explanation(childComplexity), true + return e.ComplexityRoot.Remediation.Explanation(childComplexity), true case "Remediation.externalID": - if e.complexity.Remediation.ExternalID == nil { + if e.ComplexityRoot.Remediation.ExternalID == nil { break } - return e.complexity.Remediation.ExternalID(childComplexity), true + return e.ComplexityRoot.Remediation.ExternalID(childComplexity), true case "Remediation.externalOwnerID": - if e.complexity.Remediation.ExternalOwnerID == nil { + if e.ComplexityRoot.Remediation.ExternalOwnerID == nil { break } - return e.complexity.Remediation.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.Remediation.ExternalOwnerID(childComplexity), true case "Remediation.externalURI": - if e.complexity.Remediation.ExternalURI == nil { + if e.ComplexityRoot.Remediation.ExternalURI == nil { break } - return e.complexity.Remediation.ExternalURI(childComplexity), true + return e.ComplexityRoot.Remediation.ExternalURI(childComplexity), true case "Remediation.files": - if e.complexity.Remediation.Files == nil { + if e.ComplexityRoot.Remediation.Files == nil { break } @@ -38237,10 +38220,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Remediation.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Remediation.findings": - if e.complexity.Remediation.Findings == nil { + if e.ComplexityRoot.Remediation.Findings == nil { break } @@ -38249,24 +38232,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.Remediation.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "Remediation.id": - if e.complexity.Remediation.ID == nil { + if e.ComplexityRoot.Remediation.ID == nil { break } - return e.complexity.Remediation.ID(childComplexity), true + return e.ComplexityRoot.Remediation.ID(childComplexity), true case "Remediation.instructions": - if e.complexity.Remediation.Instructions == nil { + if e.ComplexityRoot.Remediation.Instructions == nil { break } - return e.complexity.Remediation.Instructions(childComplexity), true + return e.ComplexityRoot.Remediation.Instructions(childComplexity), true case "Remediation.integrations": - if e.complexity.Remediation.Integrations == nil { + if e.ComplexityRoot.Remediation.Integrations == nil { break } @@ -38275,59 +38258,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Remediation.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Remediation.intent": - if e.complexity.Remediation.Intent == nil { + if e.ComplexityRoot.Remediation.Intent == nil { break } - return e.complexity.Remediation.Intent(childComplexity), true + return e.ComplexityRoot.Remediation.Intent(childComplexity), true case "Remediation.internalNotes": - if e.complexity.Remediation.InternalNotes == nil { + if e.ComplexityRoot.Remediation.InternalNotes == nil { break } - return e.complexity.Remediation.InternalNotes(childComplexity), true + return e.ComplexityRoot.Remediation.InternalNotes(childComplexity), true case "Remediation.metadata": - if e.complexity.Remediation.Metadata == nil { + if e.ComplexityRoot.Remediation.Metadata == nil { break } - return e.complexity.Remediation.Metadata(childComplexity), true + return e.ComplexityRoot.Remediation.Metadata(childComplexity), true case "Remediation.owner": - if e.complexity.Remediation.Owner == nil { + if e.ComplexityRoot.Remediation.Owner == nil { break } - return e.complexity.Remediation.Owner(childComplexity), true + return e.ComplexityRoot.Remediation.Owner(childComplexity), true case "Remediation.ownerID": - if e.complexity.Remediation.OwnerID == nil { + if e.ComplexityRoot.Remediation.OwnerID == nil { break } - return e.complexity.Remediation.OwnerID(childComplexity), true + return e.ComplexityRoot.Remediation.OwnerID(childComplexity), true case "Remediation.ownerReference": - if e.complexity.Remediation.OwnerReference == nil { + if e.ComplexityRoot.Remediation.OwnerReference == nil { break } - return e.complexity.Remediation.OwnerReference(childComplexity), true + return e.ComplexityRoot.Remediation.OwnerReference(childComplexity), true case "Remediation.prGeneratedAt": - if e.complexity.Remediation.PrGeneratedAt == nil { + if e.ComplexityRoot.Remediation.PrGeneratedAt == nil { break } - return e.complexity.Remediation.PrGeneratedAt(childComplexity), true + return e.ComplexityRoot.Remediation.PrGeneratedAt(childComplexity), true case "Remediation.programs": - if e.complexity.Remediation.Programs == nil { + if e.ComplexityRoot.Remediation.Programs == nil { break } @@ -38336,24 +38319,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Remediation.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Remediation.pullRequestURI": - if e.complexity.Remediation.PullRequestURI == nil { + if e.ComplexityRoot.Remediation.PullRequestURI == nil { break } - return e.complexity.Remediation.PullRequestURI(childComplexity), true + return e.ComplexityRoot.Remediation.PullRequestURI(childComplexity), true case "Remediation.repositoryURI": - if e.complexity.Remediation.RepositoryURI == nil { + if e.ComplexityRoot.Remediation.RepositoryURI == nil { break } - return e.complexity.Remediation.RepositoryURI(childComplexity), true + return e.ComplexityRoot.Remediation.RepositoryURI(childComplexity), true case "Remediation.reviews": - if e.complexity.Remediation.Reviews == nil { + if e.ComplexityRoot.Remediation.Reviews == nil { break } @@ -38362,10 +38345,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true + return e.ComplexityRoot.Remediation.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true case "Remediation.risks": - if e.complexity.Remediation.Risks == nil { + if e.ComplexityRoot.Remediation.Risks == nil { break } @@ -38374,10 +38357,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Remediation.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Remediation.scans": - if e.complexity.Remediation.Scans == nil { + if e.ComplexityRoot.Remediation.Scans == nil { break } @@ -38386,45 +38369,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Remediation.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Remediation.scope": - if e.complexity.Remediation.Scope == nil { + if e.ComplexityRoot.Remediation.Scope == nil { break } - return e.complexity.Remediation.Scope(childComplexity), true + return e.ComplexityRoot.Remediation.Scope(childComplexity), true case "Remediation.scopeID": - if e.complexity.Remediation.ScopeID == nil { + if e.ComplexityRoot.Remediation.ScopeID == nil { break } - return e.complexity.Remediation.ScopeID(childComplexity), true + return e.ComplexityRoot.Remediation.ScopeID(childComplexity), true case "Remediation.scopeName": - if e.complexity.Remediation.ScopeName == nil { + if e.ComplexityRoot.Remediation.ScopeName == nil { break } - return e.complexity.Remediation.ScopeName(childComplexity), true + return e.ComplexityRoot.Remediation.ScopeName(childComplexity), true case "Remediation.source": - if e.complexity.Remediation.Source == nil { + if e.ComplexityRoot.Remediation.Source == nil { break } - return e.complexity.Remediation.Source(childComplexity), true + return e.ComplexityRoot.Remediation.Source(childComplexity), true case "Remediation.state": - if e.complexity.Remediation.State == nil { + if e.ComplexityRoot.Remediation.State == nil { break } - return e.complexity.Remediation.State(childComplexity), true + return e.ComplexityRoot.Remediation.State(childComplexity), true case "Remediation.subcontrols": - if e.complexity.Remediation.Subcontrols == nil { + if e.ComplexityRoot.Remediation.Subcontrols == nil { break } @@ -38433,38 +38416,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Remediation.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Remediation.summary": - if e.complexity.Remediation.Summary == nil { + if e.ComplexityRoot.Remediation.Summary == nil { break } - return e.complexity.Remediation.Summary(childComplexity), true + return e.ComplexityRoot.Remediation.Summary(childComplexity), true case "Remediation.systemInternalID": - if e.complexity.Remediation.SystemInternalID == nil { + if e.ComplexityRoot.Remediation.SystemInternalID == nil { break } - return e.complexity.Remediation.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Remediation.SystemInternalID(childComplexity), true case "Remediation.systemOwned": - if e.complexity.Remediation.SystemOwned == nil { + if e.ComplexityRoot.Remediation.SystemOwned == nil { break } - return e.complexity.Remediation.SystemOwned(childComplexity), true + return e.ComplexityRoot.Remediation.SystemOwned(childComplexity), true case "Remediation.tags": - if e.complexity.Remediation.Tags == nil { + if e.ComplexityRoot.Remediation.Tags == nil { break } - return e.complexity.Remediation.Tags(childComplexity), true + return e.ComplexityRoot.Remediation.Tags(childComplexity), true case "Remediation.tasks": - if e.complexity.Remediation.Tasks == nil { + if e.ComplexityRoot.Remediation.Tasks == nil { break } @@ -38473,38 +38456,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Remediation.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Remediation.ticketReference": - if e.complexity.Remediation.TicketReference == nil { + if e.ComplexityRoot.Remediation.TicketReference == nil { break } - return e.complexity.Remediation.TicketReference(childComplexity), true + return e.ComplexityRoot.Remediation.TicketReference(childComplexity), true case "Remediation.title": - if e.complexity.Remediation.Title == nil { + if e.ComplexityRoot.Remediation.Title == nil { break } - return e.complexity.Remediation.Title(childComplexity), true + return e.ComplexityRoot.Remediation.Title(childComplexity), true case "Remediation.updatedAt": - if e.complexity.Remediation.UpdatedAt == nil { + if e.ComplexityRoot.Remediation.UpdatedAt == nil { break } - return e.complexity.Remediation.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Remediation.UpdatedAt(childComplexity), true case "Remediation.updatedBy": - if e.complexity.Remediation.UpdatedBy == nil { + if e.ComplexityRoot.Remediation.UpdatedBy == nil { break } - return e.complexity.Remediation.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Remediation.UpdatedBy(childComplexity), true case "Remediation.viewers": - if e.complexity.Remediation.Viewers == nil { + if e.ComplexityRoot.Remediation.Viewers == nil { break } @@ -38513,10 +38496,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Remediation.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Remediation.vulnerabilities": - if e.complexity.Remediation.Vulnerabilities == nil { + if e.ComplexityRoot.Remediation.Vulnerabilities == nil { break } @@ -38525,73 +38508,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Remediation.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Remediation.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "RemediationBulkCreatePayload.remediations": - if e.complexity.RemediationBulkCreatePayload.Remediations == nil { + if e.ComplexityRoot.RemediationBulkCreatePayload.Remediations == nil { break } - return e.complexity.RemediationBulkCreatePayload.Remediations(childComplexity), true + return e.ComplexityRoot.RemediationBulkCreatePayload.Remediations(childComplexity), true case "RemediationConnection.edges": - if e.complexity.RemediationConnection.Edges == nil { + if e.ComplexityRoot.RemediationConnection.Edges == nil { break } - return e.complexity.RemediationConnection.Edges(childComplexity), true + return e.ComplexityRoot.RemediationConnection.Edges(childComplexity), true case "RemediationConnection.pageInfo": - if e.complexity.RemediationConnection.PageInfo == nil { + if e.ComplexityRoot.RemediationConnection.PageInfo == nil { break } - return e.complexity.RemediationConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.RemediationConnection.PageInfo(childComplexity), true case "RemediationConnection.totalCount": - if e.complexity.RemediationConnection.TotalCount == nil { + if e.ComplexityRoot.RemediationConnection.TotalCount == nil { break } - return e.complexity.RemediationConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.RemediationConnection.TotalCount(childComplexity), true case "RemediationCreatePayload.remediation": - if e.complexity.RemediationCreatePayload.Remediation == nil { + if e.ComplexityRoot.RemediationCreatePayload.Remediation == nil { break } - return e.complexity.RemediationCreatePayload.Remediation(childComplexity), true + return e.ComplexityRoot.RemediationCreatePayload.Remediation(childComplexity), true case "RemediationDeletePayload.deletedID": - if e.complexity.RemediationDeletePayload.DeletedID == nil { + if e.ComplexityRoot.RemediationDeletePayload.DeletedID == nil { break } - return e.complexity.RemediationDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.RemediationDeletePayload.DeletedID(childComplexity), true case "RemediationEdge.cursor": - if e.complexity.RemediationEdge.Cursor == nil { + if e.ComplexityRoot.RemediationEdge.Cursor == nil { break } - return e.complexity.RemediationEdge.Cursor(childComplexity), true + return e.ComplexityRoot.RemediationEdge.Cursor(childComplexity), true case "RemediationEdge.node": - if e.complexity.RemediationEdge.Node == nil { + if e.ComplexityRoot.RemediationEdge.Node == nil { break } - return e.complexity.RemediationEdge.Node(childComplexity), true + return e.ComplexityRoot.RemediationEdge.Node(childComplexity), true case "RemediationUpdatePayload.remediation": - if e.complexity.RemediationUpdatePayload.Remediation == nil { + if e.ComplexityRoot.RemediationUpdatePayload.Remediation == nil { break } - return e.complexity.RemediationUpdatePayload.Remediation(childComplexity), true + return e.ComplexityRoot.RemediationUpdatePayload.Remediation(childComplexity), true case "Review.actionPlans": - if e.complexity.Review.ActionPlans == nil { + if e.ComplexityRoot.Review.ActionPlans == nil { break } @@ -38600,24 +38583,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Review.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Review.approved": - if e.complexity.Review.Approved == nil { + if e.ComplexityRoot.Review.Approved == nil { break } - return e.complexity.Review.Approved(childComplexity), true + return e.ComplexityRoot.Review.Approved(childComplexity), true case "Review.approvedAt": - if e.complexity.Review.ApprovedAt == nil { + if e.ComplexityRoot.Review.ApprovedAt == nil { break } - return e.complexity.Review.ApprovedAt(childComplexity), true + return e.ComplexityRoot.Review.ApprovedAt(childComplexity), true case "Review.assets": - if e.complexity.Review.Assets == nil { + if e.ComplexityRoot.Review.Assets == nil { break } @@ -38626,10 +38609,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Review.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Review.blockedGroups": - if e.complexity.Review.BlockedGroups == nil { + if e.ComplexityRoot.Review.BlockedGroups == nil { break } @@ -38638,24 +38621,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Review.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Review.category": - if e.complexity.Review.Category == nil { + if e.ComplexityRoot.Review.Category == nil { break } - return e.complexity.Review.Category(childComplexity), true + return e.ComplexityRoot.Review.Category(childComplexity), true case "Review.classification": - if e.complexity.Review.Classification == nil { + if e.ComplexityRoot.Review.Classification == nil { break } - return e.complexity.Review.Classification(childComplexity), true + return e.ComplexityRoot.Review.Classification(childComplexity), true case "Review.comments": - if e.complexity.Review.Comments == nil { + if e.ComplexityRoot.Review.Comments == nil { break } @@ -38664,10 +38647,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Review.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Review.controls": - if e.complexity.Review.Controls == nil { + if e.ComplexityRoot.Review.Controls == nil { break } @@ -38676,31 +38659,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Review.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Review.createdAt": - if e.complexity.Review.CreatedAt == nil { + if e.ComplexityRoot.Review.CreatedAt == nil { break } - return e.complexity.Review.CreatedAt(childComplexity), true + return e.ComplexityRoot.Review.CreatedAt(childComplexity), true case "Review.createdBy": - if e.complexity.Review.CreatedBy == nil { + if e.ComplexityRoot.Review.CreatedBy == nil { break } - return e.complexity.Review.CreatedBy(childComplexity), true + return e.ComplexityRoot.Review.CreatedBy(childComplexity), true case "Review.details": - if e.complexity.Review.Details == nil { + if e.ComplexityRoot.Review.Details == nil { break } - return e.complexity.Review.Details(childComplexity), true + return e.ComplexityRoot.Review.Details(childComplexity), true case "Review.editors": - if e.complexity.Review.Editors == nil { + if e.ComplexityRoot.Review.Editors == nil { break } @@ -38709,10 +38692,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Review.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Review.entities": - if e.complexity.Review.Entities == nil { + if e.ComplexityRoot.Review.Entities == nil { break } @@ -38721,52 +38704,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Review.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Review.environment": - if e.complexity.Review.Environment == nil { + if e.ComplexityRoot.Review.Environment == nil { break } - return e.complexity.Review.Environment(childComplexity), true + return e.ComplexityRoot.Review.Environment(childComplexity), true case "Review.environmentID": - if e.complexity.Review.EnvironmentID == nil { + if e.ComplexityRoot.Review.EnvironmentID == nil { break } - return e.complexity.Review.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Review.EnvironmentID(childComplexity), true case "Review.environmentName": - if e.complexity.Review.EnvironmentName == nil { + if e.ComplexityRoot.Review.EnvironmentName == nil { break } - return e.complexity.Review.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Review.EnvironmentName(childComplexity), true case "Review.externalID": - if e.complexity.Review.ExternalID == nil { + if e.ComplexityRoot.Review.ExternalID == nil { break } - return e.complexity.Review.ExternalID(childComplexity), true + return e.ComplexityRoot.Review.ExternalID(childComplexity), true case "Review.externalOwnerID": - if e.complexity.Review.ExternalOwnerID == nil { + if e.ComplexityRoot.Review.ExternalOwnerID == nil { break } - return e.complexity.Review.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.Review.ExternalOwnerID(childComplexity), true case "Review.externalURI": - if e.complexity.Review.ExternalURI == nil { + if e.ComplexityRoot.Review.ExternalURI == nil { break } - return e.complexity.Review.ExternalURI(childComplexity), true + return e.ComplexityRoot.Review.ExternalURI(childComplexity), true case "Review.files": - if e.complexity.Review.Files == nil { + if e.ComplexityRoot.Review.Files == nil { break } @@ -38775,10 +38758,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Review.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Review.findings": - if e.complexity.Review.Findings == nil { + if e.ComplexityRoot.Review.Findings == nil { break } @@ -38787,17 +38770,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.Review.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "Review.id": - if e.complexity.Review.ID == nil { + if e.ComplexityRoot.Review.ID == nil { break } - return e.complexity.Review.ID(childComplexity), true + return e.ComplexityRoot.Review.ID(childComplexity), true case "Review.integrations": - if e.complexity.Review.Integrations == nil { + if e.ComplexityRoot.Review.Integrations == nil { break } @@ -38806,38 +38789,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Review.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Review.internalNotes": - if e.complexity.Review.InternalNotes == nil { + if e.ComplexityRoot.Review.InternalNotes == nil { break } - return e.complexity.Review.InternalNotes(childComplexity), true + return e.ComplexityRoot.Review.InternalNotes(childComplexity), true case "Review.metadata": - if e.complexity.Review.Metadata == nil { + if e.ComplexityRoot.Review.Metadata == nil { break } - return e.complexity.Review.Metadata(childComplexity), true + return e.ComplexityRoot.Review.Metadata(childComplexity), true case "Review.owner": - if e.complexity.Review.Owner == nil { + if e.ComplexityRoot.Review.Owner == nil { break } - return e.complexity.Review.Owner(childComplexity), true + return e.ComplexityRoot.Review.Owner(childComplexity), true case "Review.ownerID": - if e.complexity.Review.OwnerID == nil { + if e.ComplexityRoot.Review.OwnerID == nil { break } - return e.complexity.Review.OwnerID(childComplexity), true + return e.ComplexityRoot.Review.OwnerID(childComplexity), true case "Review.programs": - if e.complexity.Review.Programs == nil { + if e.ComplexityRoot.Review.Programs == nil { break } @@ -38846,17 +38829,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Review.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Review.rawPayload": - if e.complexity.Review.RawPayload == nil { + if e.ComplexityRoot.Review.RawPayload == nil { break } - return e.complexity.Review.RawPayload(childComplexity), true + return e.ComplexityRoot.Review.RawPayload(childComplexity), true case "Review.remediations": - if e.complexity.Review.Remediations == nil { + if e.ComplexityRoot.Review.Remediations == nil { break } @@ -38865,45 +38848,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.Review.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "Review.reportedAt": - if e.complexity.Review.ReportedAt == nil { + if e.ComplexityRoot.Review.ReportedAt == nil { break } - return e.complexity.Review.ReportedAt(childComplexity), true + return e.ComplexityRoot.Review.ReportedAt(childComplexity), true case "Review.reporter": - if e.complexity.Review.Reporter == nil { + if e.ComplexityRoot.Review.Reporter == nil { break } - return e.complexity.Review.Reporter(childComplexity), true + return e.ComplexityRoot.Review.Reporter(childComplexity), true case "Review.reviewedAt": - if e.complexity.Review.ReviewedAt == nil { + if e.ComplexityRoot.Review.ReviewedAt == nil { break } - return e.complexity.Review.ReviewedAt(childComplexity), true + return e.ComplexityRoot.Review.ReviewedAt(childComplexity), true case "Review.reviewer": - if e.complexity.Review.Reviewer == nil { + if e.ComplexityRoot.Review.Reviewer == nil { break } - return e.complexity.Review.Reviewer(childComplexity), true + return e.ComplexityRoot.Review.Reviewer(childComplexity), true case "Review.reviewerID": - if e.complexity.Review.ReviewerID == nil { + if e.ComplexityRoot.Review.ReviewerID == nil { break } - return e.complexity.Review.ReviewerID(childComplexity), true + return e.ComplexityRoot.Review.ReviewerID(childComplexity), true case "Review.risks": - if e.complexity.Review.Risks == nil { + if e.ComplexityRoot.Review.Risks == nil { break } @@ -38912,45 +38895,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Review.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Review.scope": - if e.complexity.Review.Scope == nil { + if e.ComplexityRoot.Review.Scope == nil { break } - return e.complexity.Review.Scope(childComplexity), true + return e.ComplexityRoot.Review.Scope(childComplexity), true case "Review.scopeID": - if e.complexity.Review.ScopeID == nil { + if e.ComplexityRoot.Review.ScopeID == nil { break } - return e.complexity.Review.ScopeID(childComplexity), true + return e.ComplexityRoot.Review.ScopeID(childComplexity), true case "Review.scopeName": - if e.complexity.Review.ScopeName == nil { + if e.ComplexityRoot.Review.ScopeName == nil { break } - return e.complexity.Review.ScopeName(childComplexity), true + return e.ComplexityRoot.Review.ScopeName(childComplexity), true case "Review.source": - if e.complexity.Review.Source == nil { + if e.ComplexityRoot.Review.Source == nil { break } - return e.complexity.Review.Source(childComplexity), true + return e.ComplexityRoot.Review.Source(childComplexity), true case "Review.state": - if e.complexity.Review.State == nil { + if e.ComplexityRoot.Review.State == nil { break } - return e.complexity.Review.State(childComplexity), true + return e.ComplexityRoot.Review.State(childComplexity), true case "Review.subcontrols": - if e.complexity.Review.Subcontrols == nil { + if e.ComplexityRoot.Review.Subcontrols == nil { break } @@ -38959,38 +38942,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Review.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Review.summary": - if e.complexity.Review.Summary == nil { + if e.ComplexityRoot.Review.Summary == nil { break } - return e.complexity.Review.Summary(childComplexity), true + return e.ComplexityRoot.Review.Summary(childComplexity), true case "Review.systemInternalID": - if e.complexity.Review.SystemInternalID == nil { + if e.ComplexityRoot.Review.SystemInternalID == nil { break } - return e.complexity.Review.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Review.SystemInternalID(childComplexity), true case "Review.systemOwned": - if e.complexity.Review.SystemOwned == nil { + if e.ComplexityRoot.Review.SystemOwned == nil { break } - return e.complexity.Review.SystemOwned(childComplexity), true + return e.ComplexityRoot.Review.SystemOwned(childComplexity), true case "Review.tags": - if e.complexity.Review.Tags == nil { + if e.ComplexityRoot.Review.Tags == nil { break } - return e.complexity.Review.Tags(childComplexity), true + return e.ComplexityRoot.Review.Tags(childComplexity), true case "Review.tasks": - if e.complexity.Review.Tasks == nil { + if e.ComplexityRoot.Review.Tasks == nil { break } @@ -38999,31 +38982,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Review.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Review.title": - if e.complexity.Review.Title == nil { + if e.ComplexityRoot.Review.Title == nil { break } - return e.complexity.Review.Title(childComplexity), true + return e.ComplexityRoot.Review.Title(childComplexity), true case "Review.updatedAt": - if e.complexity.Review.UpdatedAt == nil { + if e.ComplexityRoot.Review.UpdatedAt == nil { break } - return e.complexity.Review.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Review.UpdatedAt(childComplexity), true case "Review.updatedBy": - if e.complexity.Review.UpdatedBy == nil { + if e.ComplexityRoot.Review.UpdatedBy == nil { break } - return e.complexity.Review.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Review.UpdatedBy(childComplexity), true case "Review.viewers": - if e.complexity.Review.Viewers == nil { + if e.ComplexityRoot.Review.Viewers == nil { break } @@ -39032,10 +39015,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Review.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Review.vulnerabilities": - if e.complexity.Review.Vulnerabilities == nil { + if e.ComplexityRoot.Review.Vulnerabilities == nil { break } @@ -39044,73 +39027,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Review.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Review.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "ReviewBulkCreatePayload.reviews": - if e.complexity.ReviewBulkCreatePayload.Reviews == nil { + if e.ComplexityRoot.ReviewBulkCreatePayload.Reviews == nil { break } - return e.complexity.ReviewBulkCreatePayload.Reviews(childComplexity), true + return e.ComplexityRoot.ReviewBulkCreatePayload.Reviews(childComplexity), true case "ReviewConnection.edges": - if e.complexity.ReviewConnection.Edges == nil { + if e.ComplexityRoot.ReviewConnection.Edges == nil { break } - return e.complexity.ReviewConnection.Edges(childComplexity), true + return e.ComplexityRoot.ReviewConnection.Edges(childComplexity), true case "ReviewConnection.pageInfo": - if e.complexity.ReviewConnection.PageInfo == nil { + if e.ComplexityRoot.ReviewConnection.PageInfo == nil { break } - return e.complexity.ReviewConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ReviewConnection.PageInfo(childComplexity), true case "ReviewConnection.totalCount": - if e.complexity.ReviewConnection.TotalCount == nil { + if e.ComplexityRoot.ReviewConnection.TotalCount == nil { break } - return e.complexity.ReviewConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ReviewConnection.TotalCount(childComplexity), true case "ReviewCreatePayload.review": - if e.complexity.ReviewCreatePayload.Review == nil { + if e.ComplexityRoot.ReviewCreatePayload.Review == nil { break } - return e.complexity.ReviewCreatePayload.Review(childComplexity), true + return e.ComplexityRoot.ReviewCreatePayload.Review(childComplexity), true case "ReviewDeletePayload.deletedID": - if e.complexity.ReviewDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ReviewDeletePayload.DeletedID == nil { break } - return e.complexity.ReviewDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ReviewDeletePayload.DeletedID(childComplexity), true case "ReviewEdge.cursor": - if e.complexity.ReviewEdge.Cursor == nil { + if e.ComplexityRoot.ReviewEdge.Cursor == nil { break } - return e.complexity.ReviewEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ReviewEdge.Cursor(childComplexity), true case "ReviewEdge.node": - if e.complexity.ReviewEdge.Node == nil { + if e.ComplexityRoot.ReviewEdge.Node == nil { break } - return e.complexity.ReviewEdge.Node(childComplexity), true + return e.ComplexityRoot.ReviewEdge.Node(childComplexity), true case "ReviewUpdatePayload.review": - if e.complexity.ReviewUpdatePayload.Review == nil { + if e.ComplexityRoot.ReviewUpdatePayload.Review == nil { break } - return e.complexity.ReviewUpdatePayload.Review(childComplexity), true + return e.ComplexityRoot.ReviewUpdatePayload.Review(childComplexity), true case "Risk.actionPlans": - if e.complexity.Risk.ActionPlans == nil { + if e.ComplexityRoot.Risk.ActionPlans == nil { break } @@ -39119,10 +39102,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Risk.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Risk.assets": - if e.complexity.Risk.Assets == nil { + if e.ComplexityRoot.Risk.Assets == nil { break } @@ -39131,10 +39114,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Risk.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Risk.blockedGroups": - if e.complexity.Risk.BlockedGroups == nil { + if e.ComplexityRoot.Risk.BlockedGroups == nil { break } @@ -39143,24 +39126,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Risk.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Risk.businessCosts": - if e.complexity.Risk.BusinessCosts == nil { + if e.ComplexityRoot.Risk.BusinessCosts == nil { break } - return e.complexity.Risk.BusinessCosts(childComplexity), true + return e.ComplexityRoot.Risk.BusinessCosts(childComplexity), true case "Risk.businessCostsJSON": - if e.complexity.Risk.BusinessCostsJSON == nil { + if e.ComplexityRoot.Risk.BusinessCostsJSON == nil { break } - return e.complexity.Risk.BusinessCostsJSON(childComplexity), true + return e.ComplexityRoot.Risk.BusinessCostsJSON(childComplexity), true case "Risk.comments": - if e.complexity.Risk.Comments == nil { + if e.ComplexityRoot.Risk.Comments == nil { break } @@ -39169,10 +39152,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Risk.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Risk.controls": - if e.complexity.Risk.Controls == nil { + if e.ComplexityRoot.Risk.Controls == nil { break } @@ -39181,52 +39164,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Risk.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Risk.createdAt": - if e.complexity.Risk.CreatedAt == nil { + if e.ComplexityRoot.Risk.CreatedAt == nil { break } - return e.complexity.Risk.CreatedAt(childComplexity), true + return e.ComplexityRoot.Risk.CreatedAt(childComplexity), true case "Risk.createdBy": - if e.complexity.Risk.CreatedBy == nil { + if e.ComplexityRoot.Risk.CreatedBy == nil { break } - return e.complexity.Risk.CreatedBy(childComplexity), true + return e.ComplexityRoot.Risk.CreatedBy(childComplexity), true case "Risk.delegate": - if e.complexity.Risk.Delegate == nil { + if e.ComplexityRoot.Risk.Delegate == nil { break } - return e.complexity.Risk.Delegate(childComplexity), true + return e.ComplexityRoot.Risk.Delegate(childComplexity), true case "Risk.delegateID": - if e.complexity.Risk.DelegateID == nil { + if e.ComplexityRoot.Risk.DelegateID == nil { break } - return e.complexity.Risk.DelegateID(childComplexity), true + return e.ComplexityRoot.Risk.DelegateID(childComplexity), true case "Risk.details": - if e.complexity.Risk.Details == nil { + if e.ComplexityRoot.Risk.Details == nil { break } - return e.complexity.Risk.Details(childComplexity), true + return e.ComplexityRoot.Risk.Details(childComplexity), true case "Risk.detailsJSON": - if e.complexity.Risk.DetailsJSON == nil { + if e.ComplexityRoot.Risk.DetailsJSON == nil { break } - return e.complexity.Risk.DetailsJSON(childComplexity), true + return e.ComplexityRoot.Risk.DetailsJSON(childComplexity), true case "Risk.discussions": - if e.complexity.Risk.Discussions == nil { + if e.ComplexityRoot.Risk.Discussions == nil { break } @@ -39235,17 +39218,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true + return e.ComplexityRoot.Risk.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true case "Risk.displayID": - if e.complexity.Risk.DisplayID == nil { + if e.ComplexityRoot.Risk.DisplayID == nil { break } - return e.complexity.Risk.DisplayID(childComplexity), true + return e.ComplexityRoot.Risk.DisplayID(childComplexity), true case "Risk.editors": - if e.complexity.Risk.Editors == nil { + if e.ComplexityRoot.Risk.Editors == nil { break } @@ -39254,10 +39237,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Risk.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Risk.entities": - if e.complexity.Risk.Entities == nil { + if e.ComplexityRoot.Risk.Entities == nil { break } @@ -39266,45 +39249,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Risk.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Risk.environment": - if e.complexity.Risk.Environment == nil { + if e.ComplexityRoot.Risk.Environment == nil { break } - return e.complexity.Risk.Environment(childComplexity), true + return e.ComplexityRoot.Risk.Environment(childComplexity), true case "Risk.environmentID": - if e.complexity.Risk.EnvironmentID == nil { + if e.ComplexityRoot.Risk.EnvironmentID == nil { break } - return e.complexity.Risk.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Risk.EnvironmentID(childComplexity), true case "Risk.environmentName": - if e.complexity.Risk.EnvironmentName == nil { + if e.ComplexityRoot.Risk.EnvironmentName == nil { break } - return e.complexity.Risk.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Risk.EnvironmentName(childComplexity), true case "Risk.id": - if e.complexity.Risk.ID == nil { + if e.ComplexityRoot.Risk.ID == nil { break } - return e.complexity.Risk.ID(childComplexity), true + return e.ComplexityRoot.Risk.ID(childComplexity), true case "Risk.impact": - if e.complexity.Risk.Impact == nil { + if e.ComplexityRoot.Risk.Impact == nil { break } - return e.complexity.Risk.Impact(childComplexity), true + return e.ComplexityRoot.Risk.Impact(childComplexity), true case "Risk.internalPolicies": - if e.complexity.Risk.InternalPolicies == nil { + if e.ComplexityRoot.Risk.InternalPolicies == nil { break } @@ -39313,52 +39296,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Risk.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Risk.likelihood": - if e.complexity.Risk.Likelihood == nil { + if e.ComplexityRoot.Risk.Likelihood == nil { break } - return e.complexity.Risk.Likelihood(childComplexity), true + return e.ComplexityRoot.Risk.Likelihood(childComplexity), true case "Risk.mitigation": - if e.complexity.Risk.Mitigation == nil { + if e.ComplexityRoot.Risk.Mitigation == nil { break } - return e.complexity.Risk.Mitigation(childComplexity), true + return e.ComplexityRoot.Risk.Mitigation(childComplexity), true case "Risk.mitigationJSON": - if e.complexity.Risk.MitigationJSON == nil { + if e.ComplexityRoot.Risk.MitigationJSON == nil { break } - return e.complexity.Risk.MitigationJSON(childComplexity), true + return e.ComplexityRoot.Risk.MitigationJSON(childComplexity), true case "Risk.name": - if e.complexity.Risk.Name == nil { + if e.ComplexityRoot.Risk.Name == nil { break } - return e.complexity.Risk.Name(childComplexity), true + return e.ComplexityRoot.Risk.Name(childComplexity), true case "Risk.owner": - if e.complexity.Risk.Owner == nil { + if e.ComplexityRoot.Risk.Owner == nil { break } - return e.complexity.Risk.Owner(childComplexity), true + return e.ComplexityRoot.Risk.Owner(childComplexity), true case "Risk.ownerID": - if e.complexity.Risk.OwnerID == nil { + if e.ComplexityRoot.Risk.OwnerID == nil { break } - return e.complexity.Risk.OwnerID(childComplexity), true + return e.ComplexityRoot.Risk.OwnerID(childComplexity), true case "Risk.platforms": - if e.complexity.Risk.Platforms == nil { + if e.ComplexityRoot.Risk.Platforms == nil { break } @@ -39367,10 +39350,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Risk.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Risk.procedures": - if e.complexity.Risk.Procedures == nil { + if e.ComplexityRoot.Risk.Procedures == nil { break } @@ -39379,10 +39362,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Risk.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Risk.programs": - if e.complexity.Risk.Programs == nil { + if e.ComplexityRoot.Risk.Programs == nil { break } @@ -39391,52 +39374,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Risk.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Risk.riskCategory": - if e.complexity.Risk.RiskCategory == nil { + if e.ComplexityRoot.Risk.RiskCategory == nil { break } - return e.complexity.Risk.RiskCategory(childComplexity), true + return e.ComplexityRoot.Risk.RiskCategory(childComplexity), true case "Risk.riskCategoryID": - if e.complexity.Risk.RiskCategoryID == nil { + if e.ComplexityRoot.Risk.RiskCategoryID == nil { break } - return e.complexity.Risk.RiskCategoryID(childComplexity), true + return e.ComplexityRoot.Risk.RiskCategoryID(childComplexity), true case "Risk.riskCategoryName": - if e.complexity.Risk.RiskCategoryName == nil { + if e.ComplexityRoot.Risk.RiskCategoryName == nil { break } - return e.complexity.Risk.RiskCategoryName(childComplexity), true + return e.ComplexityRoot.Risk.RiskCategoryName(childComplexity), true case "Risk.riskKind": - if e.complexity.Risk.RiskKind == nil { + if e.ComplexityRoot.Risk.RiskKind == nil { break } - return e.complexity.Risk.RiskKind(childComplexity), true + return e.ComplexityRoot.Risk.RiskKind(childComplexity), true case "Risk.riskKindID": - if e.complexity.Risk.RiskKindID == nil { + if e.ComplexityRoot.Risk.RiskKindID == nil { break } - return e.complexity.Risk.RiskKindID(childComplexity), true + return e.ComplexityRoot.Risk.RiskKindID(childComplexity), true case "Risk.riskKindName": - if e.complexity.Risk.RiskKindName == nil { + if e.ComplexityRoot.Risk.RiskKindName == nil { break } - return e.complexity.Risk.RiskKindName(childComplexity), true + return e.ComplexityRoot.Risk.RiskKindName(childComplexity), true case "Risk.scans": - if e.complexity.Risk.Scans == nil { + if e.ComplexityRoot.Risk.Scans == nil { break } @@ -39445,59 +39428,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Risk.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Risk.scope": - if e.complexity.Risk.Scope == nil { + if e.ComplexityRoot.Risk.Scope == nil { break } - return e.complexity.Risk.Scope(childComplexity), true + return e.ComplexityRoot.Risk.Scope(childComplexity), true case "Risk.scopeID": - if e.complexity.Risk.ScopeID == nil { + if e.ComplexityRoot.Risk.ScopeID == nil { break } - return e.complexity.Risk.ScopeID(childComplexity), true + return e.ComplexityRoot.Risk.ScopeID(childComplexity), true case "Risk.scopeName": - if e.complexity.Risk.ScopeName == nil { + if e.ComplexityRoot.Risk.ScopeName == nil { break } - return e.complexity.Risk.ScopeName(childComplexity), true + return e.ComplexityRoot.Risk.ScopeName(childComplexity), true case "Risk.score": - if e.complexity.Risk.Score == nil { + if e.ComplexityRoot.Risk.Score == nil { break } - return e.complexity.Risk.Score(childComplexity), true + return e.ComplexityRoot.Risk.Score(childComplexity), true case "Risk.stakeholder": - if e.complexity.Risk.Stakeholder == nil { + if e.ComplexityRoot.Risk.Stakeholder == nil { break } - return e.complexity.Risk.Stakeholder(childComplexity), true + return e.ComplexityRoot.Risk.Stakeholder(childComplexity), true case "Risk.stakeholderID": - if e.complexity.Risk.StakeholderID == nil { + if e.ComplexityRoot.Risk.StakeholderID == nil { break } - return e.complexity.Risk.StakeholderID(childComplexity), true + return e.ComplexityRoot.Risk.StakeholderID(childComplexity), true case "Risk.status": - if e.complexity.Risk.Status == nil { + if e.ComplexityRoot.Risk.Status == nil { break } - return e.complexity.Risk.Status(childComplexity), true + return e.ComplexityRoot.Risk.Status(childComplexity), true case "Risk.subcontrols": - if e.complexity.Risk.Subcontrols == nil { + if e.ComplexityRoot.Risk.Subcontrols == nil { break } @@ -39506,17 +39489,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Risk.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Risk.tags": - if e.complexity.Risk.Tags == nil { + if e.ComplexityRoot.Risk.Tags == nil { break } - return e.complexity.Risk.Tags(childComplexity), true + return e.ComplexityRoot.Risk.Tags(childComplexity), true case "Risk.tasks": - if e.complexity.Risk.Tasks == nil { + if e.ComplexityRoot.Risk.Tasks == nil { break } @@ -39525,24 +39508,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Risk.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Risk.updatedAt": - if e.complexity.Risk.UpdatedAt == nil { + if e.ComplexityRoot.Risk.UpdatedAt == nil { break } - return e.complexity.Risk.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Risk.UpdatedAt(childComplexity), true case "Risk.updatedBy": - if e.complexity.Risk.UpdatedBy == nil { + if e.ComplexityRoot.Risk.UpdatedBy == nil { break } - return e.complexity.Risk.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Risk.UpdatedBy(childComplexity), true case "Risk.viewers": - if e.complexity.Risk.Viewers == nil { + if e.ComplexityRoot.Risk.Viewers == nil { break } @@ -39551,94 +39534,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Risk.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Risk.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "RiskBulkCreatePayload.risks": - if e.complexity.RiskBulkCreatePayload.Risks == nil { + if e.ComplexityRoot.RiskBulkCreatePayload.Risks == nil { break } - return e.complexity.RiskBulkCreatePayload.Risks(childComplexity), true + return e.ComplexityRoot.RiskBulkCreatePayload.Risks(childComplexity), true case "RiskBulkDeletePayload.deletedIDs": - if e.complexity.RiskBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.RiskBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.RiskBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.RiskBulkDeletePayload.DeletedIDs(childComplexity), true case "RiskBulkUpdatePayload.risks": - if e.complexity.RiskBulkUpdatePayload.Risks == nil { + if e.ComplexityRoot.RiskBulkUpdatePayload.Risks == nil { break } - return e.complexity.RiskBulkUpdatePayload.Risks(childComplexity), true + return e.ComplexityRoot.RiskBulkUpdatePayload.Risks(childComplexity), true case "RiskBulkUpdatePayload.updatedIDs": - if e.complexity.RiskBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.RiskBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.RiskBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.RiskBulkUpdatePayload.UpdatedIDs(childComplexity), true case "RiskConnection.edges": - if e.complexity.RiskConnection.Edges == nil { + if e.ComplexityRoot.RiskConnection.Edges == nil { break } - return e.complexity.RiskConnection.Edges(childComplexity), true + return e.ComplexityRoot.RiskConnection.Edges(childComplexity), true case "RiskConnection.pageInfo": - if e.complexity.RiskConnection.PageInfo == nil { + if e.ComplexityRoot.RiskConnection.PageInfo == nil { break } - return e.complexity.RiskConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.RiskConnection.PageInfo(childComplexity), true case "RiskConnection.totalCount": - if e.complexity.RiskConnection.TotalCount == nil { + if e.ComplexityRoot.RiskConnection.TotalCount == nil { break } - return e.complexity.RiskConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.RiskConnection.TotalCount(childComplexity), true case "RiskCreatePayload.risk": - if e.complexity.RiskCreatePayload.Risk == nil { + if e.ComplexityRoot.RiskCreatePayload.Risk == nil { break } - return e.complexity.RiskCreatePayload.Risk(childComplexity), true + return e.ComplexityRoot.RiskCreatePayload.Risk(childComplexity), true case "RiskDeletePayload.deletedID": - if e.complexity.RiskDeletePayload.DeletedID == nil { + if e.ComplexityRoot.RiskDeletePayload.DeletedID == nil { break } - return e.complexity.RiskDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.RiskDeletePayload.DeletedID(childComplexity), true case "RiskEdge.cursor": - if e.complexity.RiskEdge.Cursor == nil { + if e.ComplexityRoot.RiskEdge.Cursor == nil { break } - return e.complexity.RiskEdge.Cursor(childComplexity), true + return e.ComplexityRoot.RiskEdge.Cursor(childComplexity), true case "RiskEdge.node": - if e.complexity.RiskEdge.Node == nil { + if e.ComplexityRoot.RiskEdge.Node == nil { break } - return e.complexity.RiskEdge.Node(childComplexity), true + return e.ComplexityRoot.RiskEdge.Node(childComplexity), true case "RiskUpdatePayload.risk": - if e.complexity.RiskUpdatePayload.Risk == nil { + if e.ComplexityRoot.RiskUpdatePayload.Risk == nil { break } - return e.complexity.RiskUpdatePayload.Risk(childComplexity), true + return e.ComplexityRoot.RiskUpdatePayload.Risk(childComplexity), true case "Scan.actionPlans": - if e.complexity.Scan.ActionPlans == nil { + if e.ComplexityRoot.Scan.ActionPlans == nil { break } @@ -39647,10 +39630,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Scan.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Scan.assets": - if e.complexity.Scan.Assets == nil { + if e.ComplexityRoot.Scan.Assets == nil { break } @@ -39659,45 +39642,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Scan.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Scan.assignedTo": - if e.complexity.Scan.AssignedTo == nil { + if e.ComplexityRoot.Scan.AssignedTo == nil { break } - return e.complexity.Scan.AssignedTo(childComplexity), true + return e.ComplexityRoot.Scan.AssignedTo(childComplexity), true case "Scan.assignedToGroup": - if e.complexity.Scan.AssignedToGroup == nil { + if e.ComplexityRoot.Scan.AssignedToGroup == nil { break } - return e.complexity.Scan.AssignedToGroup(childComplexity), true + return e.ComplexityRoot.Scan.AssignedToGroup(childComplexity), true case "Scan.assignedToGroupID": - if e.complexity.Scan.AssignedToGroupID == nil { + if e.ComplexityRoot.Scan.AssignedToGroupID == nil { break } - return e.complexity.Scan.AssignedToGroupID(childComplexity), true + return e.ComplexityRoot.Scan.AssignedToGroupID(childComplexity), true case "Scan.assignedToUser": - if e.complexity.Scan.AssignedToUser == nil { + if e.ComplexityRoot.Scan.AssignedToUser == nil { break } - return e.complexity.Scan.AssignedToUser(childComplexity), true + return e.ComplexityRoot.Scan.AssignedToUser(childComplexity), true case "Scan.assignedToUserID": - if e.complexity.Scan.AssignedToUserID == nil { + if e.ComplexityRoot.Scan.AssignedToUserID == nil { break } - return e.complexity.Scan.AssignedToUserID(childComplexity), true + return e.ComplexityRoot.Scan.AssignedToUserID(childComplexity), true case "Scan.blockedGroups": - if e.complexity.Scan.BlockedGroups == nil { + if e.ComplexityRoot.Scan.BlockedGroups == nil { break } @@ -39706,10 +39689,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Scan.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Scan.controls": - if e.complexity.Scan.Controls == nil { + if e.ComplexityRoot.Scan.Controls == nil { break } @@ -39718,24 +39701,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Scan.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Scan.createdAt": - if e.complexity.Scan.CreatedAt == nil { + if e.ComplexityRoot.Scan.CreatedAt == nil { break } - return e.complexity.Scan.CreatedAt(childComplexity), true + return e.ComplexityRoot.Scan.CreatedAt(childComplexity), true case "Scan.createdBy": - if e.complexity.Scan.CreatedBy == nil { + if e.ComplexityRoot.Scan.CreatedBy == nil { break } - return e.complexity.Scan.CreatedBy(childComplexity), true + return e.ComplexityRoot.Scan.CreatedBy(childComplexity), true case "Scan.editors": - if e.complexity.Scan.Editors == nil { + if e.ComplexityRoot.Scan.Editors == nil { break } @@ -39744,10 +39727,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Scan.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Scan.entities": - if e.complexity.Scan.Entities == nil { + if e.ComplexityRoot.Scan.Entities == nil { break } @@ -39756,31 +39739,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Scan.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Scan.environment": - if e.complexity.Scan.Environment == nil { + if e.ComplexityRoot.Scan.Environment == nil { break } - return e.complexity.Scan.Environment(childComplexity), true + return e.ComplexityRoot.Scan.Environment(childComplexity), true case "Scan.environmentID": - if e.complexity.Scan.EnvironmentID == nil { + if e.ComplexityRoot.Scan.EnvironmentID == nil { break } - return e.complexity.Scan.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Scan.EnvironmentID(childComplexity), true case "Scan.environmentName": - if e.complexity.Scan.EnvironmentName == nil { + if e.ComplexityRoot.Scan.EnvironmentName == nil { break } - return e.complexity.Scan.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Scan.EnvironmentName(childComplexity), true case "Scan.evidence": - if e.complexity.Scan.Evidence == nil { + if e.ComplexityRoot.Scan.Evidence == nil { break } @@ -39789,10 +39772,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Scan.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Scan.files": - if e.complexity.Scan.Files == nil { + if e.ComplexityRoot.Scan.Files == nil { break } @@ -39801,94 +39784,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Scan.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Scan.generatedByPlatform": - if e.complexity.Scan.GeneratedByPlatform == nil { + if e.ComplexityRoot.Scan.GeneratedByPlatform == nil { break } - return e.complexity.Scan.GeneratedByPlatform(childComplexity), true + return e.ComplexityRoot.Scan.GeneratedByPlatform(childComplexity), true case "Scan.generatedByPlatformID": - if e.complexity.Scan.GeneratedByPlatformID == nil { + if e.ComplexityRoot.Scan.GeneratedByPlatformID == nil { break } - return e.complexity.Scan.GeneratedByPlatformID(childComplexity), true + return e.ComplexityRoot.Scan.GeneratedByPlatformID(childComplexity), true case "Scan.id": - if e.complexity.Scan.ID == nil { + if e.ComplexityRoot.Scan.ID == nil { break } - return e.complexity.Scan.ID(childComplexity), true + return e.ComplexityRoot.Scan.ID(childComplexity), true case "Scan.metadata": - if e.complexity.Scan.Metadata == nil { + if e.ComplexityRoot.Scan.Metadata == nil { break } - return e.complexity.Scan.Metadata(childComplexity), true + return e.ComplexityRoot.Scan.Metadata(childComplexity), true case "Scan.nextScanRunAt": - if e.complexity.Scan.NextScanRunAt == nil { + if e.ComplexityRoot.Scan.NextScanRunAt == nil { break } - return e.complexity.Scan.NextScanRunAt(childComplexity), true + return e.ComplexityRoot.Scan.NextScanRunAt(childComplexity), true case "Scan.owner": - if e.complexity.Scan.Owner == nil { + if e.ComplexityRoot.Scan.Owner == nil { break } - return e.complexity.Scan.Owner(childComplexity), true + return e.ComplexityRoot.Scan.Owner(childComplexity), true case "Scan.ownerID": - if e.complexity.Scan.OwnerID == nil { + if e.ComplexityRoot.Scan.OwnerID == nil { break } - return e.complexity.Scan.OwnerID(childComplexity), true + return e.ComplexityRoot.Scan.OwnerID(childComplexity), true case "Scan.performedBy": - if e.complexity.Scan.PerformedBy == nil { + if e.ComplexityRoot.Scan.PerformedBy == nil { break } - return e.complexity.Scan.PerformedBy(childComplexity), true + return e.ComplexityRoot.Scan.PerformedBy(childComplexity), true case "Scan.performedByGroup": - if e.complexity.Scan.PerformedByGroup == nil { + if e.ComplexityRoot.Scan.PerformedByGroup == nil { break } - return e.complexity.Scan.PerformedByGroup(childComplexity), true + return e.ComplexityRoot.Scan.PerformedByGroup(childComplexity), true case "Scan.performedByGroupID": - if e.complexity.Scan.PerformedByGroupID == nil { + if e.ComplexityRoot.Scan.PerformedByGroupID == nil { break } - return e.complexity.Scan.PerformedByGroupID(childComplexity), true + return e.ComplexityRoot.Scan.PerformedByGroupID(childComplexity), true case "Scan.performedByUser": - if e.complexity.Scan.PerformedByUser == nil { + if e.ComplexityRoot.Scan.PerformedByUser == nil { break } - return e.complexity.Scan.PerformedByUser(childComplexity), true + return e.ComplexityRoot.Scan.PerformedByUser(childComplexity), true case "Scan.performedByUserID": - if e.complexity.Scan.PerformedByUserID == nil { + if e.ComplexityRoot.Scan.PerformedByUserID == nil { break } - return e.complexity.Scan.PerformedByUserID(childComplexity), true + return e.ComplexityRoot.Scan.PerformedByUserID(childComplexity), true case "Scan.platforms": - if e.complexity.Scan.Platforms == nil { + if e.ComplexityRoot.Scan.Platforms == nil { break } @@ -39897,10 +39880,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Scan.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Scan.remediations": - if e.complexity.Scan.Remediations == nil { + if e.ComplexityRoot.Scan.Remediations == nil { break } @@ -39909,108 +39892,108 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.Scan.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "Scan.reviewedBy": - if e.complexity.Scan.ReviewedBy == nil { + if e.ComplexityRoot.Scan.ReviewedBy == nil { break } - return e.complexity.Scan.ReviewedBy(childComplexity), true + return e.ComplexityRoot.Scan.ReviewedBy(childComplexity), true case "Scan.reviewedByGroup": - if e.complexity.Scan.ReviewedByGroup == nil { + if e.ComplexityRoot.Scan.ReviewedByGroup == nil { break } - return e.complexity.Scan.ReviewedByGroup(childComplexity), true + return e.ComplexityRoot.Scan.ReviewedByGroup(childComplexity), true case "Scan.reviewedByGroupID": - if e.complexity.Scan.ReviewedByGroupID == nil { + if e.ComplexityRoot.Scan.ReviewedByGroupID == nil { break } - return e.complexity.Scan.ReviewedByGroupID(childComplexity), true + return e.ComplexityRoot.Scan.ReviewedByGroupID(childComplexity), true case "Scan.reviewedByUser": - if e.complexity.Scan.ReviewedByUser == nil { + if e.ComplexityRoot.Scan.ReviewedByUser == nil { break } - return e.complexity.Scan.ReviewedByUser(childComplexity), true + return e.ComplexityRoot.Scan.ReviewedByUser(childComplexity), true case "Scan.reviewedByUserID": - if e.complexity.Scan.ReviewedByUserID == nil { + if e.ComplexityRoot.Scan.ReviewedByUserID == nil { break } - return e.complexity.Scan.ReviewedByUserID(childComplexity), true + return e.ComplexityRoot.Scan.ReviewedByUserID(childComplexity), true case "Scan.scanDate": - if e.complexity.Scan.ScanDate == nil { + if e.ComplexityRoot.Scan.ScanDate == nil { break } - return e.complexity.Scan.ScanDate(childComplexity), true + return e.ComplexityRoot.Scan.ScanDate(childComplexity), true case "Scan.scanSchedule": - if e.complexity.Scan.ScanSchedule == nil { + if e.ComplexityRoot.Scan.ScanSchedule == nil { break } - return e.complexity.Scan.ScanSchedule(childComplexity), true + return e.ComplexityRoot.Scan.ScanSchedule(childComplexity), true case "Scan.scanType": - if e.complexity.Scan.ScanType == nil { + if e.ComplexityRoot.Scan.ScanType == nil { break } - return e.complexity.Scan.ScanType(childComplexity), true + return e.ComplexityRoot.Scan.ScanType(childComplexity), true case "Scan.scope": - if e.complexity.Scan.Scope == nil { + if e.ComplexityRoot.Scan.Scope == nil { break } - return e.complexity.Scan.Scope(childComplexity), true + return e.ComplexityRoot.Scan.Scope(childComplexity), true case "Scan.scopeID": - if e.complexity.Scan.ScopeID == nil { + if e.ComplexityRoot.Scan.ScopeID == nil { break } - return e.complexity.Scan.ScopeID(childComplexity), true + return e.ComplexityRoot.Scan.ScopeID(childComplexity), true case "Scan.scopeName": - if e.complexity.Scan.ScopeName == nil { + if e.ComplexityRoot.Scan.ScopeName == nil { break } - return e.complexity.Scan.ScopeName(childComplexity), true + return e.ComplexityRoot.Scan.ScopeName(childComplexity), true case "Scan.status": - if e.complexity.Scan.Status == nil { + if e.ComplexityRoot.Scan.Status == nil { break } - return e.complexity.Scan.Status(childComplexity), true + return e.ComplexityRoot.Scan.Status(childComplexity), true case "Scan.tags": - if e.complexity.Scan.Tags == nil { + if e.ComplexityRoot.Scan.Tags == nil { break } - return e.complexity.Scan.Tags(childComplexity), true + return e.ComplexityRoot.Scan.Tags(childComplexity), true case "Scan.target": - if e.complexity.Scan.Target == nil { + if e.ComplexityRoot.Scan.Target == nil { break } - return e.complexity.Scan.Target(childComplexity), true + return e.ComplexityRoot.Scan.Target(childComplexity), true case "Scan.tasks": - if e.complexity.Scan.Tasks == nil { + if e.ComplexityRoot.Scan.Tasks == nil { break } @@ -40019,24 +40002,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Scan.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Scan.updatedAt": - if e.complexity.Scan.UpdatedAt == nil { + if e.ComplexityRoot.Scan.UpdatedAt == nil { break } - return e.complexity.Scan.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Scan.UpdatedAt(childComplexity), true case "Scan.updatedBy": - if e.complexity.Scan.UpdatedBy == nil { + if e.ComplexityRoot.Scan.UpdatedBy == nil { break } - return e.complexity.Scan.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Scan.UpdatedBy(childComplexity), true case "Scan.viewers": - if e.complexity.Scan.Viewers == nil { + if e.ComplexityRoot.Scan.Viewers == nil { break } @@ -40045,10 +40028,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Scan.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Scan.vulnerabilities": - if e.complexity.Scan.Vulnerabilities == nil { + if e.ComplexityRoot.Scan.Vulnerabilities == nil { break } @@ -40057,115 +40040,115 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Scan.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true + return e.ComplexityRoot.Scan.Vulnerabilities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.VulnerabilityOrder), args["where"].(*generated.VulnerabilityWhereInput)), true case "Scan.vulnerabilityIds": - if e.complexity.Scan.VulnerabilityIds == nil { + if e.ComplexityRoot.Scan.VulnerabilityIds == nil { break } - return e.complexity.Scan.VulnerabilityIds(childComplexity), true + return e.ComplexityRoot.Scan.VulnerabilityIds(childComplexity), true case "ScanBulkCreatePayload.scans": - if e.complexity.ScanBulkCreatePayload.Scans == nil { + if e.ComplexityRoot.ScanBulkCreatePayload.Scans == nil { break } - return e.complexity.ScanBulkCreatePayload.Scans(childComplexity), true + return e.ComplexityRoot.ScanBulkCreatePayload.Scans(childComplexity), true case "ScanBulkDeletePayload.deletedIDs": - if e.complexity.ScanBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ScanBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ScanBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ScanBulkDeletePayload.DeletedIDs(childComplexity), true case "ScanBulkUpdatePayload.scans": - if e.complexity.ScanBulkUpdatePayload.Scans == nil { + if e.ComplexityRoot.ScanBulkUpdatePayload.Scans == nil { break } - return e.complexity.ScanBulkUpdatePayload.Scans(childComplexity), true + return e.ComplexityRoot.ScanBulkUpdatePayload.Scans(childComplexity), true case "ScanBulkUpdatePayload.updatedIDs": - if e.complexity.ScanBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ScanBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ScanBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ScanBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ScanConnection.edges": - if e.complexity.ScanConnection.Edges == nil { + if e.ComplexityRoot.ScanConnection.Edges == nil { break } - return e.complexity.ScanConnection.Edges(childComplexity), true + return e.ComplexityRoot.ScanConnection.Edges(childComplexity), true case "ScanConnection.pageInfo": - if e.complexity.ScanConnection.PageInfo == nil { + if e.ComplexityRoot.ScanConnection.PageInfo == nil { break } - return e.complexity.ScanConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ScanConnection.PageInfo(childComplexity), true case "ScanConnection.totalCount": - if e.complexity.ScanConnection.TotalCount == nil { + if e.ComplexityRoot.ScanConnection.TotalCount == nil { break } - return e.complexity.ScanConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ScanConnection.TotalCount(childComplexity), true case "ScanCreatePayload.scan": - if e.complexity.ScanCreatePayload.Scan == nil { + if e.ComplexityRoot.ScanCreatePayload.Scan == nil { break } - return e.complexity.ScanCreatePayload.Scan(childComplexity), true + return e.ComplexityRoot.ScanCreatePayload.Scan(childComplexity), true case "ScanDeletePayload.deletedID": - if e.complexity.ScanDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ScanDeletePayload.DeletedID == nil { break } - return e.complexity.ScanDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ScanDeletePayload.DeletedID(childComplexity), true case "ScanEdge.cursor": - if e.complexity.ScanEdge.Cursor == nil { + if e.ComplexityRoot.ScanEdge.Cursor == nil { break } - return e.complexity.ScanEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ScanEdge.Cursor(childComplexity), true case "ScanEdge.node": - if e.complexity.ScanEdge.Node == nil { + if e.ComplexityRoot.ScanEdge.Node == nil { break } - return e.complexity.ScanEdge.Node(childComplexity), true + return e.ComplexityRoot.ScanEdge.Node(childComplexity), true case "ScanUpdatePayload.scan": - if e.complexity.ScanUpdatePayload.Scan == nil { + if e.ComplexityRoot.ScanUpdatePayload.Scan == nil { break } - return e.complexity.ScanUpdatePayload.Scan(childComplexity), true + return e.ComplexityRoot.ScanUpdatePayload.Scan(childComplexity), true case "ScheduledJob.active": - if e.complexity.ScheduledJob.Active == nil { + if e.ComplexityRoot.ScheduledJob.Active == nil { break } - return e.complexity.ScheduledJob.Active(childComplexity), true + return e.ComplexityRoot.ScheduledJob.Active(childComplexity), true case "ScheduledJob.configuration": - if e.complexity.ScheduledJob.Configuration == nil { + if e.ComplexityRoot.ScheduledJob.Configuration == nil { break } - return e.complexity.ScheduledJob.Configuration(childComplexity), true + return e.ComplexityRoot.ScheduledJob.Configuration(childComplexity), true case "ScheduledJob.controls": - if e.complexity.ScheduledJob.Controls == nil { + if e.ComplexityRoot.ScheduledJob.Controls == nil { break } @@ -40174,87 +40157,87 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ScheduledJob.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.ScheduledJob.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "ScheduledJob.createdAt": - if e.complexity.ScheduledJob.CreatedAt == nil { + if e.ComplexityRoot.ScheduledJob.CreatedAt == nil { break } - return e.complexity.ScheduledJob.CreatedAt(childComplexity), true + return e.ComplexityRoot.ScheduledJob.CreatedAt(childComplexity), true case "ScheduledJob.createdBy": - if e.complexity.ScheduledJob.CreatedBy == nil { + if e.ComplexityRoot.ScheduledJob.CreatedBy == nil { break } - return e.complexity.ScheduledJob.CreatedBy(childComplexity), true + return e.ComplexityRoot.ScheduledJob.CreatedBy(childComplexity), true case "ScheduledJob.cron": - if e.complexity.ScheduledJob.Cron == nil { + if e.ComplexityRoot.ScheduledJob.Cron == nil { break } - return e.complexity.ScheduledJob.Cron(childComplexity), true + return e.ComplexityRoot.ScheduledJob.Cron(childComplexity), true case "ScheduledJob.displayID": - if e.complexity.ScheduledJob.DisplayID == nil { + if e.ComplexityRoot.ScheduledJob.DisplayID == nil { break } - return e.complexity.ScheduledJob.DisplayID(childComplexity), true + return e.ComplexityRoot.ScheduledJob.DisplayID(childComplexity), true case "ScheduledJob.id": - if e.complexity.ScheduledJob.ID == nil { + if e.ComplexityRoot.ScheduledJob.ID == nil { break } - return e.complexity.ScheduledJob.ID(childComplexity), true + return e.ComplexityRoot.ScheduledJob.ID(childComplexity), true case "ScheduledJob.jobID": - if e.complexity.ScheduledJob.JobID == nil { + if e.ComplexityRoot.ScheduledJob.JobID == nil { break } - return e.complexity.ScheduledJob.JobID(childComplexity), true + return e.ComplexityRoot.ScheduledJob.JobID(childComplexity), true case "ScheduledJob.jobRunner": - if e.complexity.ScheduledJob.JobRunner == nil { + if e.ComplexityRoot.ScheduledJob.JobRunner == nil { break } - return e.complexity.ScheduledJob.JobRunner(childComplexity), true + return e.ComplexityRoot.ScheduledJob.JobRunner(childComplexity), true case "ScheduledJob.jobRunnerID": - if e.complexity.ScheduledJob.JobRunnerID == nil { + if e.ComplexityRoot.ScheduledJob.JobRunnerID == nil { break } - return e.complexity.ScheduledJob.JobRunnerID(childComplexity), true + return e.ComplexityRoot.ScheduledJob.JobRunnerID(childComplexity), true case "ScheduledJob.jobTemplate": - if e.complexity.ScheduledJob.JobTemplate == nil { + if e.ComplexityRoot.ScheduledJob.JobTemplate == nil { break } - return e.complexity.ScheduledJob.JobTemplate(childComplexity), true + return e.ComplexityRoot.ScheduledJob.JobTemplate(childComplexity), true case "ScheduledJob.owner": - if e.complexity.ScheduledJob.Owner == nil { + if e.ComplexityRoot.ScheduledJob.Owner == nil { break } - return e.complexity.ScheduledJob.Owner(childComplexity), true + return e.ComplexityRoot.ScheduledJob.Owner(childComplexity), true case "ScheduledJob.ownerID": - if e.complexity.ScheduledJob.OwnerID == nil { + if e.ComplexityRoot.ScheduledJob.OwnerID == nil { break } - return e.complexity.ScheduledJob.OwnerID(childComplexity), true + return e.ComplexityRoot.ScheduledJob.OwnerID(childComplexity), true case "ScheduledJob.subcontrols": - if e.complexity.ScheduledJob.Subcontrols == nil { + if e.ComplexityRoot.ScheduledJob.Subcontrols == nil { break } @@ -40263,612 +40246,612 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.ScheduledJob.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.ScheduledJob.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "ScheduledJob.updatedAt": - if e.complexity.ScheduledJob.UpdatedAt == nil { + if e.ComplexityRoot.ScheduledJob.UpdatedAt == nil { break } - return e.complexity.ScheduledJob.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ScheduledJob.UpdatedAt(childComplexity), true case "ScheduledJob.updatedBy": - if e.complexity.ScheduledJob.UpdatedBy == nil { + if e.ComplexityRoot.ScheduledJob.UpdatedBy == nil { break } - return e.complexity.ScheduledJob.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ScheduledJob.UpdatedBy(childComplexity), true case "ScheduledJobBulkCreatePayload.scheduledJobs": - if e.complexity.ScheduledJobBulkCreatePayload.ScheduledJobs == nil { + if e.ComplexityRoot.ScheduledJobBulkCreatePayload.ScheduledJobs == nil { break } - return e.complexity.ScheduledJobBulkCreatePayload.ScheduledJobs(childComplexity), true + return e.ComplexityRoot.ScheduledJobBulkCreatePayload.ScheduledJobs(childComplexity), true case "ScheduledJobBulkDeletePayload.deletedIDs": - if e.complexity.ScheduledJobBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.ScheduledJobBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.ScheduledJobBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.ScheduledJobBulkDeletePayload.DeletedIDs(childComplexity), true case "ScheduledJobBulkUpdatePayload.scheduledJobs": - if e.complexity.ScheduledJobBulkUpdatePayload.ScheduledJobs == nil { + if e.ComplexityRoot.ScheduledJobBulkUpdatePayload.ScheduledJobs == nil { break } - return e.complexity.ScheduledJobBulkUpdatePayload.ScheduledJobs(childComplexity), true + return e.ComplexityRoot.ScheduledJobBulkUpdatePayload.ScheduledJobs(childComplexity), true case "ScheduledJobBulkUpdatePayload.updatedIDs": - if e.complexity.ScheduledJobBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.ScheduledJobBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.ScheduledJobBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.ScheduledJobBulkUpdatePayload.UpdatedIDs(childComplexity), true case "ScheduledJobConnection.edges": - if e.complexity.ScheduledJobConnection.Edges == nil { + if e.ComplexityRoot.ScheduledJobConnection.Edges == nil { break } - return e.complexity.ScheduledJobConnection.Edges(childComplexity), true + return e.ComplexityRoot.ScheduledJobConnection.Edges(childComplexity), true case "ScheduledJobConnection.pageInfo": - if e.complexity.ScheduledJobConnection.PageInfo == nil { + if e.ComplexityRoot.ScheduledJobConnection.PageInfo == nil { break } - return e.complexity.ScheduledJobConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ScheduledJobConnection.PageInfo(childComplexity), true case "ScheduledJobConnection.totalCount": - if e.complexity.ScheduledJobConnection.TotalCount == nil { + if e.ComplexityRoot.ScheduledJobConnection.TotalCount == nil { break } - return e.complexity.ScheduledJobConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ScheduledJobConnection.TotalCount(childComplexity), true case "ScheduledJobCreatePayload.scheduledJob": - if e.complexity.ScheduledJobCreatePayload.ScheduledJob == nil { + if e.ComplexityRoot.ScheduledJobCreatePayload.ScheduledJob == nil { break } - return e.complexity.ScheduledJobCreatePayload.ScheduledJob(childComplexity), true + return e.ComplexityRoot.ScheduledJobCreatePayload.ScheduledJob(childComplexity), true case "ScheduledJobDeletePayload.deletedID": - if e.complexity.ScheduledJobDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ScheduledJobDeletePayload.DeletedID == nil { break } - return e.complexity.ScheduledJobDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ScheduledJobDeletePayload.DeletedID(childComplexity), true case "ScheduledJobEdge.cursor": - if e.complexity.ScheduledJobEdge.Cursor == nil { + if e.ComplexityRoot.ScheduledJobEdge.Cursor == nil { break } - return e.complexity.ScheduledJobEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ScheduledJobEdge.Cursor(childComplexity), true case "ScheduledJobEdge.node": - if e.complexity.ScheduledJobEdge.Node == nil { + if e.ComplexityRoot.ScheduledJobEdge.Node == nil { break } - return e.complexity.ScheduledJobEdge.Node(childComplexity), true + return e.ComplexityRoot.ScheduledJobEdge.Node(childComplexity), true case "ScheduledJobRun.createdAt": - if e.complexity.ScheduledJobRun.CreatedAt == nil { + if e.ComplexityRoot.ScheduledJobRun.CreatedAt == nil { break } - return e.complexity.ScheduledJobRun.CreatedAt(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.CreatedAt(childComplexity), true case "ScheduledJobRun.createdBy": - if e.complexity.ScheduledJobRun.CreatedBy == nil { + if e.ComplexityRoot.ScheduledJobRun.CreatedBy == nil { break } - return e.complexity.ScheduledJobRun.CreatedBy(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.CreatedBy(childComplexity), true case "ScheduledJobRun.expectedExecutionTime": - if e.complexity.ScheduledJobRun.ExpectedExecutionTime == nil { + if e.ComplexityRoot.ScheduledJobRun.ExpectedExecutionTime == nil { break } - return e.complexity.ScheduledJobRun.ExpectedExecutionTime(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.ExpectedExecutionTime(childComplexity), true case "ScheduledJobRun.id": - if e.complexity.ScheduledJobRun.ID == nil { + if e.ComplexityRoot.ScheduledJobRun.ID == nil { break } - return e.complexity.ScheduledJobRun.ID(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.ID(childComplexity), true case "ScheduledJobRun.jobRunner": - if e.complexity.ScheduledJobRun.JobRunner == nil { + if e.ComplexityRoot.ScheduledJobRun.JobRunner == nil { break } - return e.complexity.ScheduledJobRun.JobRunner(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.JobRunner(childComplexity), true case "ScheduledJobRun.jobRunnerID": - if e.complexity.ScheduledJobRun.JobRunnerID == nil { + if e.ComplexityRoot.ScheduledJobRun.JobRunnerID == nil { break } - return e.complexity.ScheduledJobRun.JobRunnerID(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.JobRunnerID(childComplexity), true case "ScheduledJobRun.owner": - if e.complexity.ScheduledJobRun.Owner == nil { + if e.ComplexityRoot.ScheduledJobRun.Owner == nil { break } - return e.complexity.ScheduledJobRun.Owner(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.Owner(childComplexity), true case "ScheduledJobRun.ownerID": - if e.complexity.ScheduledJobRun.OwnerID == nil { + if e.ComplexityRoot.ScheduledJobRun.OwnerID == nil { break } - return e.complexity.ScheduledJobRun.OwnerID(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.OwnerID(childComplexity), true case "ScheduledJobRun.scheduledJob": - if e.complexity.ScheduledJobRun.ScheduledJob == nil { + if e.ComplexityRoot.ScheduledJobRun.ScheduledJob == nil { break } - return e.complexity.ScheduledJobRun.ScheduledJob(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.ScheduledJob(childComplexity), true case "ScheduledJobRun.scheduledJobID": - if e.complexity.ScheduledJobRun.ScheduledJobID == nil { + if e.ComplexityRoot.ScheduledJobRun.ScheduledJobID == nil { break } - return e.complexity.ScheduledJobRun.ScheduledJobID(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.ScheduledJobID(childComplexity), true case "ScheduledJobRun.script": - if e.complexity.ScheduledJobRun.Script == nil { + if e.ComplexityRoot.ScheduledJobRun.Script == nil { break } - return e.complexity.ScheduledJobRun.Script(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.Script(childComplexity), true case "ScheduledJobRun.status": - if e.complexity.ScheduledJobRun.Status == nil { + if e.ComplexityRoot.ScheduledJobRun.Status == nil { break } - return e.complexity.ScheduledJobRun.Status(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.Status(childComplexity), true case "ScheduledJobRun.updatedAt": - if e.complexity.ScheduledJobRun.UpdatedAt == nil { + if e.ComplexityRoot.ScheduledJobRun.UpdatedAt == nil { break } - return e.complexity.ScheduledJobRun.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.UpdatedAt(childComplexity), true case "ScheduledJobRun.updatedBy": - if e.complexity.ScheduledJobRun.UpdatedBy == nil { + if e.ComplexityRoot.ScheduledJobRun.UpdatedBy == nil { break } - return e.complexity.ScheduledJobRun.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ScheduledJobRun.UpdatedBy(childComplexity), true case "ScheduledJobRunConnection.edges": - if e.complexity.ScheduledJobRunConnection.Edges == nil { + if e.ComplexityRoot.ScheduledJobRunConnection.Edges == nil { break } - return e.complexity.ScheduledJobRunConnection.Edges(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunConnection.Edges(childComplexity), true case "ScheduledJobRunConnection.pageInfo": - if e.complexity.ScheduledJobRunConnection.PageInfo == nil { + if e.ComplexityRoot.ScheduledJobRunConnection.PageInfo == nil { break } - return e.complexity.ScheduledJobRunConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunConnection.PageInfo(childComplexity), true case "ScheduledJobRunConnection.totalCount": - if e.complexity.ScheduledJobRunConnection.TotalCount == nil { + if e.ComplexityRoot.ScheduledJobRunConnection.TotalCount == nil { break } - return e.complexity.ScheduledJobRunConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunConnection.TotalCount(childComplexity), true case "ScheduledJobRunCreatePayload.scheduledJobRun": - if e.complexity.ScheduledJobRunCreatePayload.ScheduledJobRun == nil { + if e.ComplexityRoot.ScheduledJobRunCreatePayload.ScheduledJobRun == nil { break } - return e.complexity.ScheduledJobRunCreatePayload.ScheduledJobRun(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunCreatePayload.ScheduledJobRun(childComplexity), true case "ScheduledJobRunDeletePayload.deletedID": - if e.complexity.ScheduledJobRunDeletePayload.DeletedID == nil { + if e.ComplexityRoot.ScheduledJobRunDeletePayload.DeletedID == nil { break } - return e.complexity.ScheduledJobRunDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunDeletePayload.DeletedID(childComplexity), true case "ScheduledJobRunEdge.cursor": - if e.complexity.ScheduledJobRunEdge.Cursor == nil { + if e.ComplexityRoot.ScheduledJobRunEdge.Cursor == nil { break } - return e.complexity.ScheduledJobRunEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunEdge.Cursor(childComplexity), true case "ScheduledJobRunEdge.node": - if e.complexity.ScheduledJobRunEdge.Node == nil { + if e.ComplexityRoot.ScheduledJobRunEdge.Node == nil { break } - return e.complexity.ScheduledJobRunEdge.Node(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunEdge.Node(childComplexity), true case "ScheduledJobRunUpdatePayload.scheduledJobRun": - if e.complexity.ScheduledJobRunUpdatePayload.ScheduledJobRun == nil { + if e.ComplexityRoot.ScheduledJobRunUpdatePayload.ScheduledJobRun == nil { break } - return e.complexity.ScheduledJobRunUpdatePayload.ScheduledJobRun(childComplexity), true + return e.ComplexityRoot.ScheduledJobRunUpdatePayload.ScheduledJobRun(childComplexity), true case "ScheduledJobUpdatePayload.scheduledJob": - if e.complexity.ScheduledJobUpdatePayload.ScheduledJob == nil { + if e.ComplexityRoot.ScheduledJobUpdatePayload.ScheduledJob == nil { break } - return e.complexity.ScheduledJobUpdatePayload.ScheduledJob(childComplexity), true + return e.ComplexityRoot.ScheduledJobUpdatePayload.ScheduledJob(childComplexity), true case "SearchContext.entityID": - if e.complexity.SearchContext.EntityID == nil { + if e.ComplexityRoot.SearchContext.EntityID == nil { break } - return e.complexity.SearchContext.EntityID(childComplexity), true + return e.ComplexityRoot.SearchContext.EntityID(childComplexity), true case "SearchContext.entityType": - if e.complexity.SearchContext.EntityType == nil { + if e.ComplexityRoot.SearchContext.EntityType == nil { break } - return e.complexity.SearchContext.EntityType(childComplexity), true + return e.ComplexityRoot.SearchContext.EntityType(childComplexity), true case "SearchContext.matchedFields": - if e.complexity.SearchContext.MatchedFields == nil { + if e.ComplexityRoot.SearchContext.MatchedFields == nil { break } - return e.complexity.SearchContext.MatchedFields(childComplexity), true + return e.ComplexityRoot.SearchContext.MatchedFields(childComplexity), true case "SearchContext.snippets": - if e.complexity.SearchContext.Snippets == nil { + if e.ComplexityRoot.SearchContext.Snippets == nil { break } - return e.complexity.SearchContext.Snippets(childComplexity), true + return e.ComplexityRoot.SearchContext.Snippets(childComplexity), true case "SearchResults.actionPlans": - if e.complexity.SearchResults.ActionPlans == nil { + if e.ComplexityRoot.SearchResults.ActionPlans == nil { break } - return e.complexity.SearchResults.ActionPlans(childComplexity), true + return e.ComplexityRoot.SearchResults.ActionPlans(childComplexity), true case "SearchResults.assessmentResponses": - if e.complexity.SearchResults.AssessmentResponses == nil { + if e.ComplexityRoot.SearchResults.AssessmentResponses == nil { break } - return e.complexity.SearchResults.AssessmentResponses(childComplexity), true + return e.ComplexityRoot.SearchResults.AssessmentResponses(childComplexity), true case "SearchResults.assessments": - if e.complexity.SearchResults.Assessments == nil { + if e.ComplexityRoot.SearchResults.Assessments == nil { break } - return e.complexity.SearchResults.Assessments(childComplexity), true + return e.ComplexityRoot.SearchResults.Assessments(childComplexity), true case "SearchResults.assets": - if e.complexity.SearchResults.Assets == nil { + if e.ComplexityRoot.SearchResults.Assets == nil { break } - return e.complexity.SearchResults.Assets(childComplexity), true + return e.ComplexityRoot.SearchResults.Assets(childComplexity), true case "SearchResults.campaignTargets": - if e.complexity.SearchResults.CampaignTargets == nil { + if e.ComplexityRoot.SearchResults.CampaignTargets == nil { break } - return e.complexity.SearchResults.CampaignTargets(childComplexity), true + return e.ComplexityRoot.SearchResults.CampaignTargets(childComplexity), true case "SearchResults.campaigns": - if e.complexity.SearchResults.Campaigns == nil { + if e.ComplexityRoot.SearchResults.Campaigns == nil { break } - return e.complexity.SearchResults.Campaigns(childComplexity), true + return e.ComplexityRoot.SearchResults.Campaigns(childComplexity), true case "SearchResults.contacts": - if e.complexity.SearchResults.Contacts == nil { + if e.ComplexityRoot.SearchResults.Contacts == nil { break } - return e.complexity.SearchResults.Contacts(childComplexity), true + return e.ComplexityRoot.SearchResults.Contacts(childComplexity), true case "SearchResults.controlObjectives": - if e.complexity.SearchResults.ControlObjectives == nil { + if e.ComplexityRoot.SearchResults.ControlObjectives == nil { break } - return e.complexity.SearchResults.ControlObjectives(childComplexity), true + return e.ComplexityRoot.SearchResults.ControlObjectives(childComplexity), true case "SearchResults.controls": - if e.complexity.SearchResults.Controls == nil { + if e.ComplexityRoot.SearchResults.Controls == nil { break } - return e.complexity.SearchResults.Controls(childComplexity), true + return e.ComplexityRoot.SearchResults.Controls(childComplexity), true case "SearchResults.customTypeEnums": - if e.complexity.SearchResults.CustomTypeEnums == nil { + if e.ComplexityRoot.SearchResults.CustomTypeEnums == nil { break } - return e.complexity.SearchResults.CustomTypeEnums(childComplexity), true + return e.ComplexityRoot.SearchResults.CustomTypeEnums(childComplexity), true case "SearchResults.emailBrandings": - if e.complexity.SearchResults.EmailBrandings == nil { + if e.ComplexityRoot.SearchResults.EmailBrandings == nil { break } - return e.complexity.SearchResults.EmailBrandings(childComplexity), true + return e.ComplexityRoot.SearchResults.EmailBrandings(childComplexity), true case "SearchResults.emailTemplates": - if e.complexity.SearchResults.EmailTemplates == nil { + if e.ComplexityRoot.SearchResults.EmailTemplates == nil { break } - return e.complexity.SearchResults.EmailTemplates(childComplexity), true + return e.ComplexityRoot.SearchResults.EmailTemplates(childComplexity), true case "SearchResults.entities": - if e.complexity.SearchResults.Entities == nil { + if e.ComplexityRoot.SearchResults.Entities == nil { break } - return e.complexity.SearchResults.Entities(childComplexity), true + return e.ComplexityRoot.SearchResults.Entities(childComplexity), true case "SearchResults.evidences": - if e.complexity.SearchResults.Evidences == nil { + if e.ComplexityRoot.SearchResults.Evidences == nil { break } - return e.complexity.SearchResults.Evidences(childComplexity), true + return e.ComplexityRoot.SearchResults.Evidences(childComplexity), true case "SearchResults.findings": - if e.complexity.SearchResults.Findings == nil { + if e.ComplexityRoot.SearchResults.Findings == nil { break } - return e.complexity.SearchResults.Findings(childComplexity), true + return e.ComplexityRoot.SearchResults.Findings(childComplexity), true case "SearchResults.groups": - if e.complexity.SearchResults.Groups == nil { + if e.ComplexityRoot.SearchResults.Groups == nil { break } - return e.complexity.SearchResults.Groups(childComplexity), true + return e.ComplexityRoot.SearchResults.Groups(childComplexity), true case "SearchResults.identityHolders": - if e.complexity.SearchResults.IdentityHolders == nil { + if e.ComplexityRoot.SearchResults.IdentityHolders == nil { break } - return e.complexity.SearchResults.IdentityHolders(childComplexity), true + return e.ComplexityRoot.SearchResults.IdentityHolders(childComplexity), true case "SearchResults.integrations": - if e.complexity.SearchResults.Integrations == nil { + if e.ComplexityRoot.SearchResults.Integrations == nil { break } - return e.complexity.SearchResults.Integrations(childComplexity), true + return e.ComplexityRoot.SearchResults.Integrations(childComplexity), true case "SearchResults.internalPolicies": - if e.complexity.SearchResults.InternalPolicies == nil { + if e.ComplexityRoot.SearchResults.InternalPolicies == nil { break } - return e.complexity.SearchResults.InternalPolicies(childComplexity), true + return e.ComplexityRoot.SearchResults.InternalPolicies(childComplexity), true case "SearchResults.invites": - if e.complexity.SearchResults.Invites == nil { + if e.ComplexityRoot.SearchResults.Invites == nil { break } - return e.complexity.SearchResults.Invites(childComplexity), true + return e.ComplexityRoot.SearchResults.Invites(childComplexity), true case "SearchResults.jobRunners": - if e.complexity.SearchResults.JobRunners == nil { + if e.ComplexityRoot.SearchResults.JobRunners == nil { break } - return e.complexity.SearchResults.JobRunners(childComplexity), true + return e.ComplexityRoot.SearchResults.JobRunners(childComplexity), true case "SearchResults.jobTemplates": - if e.complexity.SearchResults.JobTemplates == nil { + if e.ComplexityRoot.SearchResults.JobTemplates == nil { break } - return e.complexity.SearchResults.JobTemplates(childComplexity), true + return e.ComplexityRoot.SearchResults.JobTemplates(childComplexity), true case "SearchResults.narratives": - if e.complexity.SearchResults.Narratives == nil { + if e.ComplexityRoot.SearchResults.Narratives == nil { break } - return e.complexity.SearchResults.Narratives(childComplexity), true + return e.ComplexityRoot.SearchResults.Narratives(childComplexity), true case "SearchResults.notificationTemplates": - if e.complexity.SearchResults.NotificationTemplates == nil { + if e.ComplexityRoot.SearchResults.NotificationTemplates == nil { break } - return e.complexity.SearchResults.NotificationTemplates(childComplexity), true + return e.ComplexityRoot.SearchResults.NotificationTemplates(childComplexity), true case "SearchResults.organizations": - if e.complexity.SearchResults.Organizations == nil { + if e.ComplexityRoot.SearchResults.Organizations == nil { break } - return e.complexity.SearchResults.Organizations(childComplexity), true + return e.ComplexityRoot.SearchResults.Organizations(childComplexity), true case "SearchResults.page": - if e.complexity.SearchResults.Page == nil { + if e.ComplexityRoot.SearchResults.Page == nil { break } - return e.complexity.SearchResults.Page(childComplexity), true + return e.ComplexityRoot.SearchResults.Page(childComplexity), true case "SearchResults.platforms": - if e.complexity.SearchResults.Platforms == nil { + if e.ComplexityRoot.SearchResults.Platforms == nil { break } - return e.complexity.SearchResults.Platforms(childComplexity), true + return e.ComplexityRoot.SearchResults.Platforms(childComplexity), true case "SearchResults.procedures": - if e.complexity.SearchResults.Procedures == nil { + if e.ComplexityRoot.SearchResults.Procedures == nil { break } - return e.complexity.SearchResults.Procedures(childComplexity), true + return e.ComplexityRoot.SearchResults.Procedures(childComplexity), true case "SearchResults.programs": - if e.complexity.SearchResults.Programs == nil { + if e.ComplexityRoot.SearchResults.Programs == nil { break } - return e.complexity.SearchResults.Programs(childComplexity), true + return e.ComplexityRoot.SearchResults.Programs(childComplexity), true case "SearchResults.remediations": - if e.complexity.SearchResults.Remediations == nil { + if e.ComplexityRoot.SearchResults.Remediations == nil { break } - return e.complexity.SearchResults.Remediations(childComplexity), true + return e.ComplexityRoot.SearchResults.Remediations(childComplexity), true case "SearchResults.reviews": - if e.complexity.SearchResults.Reviews == nil { + if e.ComplexityRoot.SearchResults.Reviews == nil { break } - return e.complexity.SearchResults.Reviews(childComplexity), true + return e.ComplexityRoot.SearchResults.Reviews(childComplexity), true case "SearchResults.risks": - if e.complexity.SearchResults.Risks == nil { + if e.ComplexityRoot.SearchResults.Risks == nil { break } - return e.complexity.SearchResults.Risks(childComplexity), true + return e.ComplexityRoot.SearchResults.Risks(childComplexity), true case "SearchResults.scans": - if e.complexity.SearchResults.Scans == nil { + if e.ComplexityRoot.SearchResults.Scans == nil { break } - return e.complexity.SearchResults.Scans(childComplexity), true + return e.ComplexityRoot.SearchResults.Scans(childComplexity), true case "SearchResults.searchContext": - if e.complexity.SearchResults.SearchContext == nil { + if e.ComplexityRoot.SearchResults.SearchContext == nil { break } - return e.complexity.SearchResults.SearchContext(childComplexity), true + return e.ComplexityRoot.SearchResults.SearchContext(childComplexity), true case "SearchResults.standards": - if e.complexity.SearchResults.Standards == nil { + if e.ComplexityRoot.SearchResults.Standards == nil { break } - return e.complexity.SearchResults.Standards(childComplexity), true + return e.ComplexityRoot.SearchResults.Standards(childComplexity), true case "SearchResults.subcontrols": - if e.complexity.SearchResults.Subcontrols == nil { + if e.ComplexityRoot.SearchResults.Subcontrols == nil { break } - return e.complexity.SearchResults.Subcontrols(childComplexity), true + return e.ComplexityRoot.SearchResults.Subcontrols(childComplexity), true case "SearchResults.subprocessors": - if e.complexity.SearchResults.Subprocessors == nil { + if e.ComplexityRoot.SearchResults.Subprocessors == nil { break } - return e.complexity.SearchResults.Subprocessors(childComplexity), true + return e.ComplexityRoot.SearchResults.Subprocessors(childComplexity), true case "SearchResults.subscribers": - if e.complexity.SearchResults.Subscribers == nil { + if e.ComplexityRoot.SearchResults.Subscribers == nil { break } - return e.complexity.SearchResults.Subscribers(childComplexity), true + return e.ComplexityRoot.SearchResults.Subscribers(childComplexity), true case "SearchResults.tagDefinitions": - if e.complexity.SearchResults.TagDefinitions == nil { + if e.ComplexityRoot.SearchResults.TagDefinitions == nil { break } - return e.complexity.SearchResults.TagDefinitions(childComplexity), true + return e.ComplexityRoot.SearchResults.TagDefinitions(childComplexity), true case "SearchResults.tasks": - if e.complexity.SearchResults.Tasks == nil { + if e.ComplexityRoot.SearchResults.Tasks == nil { break } - return e.complexity.SearchResults.Tasks(childComplexity), true + return e.ComplexityRoot.SearchResults.Tasks(childComplexity), true case "SearchResults.templates": - if e.complexity.SearchResults.Templates == nil { + if e.ComplexityRoot.SearchResults.Templates == nil { break } - return e.complexity.SearchResults.Templates(childComplexity), true + return e.ComplexityRoot.SearchResults.Templates(childComplexity), true case "SearchResults.totalCount": - if e.complexity.SearchResults.TotalCount == nil { + if e.ComplexityRoot.SearchResults.TotalCount == nil { break } - return e.complexity.SearchResults.TotalCount(childComplexity), true + return e.ComplexityRoot.SearchResults.TotalCount(childComplexity), true case "SearchResults.trustCenterEntities": - if e.complexity.SearchResults.TrustCenterEntities == nil { + if e.ComplexityRoot.SearchResults.TrustCenterEntities == nil { break } - return e.complexity.SearchResults.TrustCenterEntities(childComplexity), true + return e.ComplexityRoot.SearchResults.TrustCenterEntities(childComplexity), true case "SearchResults.vulnerabilities": - if e.complexity.SearchResults.Vulnerabilities == nil { + if e.ComplexityRoot.SearchResults.Vulnerabilities == nil { break } - return e.complexity.SearchResults.Vulnerabilities(childComplexity), true + return e.ComplexityRoot.SearchResults.Vulnerabilities(childComplexity), true case "SearchSnippet.field": - if e.complexity.SearchSnippet.Field == nil { + if e.ComplexityRoot.SearchSnippet.Field == nil { break } - return e.complexity.SearchSnippet.Field(childComplexity), true + return e.ComplexityRoot.SearchSnippet.Field(childComplexity), true case "SearchSnippet.text": - if e.complexity.SearchSnippet.Text == nil { + if e.ComplexityRoot.SearchSnippet.Text == nil { break } - return e.complexity.SearchSnippet.Text(childComplexity), true + return e.ComplexityRoot.SearchSnippet.Text(childComplexity), true case "Standard.applicablePlatforms": - if e.complexity.Standard.ApplicablePlatforms == nil { + if e.ComplexityRoot.Standard.ApplicablePlatforms == nil { break } @@ -40877,10 +40860,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Standard.ApplicablePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Standard.ApplicablePlatforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Standard.controls": - if e.complexity.Standard.Controls == nil { + if e.ComplexityRoot.Standard.Controls == nil { break } @@ -40889,178 +40872,178 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Standard.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Standard.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Standard.createdAt": - if e.complexity.Standard.CreatedAt == nil { + if e.ComplexityRoot.Standard.CreatedAt == nil { break } - return e.complexity.Standard.CreatedAt(childComplexity), true + return e.ComplexityRoot.Standard.CreatedAt(childComplexity), true case "Standard.createdBy": - if e.complexity.Standard.CreatedBy == nil { + if e.ComplexityRoot.Standard.CreatedBy == nil { break } - return e.complexity.Standard.CreatedBy(childComplexity), true + return e.ComplexityRoot.Standard.CreatedBy(childComplexity), true case "Standard.description": - if e.complexity.Standard.Description == nil { + if e.ComplexityRoot.Standard.Description == nil { break } - return e.complexity.Standard.Description(childComplexity), true + return e.ComplexityRoot.Standard.Description(childComplexity), true case "Standard.domains": - if e.complexity.Standard.Domains == nil { + if e.ComplexityRoot.Standard.Domains == nil { break } - return e.complexity.Standard.Domains(childComplexity), true + return e.ComplexityRoot.Standard.Domains(childComplexity), true case "Standard.framework": - if e.complexity.Standard.Framework == nil { + if e.ComplexityRoot.Standard.Framework == nil { break } - return e.complexity.Standard.Framework(childComplexity), true + return e.ComplexityRoot.Standard.Framework(childComplexity), true case "Standard.freeToUse": - if e.complexity.Standard.FreeToUse == nil { + if e.ComplexityRoot.Standard.FreeToUse == nil { break } - return e.complexity.Standard.FreeToUse(childComplexity), true + return e.ComplexityRoot.Standard.FreeToUse(childComplexity), true case "Standard.governingBody": - if e.complexity.Standard.GoverningBody == nil { + if e.ComplexityRoot.Standard.GoverningBody == nil { break } - return e.complexity.Standard.GoverningBody(childComplexity), true + return e.ComplexityRoot.Standard.GoverningBody(childComplexity), true case "Standard.governingBodyLogoURL": - if e.complexity.Standard.GoverningBodyLogoURL == nil { + if e.ComplexityRoot.Standard.GoverningBodyLogoURL == nil { break } - return e.complexity.Standard.GoverningBodyLogoURL(childComplexity), true + return e.ComplexityRoot.Standard.GoverningBodyLogoURL(childComplexity), true case "Standard.id": - if e.complexity.Standard.ID == nil { + if e.ComplexityRoot.Standard.ID == nil { break } - return e.complexity.Standard.ID(childComplexity), true + return e.ComplexityRoot.Standard.ID(childComplexity), true case "Standard.internalNotes": - if e.complexity.Standard.InternalNotes == nil { + if e.ComplexityRoot.Standard.InternalNotes == nil { break } - return e.complexity.Standard.InternalNotes(childComplexity), true + return e.ComplexityRoot.Standard.InternalNotes(childComplexity), true case "Standard.isPublic": - if e.complexity.Standard.IsPublic == nil { + if e.ComplexityRoot.Standard.IsPublic == nil { break } - return e.complexity.Standard.IsPublic(childComplexity), true + return e.ComplexityRoot.Standard.IsPublic(childComplexity), true case "Standard.link": - if e.complexity.Standard.Link == nil { + if e.ComplexityRoot.Standard.Link == nil { break } - return e.complexity.Standard.Link(childComplexity), true + return e.ComplexityRoot.Standard.Link(childComplexity), true case "Standard.logoFile": - if e.complexity.Standard.LogoFile == nil { + if e.ComplexityRoot.Standard.LogoFile == nil { break } - return e.complexity.Standard.LogoFile(childComplexity), true + return e.ComplexityRoot.Standard.LogoFile(childComplexity), true case "Standard.logoFileID": - if e.complexity.Standard.LogoFileID == nil { + if e.ComplexityRoot.Standard.LogoFileID == nil { break } - return e.complexity.Standard.LogoFileID(childComplexity), true + return e.ComplexityRoot.Standard.LogoFileID(childComplexity), true case "Standard.name": - if e.complexity.Standard.Name == nil { + if e.ComplexityRoot.Standard.Name == nil { break } - return e.complexity.Standard.Name(childComplexity), true + return e.ComplexityRoot.Standard.Name(childComplexity), true case "Standard.owner": - if e.complexity.Standard.Owner == nil { + if e.ComplexityRoot.Standard.Owner == nil { break } - return e.complexity.Standard.Owner(childComplexity), true + return e.ComplexityRoot.Standard.Owner(childComplexity), true case "Standard.ownerID": - if e.complexity.Standard.OwnerID == nil { + if e.ComplexityRoot.Standard.OwnerID == nil { break } - return e.complexity.Standard.OwnerID(childComplexity), true + return e.ComplexityRoot.Standard.OwnerID(childComplexity), true case "Standard.revision": - if e.complexity.Standard.Revision == nil { + if e.ComplexityRoot.Standard.Revision == nil { break } - return e.complexity.Standard.Revision(childComplexity), true + return e.ComplexityRoot.Standard.Revision(childComplexity), true case "Standard.shortName": - if e.complexity.Standard.ShortName == nil { + if e.ComplexityRoot.Standard.ShortName == nil { break } - return e.complexity.Standard.ShortName(childComplexity), true + return e.ComplexityRoot.Standard.ShortName(childComplexity), true case "Standard.standardType": - if e.complexity.Standard.StandardType == nil { + if e.ComplexityRoot.Standard.StandardType == nil { break } - return e.complexity.Standard.StandardType(childComplexity), true + return e.ComplexityRoot.Standard.StandardType(childComplexity), true case "Standard.status": - if e.complexity.Standard.Status == nil { + if e.ComplexityRoot.Standard.Status == nil { break } - return e.complexity.Standard.Status(childComplexity), true + return e.ComplexityRoot.Standard.Status(childComplexity), true case "Standard.systemInternalID": - if e.complexity.Standard.SystemInternalID == nil { + if e.ComplexityRoot.Standard.SystemInternalID == nil { break } - return e.complexity.Standard.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Standard.SystemInternalID(childComplexity), true case "Standard.systemOwned": - if e.complexity.Standard.SystemOwned == nil { + if e.ComplexityRoot.Standard.SystemOwned == nil { break } - return e.complexity.Standard.SystemOwned(childComplexity), true + return e.ComplexityRoot.Standard.SystemOwned(childComplexity), true case "Standard.tags": - if e.complexity.Standard.Tags == nil { + if e.ComplexityRoot.Standard.Tags == nil { break } - return e.complexity.Standard.Tags(childComplexity), true + return e.ComplexityRoot.Standard.Tags(childComplexity), true case "Standard.trustCenterCompliances": - if e.complexity.Standard.TrustCenterCompliances == nil { + if e.ComplexityRoot.Standard.TrustCenterCompliances == nil { break } @@ -41069,10 +41052,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Standard.TrustCenterCompliances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterComplianceOrder), args["where"].(*generated.TrustCenterComplianceWhereInput)), true + return e.ComplexityRoot.Standard.TrustCenterCompliances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterComplianceOrder), args["where"].(*generated.TrustCenterComplianceWhereInput)), true case "Standard.trustCenterDocs": - if e.complexity.Standard.TrustCenterDocs == nil { + if e.ComplexityRoot.Standard.TrustCenterDocs == nil { break } @@ -41081,94 +41064,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Standard.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true + return e.ComplexityRoot.Standard.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true case "Standard.updatedAt": - if e.complexity.Standard.UpdatedAt == nil { + if e.ComplexityRoot.Standard.UpdatedAt == nil { break } - return e.complexity.Standard.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Standard.UpdatedAt(childComplexity), true case "Standard.updatedBy": - if e.complexity.Standard.UpdatedBy == nil { + if e.ComplexityRoot.Standard.UpdatedBy == nil { break } - return e.complexity.Standard.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Standard.UpdatedBy(childComplexity), true case "Standard.version": - if e.complexity.Standard.Version == nil { + if e.ComplexityRoot.Standard.Version == nil { break } - return e.complexity.Standard.Version(childComplexity), true + return e.ComplexityRoot.Standard.Version(childComplexity), true case "StandardBulkCreatePayload.standards": - if e.complexity.StandardBulkCreatePayload.Standards == nil { + if e.ComplexityRoot.StandardBulkCreatePayload.Standards == nil { break } - return e.complexity.StandardBulkCreatePayload.Standards(childComplexity), true + return e.ComplexityRoot.StandardBulkCreatePayload.Standards(childComplexity), true case "StandardConnection.edges": - if e.complexity.StandardConnection.Edges == nil { + if e.ComplexityRoot.StandardConnection.Edges == nil { break } - return e.complexity.StandardConnection.Edges(childComplexity), true + return e.ComplexityRoot.StandardConnection.Edges(childComplexity), true case "StandardConnection.pageInfo": - if e.complexity.StandardConnection.PageInfo == nil { + if e.ComplexityRoot.StandardConnection.PageInfo == nil { break } - return e.complexity.StandardConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.StandardConnection.PageInfo(childComplexity), true case "StandardConnection.totalCount": - if e.complexity.StandardConnection.TotalCount == nil { + if e.ComplexityRoot.StandardConnection.TotalCount == nil { break } - return e.complexity.StandardConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.StandardConnection.TotalCount(childComplexity), true case "StandardCreatePayload.standard": - if e.complexity.StandardCreatePayload.Standard == nil { + if e.ComplexityRoot.StandardCreatePayload.Standard == nil { break } - return e.complexity.StandardCreatePayload.Standard(childComplexity), true + return e.ComplexityRoot.StandardCreatePayload.Standard(childComplexity), true case "StandardDeletePayload.deletedID": - if e.complexity.StandardDeletePayload.DeletedID == nil { + if e.ComplexityRoot.StandardDeletePayload.DeletedID == nil { break } - return e.complexity.StandardDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.StandardDeletePayload.DeletedID(childComplexity), true case "StandardEdge.cursor": - if e.complexity.StandardEdge.Cursor == nil { + if e.ComplexityRoot.StandardEdge.Cursor == nil { break } - return e.complexity.StandardEdge.Cursor(childComplexity), true + return e.ComplexityRoot.StandardEdge.Cursor(childComplexity), true case "StandardEdge.node": - if e.complexity.StandardEdge.Node == nil { + if e.ComplexityRoot.StandardEdge.Node == nil { break } - return e.complexity.StandardEdge.Node(childComplexity), true + return e.ComplexityRoot.StandardEdge.Node(childComplexity), true case "StandardUpdatePayload.standard": - if e.complexity.StandardUpdatePayload.Standard == nil { + if e.ComplexityRoot.StandardUpdatePayload.Standard == nil { break } - return e.complexity.StandardUpdatePayload.Standard(childComplexity), true + return e.ComplexityRoot.StandardUpdatePayload.Standard(childComplexity), true case "Subcontrol.actionPlans": - if e.complexity.Subcontrol.ActionPlans == nil { + if e.ComplexityRoot.Subcontrol.ActionPlans == nil { break } @@ -41177,59 +41160,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Subcontrol.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Subcontrol.activeWorkflowInstances": - if e.complexity.Subcontrol.ActiveWorkflowInstances == nil { + if e.ComplexityRoot.Subcontrol.ActiveWorkflowInstances == nil { break } - return e.complexity.Subcontrol.ActiveWorkflowInstances(childComplexity), true + return e.ComplexityRoot.Subcontrol.ActiveWorkflowInstances(childComplexity), true case "Subcontrol.aliases": - if e.complexity.Subcontrol.Aliases == nil { + if e.ComplexityRoot.Subcontrol.Aliases == nil { break } - return e.complexity.Subcontrol.Aliases(childComplexity), true + return e.ComplexityRoot.Subcontrol.Aliases(childComplexity), true case "Subcontrol.assessmentMethods": - if e.complexity.Subcontrol.AssessmentMethods == nil { + if e.ComplexityRoot.Subcontrol.AssessmentMethods == nil { break } - return e.complexity.Subcontrol.AssessmentMethods(childComplexity), true + return e.ComplexityRoot.Subcontrol.AssessmentMethods(childComplexity), true case "Subcontrol.assessmentObjectives": - if e.complexity.Subcontrol.AssessmentObjectives == nil { + if e.ComplexityRoot.Subcontrol.AssessmentObjectives == nil { break } - return e.complexity.Subcontrol.AssessmentObjectives(childComplexity), true + return e.ComplexityRoot.Subcontrol.AssessmentObjectives(childComplexity), true case "Subcontrol.auditorReferenceID": - if e.complexity.Subcontrol.AuditorReferenceID == nil { + if e.ComplexityRoot.Subcontrol.AuditorReferenceID == nil { break } - return e.complexity.Subcontrol.AuditorReferenceID(childComplexity), true + return e.ComplexityRoot.Subcontrol.AuditorReferenceID(childComplexity), true case "Subcontrol.category": - if e.complexity.Subcontrol.Category == nil { + if e.ComplexityRoot.Subcontrol.Category == nil { break } - return e.complexity.Subcontrol.Category(childComplexity), true + return e.ComplexityRoot.Subcontrol.Category(childComplexity), true case "Subcontrol.categoryID": - if e.complexity.Subcontrol.CategoryID == nil { + if e.ComplexityRoot.Subcontrol.CategoryID == nil { break } - return e.complexity.Subcontrol.CategoryID(childComplexity), true + return e.ComplexityRoot.Subcontrol.CategoryID(childComplexity), true case "Subcontrol.comments": - if e.complexity.Subcontrol.Comments == nil { + if e.ComplexityRoot.Subcontrol.Comments == nil { break } @@ -41238,24 +41221,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Subcontrol.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Subcontrol.control": - if e.complexity.Subcontrol.Control == nil { + if e.ComplexityRoot.Subcontrol.Control == nil { break } - return e.complexity.Subcontrol.Control(childComplexity), true + return e.ComplexityRoot.Subcontrol.Control(childComplexity), true case "Subcontrol.controlID": - if e.complexity.Subcontrol.ControlID == nil { + if e.ComplexityRoot.Subcontrol.ControlID == nil { break } - return e.complexity.Subcontrol.ControlID(childComplexity), true + return e.ComplexityRoot.Subcontrol.ControlID(childComplexity), true case "Subcontrol.controlImplementations": - if e.complexity.Subcontrol.ControlImplementations == nil { + if e.ComplexityRoot.Subcontrol.ControlImplementations == nil { break } @@ -41264,10 +41247,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Subcontrol.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Subcontrol.controlObjectives": - if e.complexity.Subcontrol.ControlObjectives == nil { + if e.ComplexityRoot.Subcontrol.ControlObjectives == nil { break } @@ -41276,73 +41259,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Subcontrol.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Subcontrol.controlOwner": - if e.complexity.Subcontrol.ControlOwner == nil { + if e.ComplexityRoot.Subcontrol.ControlOwner == nil { break } - return e.complexity.Subcontrol.ControlOwner(childComplexity), true + return e.ComplexityRoot.Subcontrol.ControlOwner(childComplexity), true case "Subcontrol.controlOwnerID": - if e.complexity.Subcontrol.ControlOwnerID == nil { + if e.ComplexityRoot.Subcontrol.ControlOwnerID == nil { break } - return e.complexity.Subcontrol.ControlOwnerID(childComplexity), true + return e.ComplexityRoot.Subcontrol.ControlOwnerID(childComplexity), true case "Subcontrol.controlQuestions": - if e.complexity.Subcontrol.ControlQuestions == nil { + if e.ComplexityRoot.Subcontrol.ControlQuestions == nil { break } - return e.complexity.Subcontrol.ControlQuestions(childComplexity), true + return e.ComplexityRoot.Subcontrol.ControlQuestions(childComplexity), true case "Subcontrol.createdAt": - if e.complexity.Subcontrol.CreatedAt == nil { + if e.ComplexityRoot.Subcontrol.CreatedAt == nil { break } - return e.complexity.Subcontrol.CreatedAt(childComplexity), true + return e.ComplexityRoot.Subcontrol.CreatedAt(childComplexity), true case "Subcontrol.createdBy": - if e.complexity.Subcontrol.CreatedBy == nil { + if e.ComplexityRoot.Subcontrol.CreatedBy == nil { break } - return e.complexity.Subcontrol.CreatedBy(childComplexity), true + return e.ComplexityRoot.Subcontrol.CreatedBy(childComplexity), true case "Subcontrol.delegate": - if e.complexity.Subcontrol.Delegate == nil { + if e.ComplexityRoot.Subcontrol.Delegate == nil { break } - return e.complexity.Subcontrol.Delegate(childComplexity), true + return e.ComplexityRoot.Subcontrol.Delegate(childComplexity), true case "Subcontrol.delegateID": - if e.complexity.Subcontrol.DelegateID == nil { + if e.ComplexityRoot.Subcontrol.DelegateID == nil { break } - return e.complexity.Subcontrol.DelegateID(childComplexity), true + return e.ComplexityRoot.Subcontrol.DelegateID(childComplexity), true case "Subcontrol.description": - if e.complexity.Subcontrol.Description == nil { + if e.ComplexityRoot.Subcontrol.Description == nil { break } - return e.complexity.Subcontrol.Description(childComplexity), true + return e.ComplexityRoot.Subcontrol.Description(childComplexity), true case "Subcontrol.descriptionJSON": - if e.complexity.Subcontrol.DescriptionJSON == nil { + if e.ComplexityRoot.Subcontrol.DescriptionJSON == nil { break } - return e.complexity.Subcontrol.DescriptionJSON(childComplexity), true + return e.ComplexityRoot.Subcontrol.DescriptionJSON(childComplexity), true case "Subcontrol.discussions": - if e.complexity.Subcontrol.Discussions == nil { + if e.ComplexityRoot.Subcontrol.Discussions == nil { break } @@ -41351,17 +41334,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true + return e.ComplexityRoot.Subcontrol.Discussions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DiscussionOrder), args["where"].(*generated.DiscussionWhereInput)), true case "Subcontrol.displayID": - if e.complexity.Subcontrol.DisplayID == nil { + if e.ComplexityRoot.Subcontrol.DisplayID == nil { break } - return e.complexity.Subcontrol.DisplayID(childComplexity), true + return e.ComplexityRoot.Subcontrol.DisplayID(childComplexity), true case "Subcontrol.evidence": - if e.complexity.Subcontrol.Evidence == nil { + if e.ComplexityRoot.Subcontrol.Evidence == nil { break } @@ -41370,59 +41353,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Subcontrol.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Subcontrol.evidenceRequests": - if e.complexity.Subcontrol.EvidenceRequests == nil { + if e.ComplexityRoot.Subcontrol.EvidenceRequests == nil { break } - return e.complexity.Subcontrol.EvidenceRequests(childComplexity), true + return e.ComplexityRoot.Subcontrol.EvidenceRequests(childComplexity), true case "Subcontrol.exampleEvidence": - if e.complexity.Subcontrol.ExampleEvidence == nil { + if e.ComplexityRoot.Subcontrol.ExampleEvidence == nil { break } - return e.complexity.Subcontrol.ExampleEvidence(childComplexity), true + return e.ComplexityRoot.Subcontrol.ExampleEvidence(childComplexity), true case "Subcontrol.hasPendingWorkflow": - if e.complexity.Subcontrol.HasPendingWorkflow == nil { + if e.ComplexityRoot.Subcontrol.HasPendingWorkflow == nil { break } - return e.complexity.Subcontrol.HasPendingWorkflow(childComplexity), true + return e.ComplexityRoot.Subcontrol.HasPendingWorkflow(childComplexity), true case "Subcontrol.hasWorkflowHistory": - if e.complexity.Subcontrol.HasWorkflowHistory == nil { + if e.ComplexityRoot.Subcontrol.HasWorkflowHistory == nil { break } - return e.complexity.Subcontrol.HasWorkflowHistory(childComplexity), true + return e.ComplexityRoot.Subcontrol.HasWorkflowHistory(childComplexity), true case "Subcontrol.id": - if e.complexity.Subcontrol.ID == nil { + if e.ComplexityRoot.Subcontrol.ID == nil { break } - return e.complexity.Subcontrol.ID(childComplexity), true + return e.ComplexityRoot.Subcontrol.ID(childComplexity), true case "Subcontrol.implementationGuidance": - if e.complexity.Subcontrol.ImplementationGuidance == nil { + if e.ComplexityRoot.Subcontrol.ImplementationGuidance == nil { break } - return e.complexity.Subcontrol.ImplementationGuidance(childComplexity), true + return e.ComplexityRoot.Subcontrol.ImplementationGuidance(childComplexity), true case "Subcontrol.internalNotes": - if e.complexity.Subcontrol.InternalNotes == nil { + if e.ComplexityRoot.Subcontrol.InternalNotes == nil { break } - return e.complexity.Subcontrol.InternalNotes(childComplexity), true + return e.ComplexityRoot.Subcontrol.InternalNotes(childComplexity), true case "Subcontrol.internalPolicies": - if e.complexity.Subcontrol.InternalPolicies == nil { + if e.ComplexityRoot.Subcontrol.InternalPolicies == nil { break } @@ -41431,17 +41414,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Subcontrol.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Subcontrol.mappedCategories": - if e.complexity.Subcontrol.MappedCategories == nil { + if e.ComplexityRoot.Subcontrol.MappedCategories == nil { break } - return e.complexity.Subcontrol.MappedCategories(childComplexity), true + return e.ComplexityRoot.Subcontrol.MappedCategories(childComplexity), true case "Subcontrol.narratives": - if e.complexity.Subcontrol.Narratives == nil { + if e.ComplexityRoot.Subcontrol.Narratives == nil { break } @@ -41450,24 +41433,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true + return e.ComplexityRoot.Subcontrol.Narratives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NarrativeOrder), args["where"].(*generated.NarrativeWhereInput)), true case "Subcontrol.owner": - if e.complexity.Subcontrol.Owner == nil { + if e.ComplexityRoot.Subcontrol.Owner == nil { break } - return e.complexity.Subcontrol.Owner(childComplexity), true + return e.ComplexityRoot.Subcontrol.Owner(childComplexity), true case "Subcontrol.ownerID": - if e.complexity.Subcontrol.OwnerID == nil { + if e.ComplexityRoot.Subcontrol.OwnerID == nil { break } - return e.complexity.Subcontrol.OwnerID(childComplexity), true + return e.ComplexityRoot.Subcontrol.OwnerID(childComplexity), true case "Subcontrol.procedures": - if e.complexity.Subcontrol.Procedures == nil { + if e.ComplexityRoot.Subcontrol.Procedures == nil { break } @@ -41476,59 +41459,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Subcontrol.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Subcontrol.refCode": - if e.complexity.Subcontrol.RefCode == nil { + if e.ComplexityRoot.Subcontrol.RefCode == nil { break } - return e.complexity.Subcontrol.RefCode(childComplexity), true + return e.ComplexityRoot.Subcontrol.RefCode(childComplexity), true case "Subcontrol.referenceFramework": - if e.complexity.Subcontrol.ReferenceFramework == nil { + if e.ComplexityRoot.Subcontrol.ReferenceFramework == nil { break } - return e.complexity.Subcontrol.ReferenceFramework(childComplexity), true + return e.ComplexityRoot.Subcontrol.ReferenceFramework(childComplexity), true case "Subcontrol.referenceFrameworkRevision": - if e.complexity.Subcontrol.ReferenceFrameworkRevision == nil { + if e.ComplexityRoot.Subcontrol.ReferenceFrameworkRevision == nil { break } - return e.complexity.Subcontrol.ReferenceFrameworkRevision(childComplexity), true + return e.ComplexityRoot.Subcontrol.ReferenceFrameworkRevision(childComplexity), true case "Subcontrol.referenceID": - if e.complexity.Subcontrol.ReferenceID == nil { + if e.ComplexityRoot.Subcontrol.ReferenceID == nil { break } - return e.complexity.Subcontrol.ReferenceID(childComplexity), true + return e.ComplexityRoot.Subcontrol.ReferenceID(childComplexity), true case "Subcontrol.references": - if e.complexity.Subcontrol.References == nil { + if e.ComplexityRoot.Subcontrol.References == nil { break } - return e.complexity.Subcontrol.References(childComplexity), true + return e.ComplexityRoot.Subcontrol.References(childComplexity), true case "Subcontrol.responsibleParty": - if e.complexity.Subcontrol.ResponsibleParty == nil { + if e.ComplexityRoot.Subcontrol.ResponsibleParty == nil { break } - return e.complexity.Subcontrol.ResponsibleParty(childComplexity), true + return e.ComplexityRoot.Subcontrol.ResponsibleParty(childComplexity), true case "Subcontrol.responsiblePartyID": - if e.complexity.Subcontrol.ResponsiblePartyID == nil { + if e.ComplexityRoot.Subcontrol.ResponsiblePartyID == nil { break } - return e.complexity.Subcontrol.ResponsiblePartyID(childComplexity), true + return e.ComplexityRoot.Subcontrol.ResponsiblePartyID(childComplexity), true case "Subcontrol.risks": - if e.complexity.Subcontrol.Risks == nil { + if e.ComplexityRoot.Subcontrol.Risks == nil { break } @@ -41537,10 +41520,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Subcontrol.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Subcontrol.scheduledJobs": - if e.complexity.Subcontrol.ScheduledJobs == nil { + if e.ComplexityRoot.Subcontrol.ScheduledJobs == nil { break } @@ -41549,73 +41532,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true + return e.ComplexityRoot.Subcontrol.ScheduledJobs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScheduledJobOrder), args["where"].(*generated.ScheduledJobWhereInput)), true case "Subcontrol.source": - if e.complexity.Subcontrol.Source == nil { + if e.ComplexityRoot.Subcontrol.Source == nil { break } - return e.complexity.Subcontrol.Source(childComplexity), true + return e.ComplexityRoot.Subcontrol.Source(childComplexity), true case "Subcontrol.status": - if e.complexity.Subcontrol.Status == nil { + if e.ComplexityRoot.Subcontrol.Status == nil { break } - return e.complexity.Subcontrol.Status(childComplexity), true + return e.ComplexityRoot.Subcontrol.Status(childComplexity), true case "Subcontrol.subcategory": - if e.complexity.Subcontrol.Subcategory == nil { + if e.ComplexityRoot.Subcontrol.Subcategory == nil { break } - return e.complexity.Subcontrol.Subcategory(childComplexity), true + return e.ComplexityRoot.Subcontrol.Subcategory(childComplexity), true case "Subcontrol.subcontrolKind": - if e.complexity.Subcontrol.SubcontrolKind == nil { + if e.ComplexityRoot.Subcontrol.SubcontrolKind == nil { break } - return e.complexity.Subcontrol.SubcontrolKind(childComplexity), true + return e.ComplexityRoot.Subcontrol.SubcontrolKind(childComplexity), true case "Subcontrol.subcontrolKindID": - if e.complexity.Subcontrol.SubcontrolKindID == nil { + if e.ComplexityRoot.Subcontrol.SubcontrolKindID == nil { break } - return e.complexity.Subcontrol.SubcontrolKindID(childComplexity), true + return e.ComplexityRoot.Subcontrol.SubcontrolKindID(childComplexity), true case "Subcontrol.subcontrolKindName": - if e.complexity.Subcontrol.SubcontrolKindName == nil { + if e.ComplexityRoot.Subcontrol.SubcontrolKindName == nil { break } - return e.complexity.Subcontrol.SubcontrolKindName(childComplexity), true + return e.ComplexityRoot.Subcontrol.SubcontrolKindName(childComplexity), true case "Subcontrol.systemInternalID": - if e.complexity.Subcontrol.SystemInternalID == nil { + if e.ComplexityRoot.Subcontrol.SystemInternalID == nil { break } - return e.complexity.Subcontrol.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Subcontrol.SystemInternalID(childComplexity), true case "Subcontrol.systemOwned": - if e.complexity.Subcontrol.SystemOwned == nil { + if e.ComplexityRoot.Subcontrol.SystemOwned == nil { break } - return e.complexity.Subcontrol.SystemOwned(childComplexity), true + return e.ComplexityRoot.Subcontrol.SystemOwned(childComplexity), true case "Subcontrol.tags": - if e.complexity.Subcontrol.Tags == nil { + if e.ComplexityRoot.Subcontrol.Tags == nil { break } - return e.complexity.Subcontrol.Tags(childComplexity), true + return e.ComplexityRoot.Subcontrol.Tags(childComplexity), true case "Subcontrol.tasks": - if e.complexity.Subcontrol.Tasks == nil { + if e.ComplexityRoot.Subcontrol.Tasks == nil { break } @@ -41624,45 +41607,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Subcontrol.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Subcontrol.testingProcedures": - if e.complexity.Subcontrol.TestingProcedures == nil { + if e.ComplexityRoot.Subcontrol.TestingProcedures == nil { break } - return e.complexity.Subcontrol.TestingProcedures(childComplexity), true + return e.ComplexityRoot.Subcontrol.TestingProcedures(childComplexity), true case "Subcontrol.title": - if e.complexity.Subcontrol.Title == nil { + if e.ComplexityRoot.Subcontrol.Title == nil { break } - return e.complexity.Subcontrol.Title(childComplexity), true + return e.ComplexityRoot.Subcontrol.Title(childComplexity), true case "Subcontrol.updatedAt": - if e.complexity.Subcontrol.UpdatedAt == nil { + if e.ComplexityRoot.Subcontrol.UpdatedAt == nil { break } - return e.complexity.Subcontrol.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Subcontrol.UpdatedAt(childComplexity), true case "Subcontrol.updatedBy": - if e.complexity.Subcontrol.UpdatedBy == nil { + if e.ComplexityRoot.Subcontrol.UpdatedBy == nil { break } - return e.complexity.Subcontrol.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Subcontrol.UpdatedBy(childComplexity), true case "Subcontrol.workflowEligibleMarker": - if e.complexity.Subcontrol.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.Subcontrol.WorkflowEligibleMarker == nil { break } - return e.complexity.Subcontrol.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.Subcontrol.WorkflowEligibleMarker(childComplexity), true case "Subcontrol.workflowObjectRefs": - if e.complexity.Subcontrol.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Subcontrol.WorkflowObjectRefs == nil { break } @@ -41671,10 +41654,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Subcontrol.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "Subcontrol.workflowTimeline": - if e.complexity.Subcontrol.WorkflowTimeline == nil { + if e.ComplexityRoot.Subcontrol.WorkflowTimeline == nil { break } @@ -41683,122 +41666,122 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subcontrol.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true + return e.ComplexityRoot.Subcontrol.WorkflowTimeline(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput), args["includeEmitFailures"].(*bool)), true case "SubcontrolBulkCreatePayload.subcontrols": - if e.complexity.SubcontrolBulkCreatePayload.Subcontrols == nil { + if e.ComplexityRoot.SubcontrolBulkCreatePayload.Subcontrols == nil { break } - return e.complexity.SubcontrolBulkCreatePayload.Subcontrols(childComplexity), true + return e.ComplexityRoot.SubcontrolBulkCreatePayload.Subcontrols(childComplexity), true case "SubcontrolBulkDeletePayload.deletedIDs": - if e.complexity.SubcontrolBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.SubcontrolBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.SubcontrolBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.SubcontrolBulkDeletePayload.DeletedIDs(childComplexity), true case "SubcontrolBulkUpdatePayload.subcontrols": - if e.complexity.SubcontrolBulkUpdatePayload.Subcontrols == nil { + if e.ComplexityRoot.SubcontrolBulkUpdatePayload.Subcontrols == nil { break } - return e.complexity.SubcontrolBulkUpdatePayload.Subcontrols(childComplexity), true + return e.ComplexityRoot.SubcontrolBulkUpdatePayload.Subcontrols(childComplexity), true case "SubcontrolBulkUpdatePayload.updatedIDs": - if e.complexity.SubcontrolBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.SubcontrolBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.SubcontrolBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.SubcontrolBulkUpdatePayload.UpdatedIDs(childComplexity), true case "SubcontrolConnection.edges": - if e.complexity.SubcontrolConnection.Edges == nil { + if e.ComplexityRoot.SubcontrolConnection.Edges == nil { break } - return e.complexity.SubcontrolConnection.Edges(childComplexity), true + return e.ComplexityRoot.SubcontrolConnection.Edges(childComplexity), true case "SubcontrolConnection.pageInfo": - if e.complexity.SubcontrolConnection.PageInfo == nil { + if e.ComplexityRoot.SubcontrolConnection.PageInfo == nil { break } - return e.complexity.SubcontrolConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.SubcontrolConnection.PageInfo(childComplexity), true case "SubcontrolConnection.totalCount": - if e.complexity.SubcontrolConnection.TotalCount == nil { + if e.ComplexityRoot.SubcontrolConnection.TotalCount == nil { break } - return e.complexity.SubcontrolConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.SubcontrolConnection.TotalCount(childComplexity), true case "SubcontrolCreatePayload.subcontrol": - if e.complexity.SubcontrolCreatePayload.Subcontrol == nil { + if e.ComplexityRoot.SubcontrolCreatePayload.Subcontrol == nil { break } - return e.complexity.SubcontrolCreatePayload.Subcontrol(childComplexity), true + return e.ComplexityRoot.SubcontrolCreatePayload.Subcontrol(childComplexity), true case "SubcontrolDeletePayload.deletedID": - if e.complexity.SubcontrolDeletePayload.DeletedID == nil { + if e.ComplexityRoot.SubcontrolDeletePayload.DeletedID == nil { break } - return e.complexity.SubcontrolDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.SubcontrolDeletePayload.DeletedID(childComplexity), true case "SubcontrolEdge.cursor": - if e.complexity.SubcontrolEdge.Cursor == nil { + if e.ComplexityRoot.SubcontrolEdge.Cursor == nil { break } - return e.complexity.SubcontrolEdge.Cursor(childComplexity), true + return e.ComplexityRoot.SubcontrolEdge.Cursor(childComplexity), true case "SubcontrolEdge.node": - if e.complexity.SubcontrolEdge.Node == nil { + if e.ComplexityRoot.SubcontrolEdge.Node == nil { break } - return e.complexity.SubcontrolEdge.Node(childComplexity), true + return e.ComplexityRoot.SubcontrolEdge.Node(childComplexity), true case "SubcontrolUpdatePayload.subcontrol": - if e.complexity.SubcontrolUpdatePayload.Subcontrol == nil { + if e.ComplexityRoot.SubcontrolUpdatePayload.Subcontrol == nil { break } - return e.complexity.SubcontrolUpdatePayload.Subcontrol(childComplexity), true + return e.ComplexityRoot.SubcontrolUpdatePayload.Subcontrol(childComplexity), true case "SubmitTrustCenterNDAResponsePayload.documentData": - if e.complexity.SubmitTrustCenterNDAResponsePayload.DocumentData == nil { + if e.ComplexityRoot.SubmitTrustCenterNDAResponsePayload.DocumentData == nil { break } - return e.complexity.SubmitTrustCenterNDAResponsePayload.DocumentData(childComplexity), true + return e.ComplexityRoot.SubmitTrustCenterNDAResponsePayload.DocumentData(childComplexity), true case "Subprocessor.createdAt": - if e.complexity.Subprocessor.CreatedAt == nil { + if e.ComplexityRoot.Subprocessor.CreatedAt == nil { break } - return e.complexity.Subprocessor.CreatedAt(childComplexity), true + return e.ComplexityRoot.Subprocessor.CreatedAt(childComplexity), true case "Subprocessor.createdBy": - if e.complexity.Subprocessor.CreatedBy == nil { + if e.ComplexityRoot.Subprocessor.CreatedBy == nil { break } - return e.complexity.Subprocessor.CreatedBy(childComplexity), true + return e.ComplexityRoot.Subprocessor.CreatedBy(childComplexity), true case "Subprocessor.description": - if e.complexity.Subprocessor.Description == nil { + if e.ComplexityRoot.Subprocessor.Description == nil { break } - return e.complexity.Subprocessor.Description(childComplexity), true + return e.ComplexityRoot.Subprocessor.Description(childComplexity), true case "Subprocessor.entities": - if e.complexity.Subprocessor.Entities == nil { + if e.ComplexityRoot.Subprocessor.Entities == nil { break } @@ -41807,87 +41790,87 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subprocessor.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Subprocessor.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Subprocessor.id": - if e.complexity.Subprocessor.ID == nil { + if e.ComplexityRoot.Subprocessor.ID == nil { break } - return e.complexity.Subprocessor.ID(childComplexity), true + return e.ComplexityRoot.Subprocessor.ID(childComplexity), true case "Subprocessor.internalNotes": - if e.complexity.Subprocessor.InternalNotes == nil { + if e.ComplexityRoot.Subprocessor.InternalNotes == nil { break } - return e.complexity.Subprocessor.InternalNotes(childComplexity), true + return e.ComplexityRoot.Subprocessor.InternalNotes(childComplexity), true case "Subprocessor.logoFile": - if e.complexity.Subprocessor.LogoFile == nil { + if e.ComplexityRoot.Subprocessor.LogoFile == nil { break } - return e.complexity.Subprocessor.LogoFile(childComplexity), true + return e.ComplexityRoot.Subprocessor.LogoFile(childComplexity), true case "Subprocessor.logoFileID": - if e.complexity.Subprocessor.LogoFileID == nil { + if e.ComplexityRoot.Subprocessor.LogoFileID == nil { break } - return e.complexity.Subprocessor.LogoFileID(childComplexity), true + return e.ComplexityRoot.Subprocessor.LogoFileID(childComplexity), true case "Subprocessor.logoRemoteURL": - if e.complexity.Subprocessor.LogoRemoteURL == nil { + if e.ComplexityRoot.Subprocessor.LogoRemoteURL == nil { break } - return e.complexity.Subprocessor.LogoRemoteURL(childComplexity), true + return e.ComplexityRoot.Subprocessor.LogoRemoteURL(childComplexity), true case "Subprocessor.name": - if e.complexity.Subprocessor.Name == nil { + if e.ComplexityRoot.Subprocessor.Name == nil { break } - return e.complexity.Subprocessor.Name(childComplexity), true + return e.ComplexityRoot.Subprocessor.Name(childComplexity), true case "Subprocessor.owner": - if e.complexity.Subprocessor.Owner == nil { + if e.ComplexityRoot.Subprocessor.Owner == nil { break } - return e.complexity.Subprocessor.Owner(childComplexity), true + return e.ComplexityRoot.Subprocessor.Owner(childComplexity), true case "Subprocessor.ownerID": - if e.complexity.Subprocessor.OwnerID == nil { + if e.ComplexityRoot.Subprocessor.OwnerID == nil { break } - return e.complexity.Subprocessor.OwnerID(childComplexity), true + return e.ComplexityRoot.Subprocessor.OwnerID(childComplexity), true case "Subprocessor.systemInternalID": - if e.complexity.Subprocessor.SystemInternalID == nil { + if e.ComplexityRoot.Subprocessor.SystemInternalID == nil { break } - return e.complexity.Subprocessor.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Subprocessor.SystemInternalID(childComplexity), true case "Subprocessor.systemOwned": - if e.complexity.Subprocessor.SystemOwned == nil { + if e.ComplexityRoot.Subprocessor.SystemOwned == nil { break } - return e.complexity.Subprocessor.SystemOwned(childComplexity), true + return e.ComplexityRoot.Subprocessor.SystemOwned(childComplexity), true case "Subprocessor.tags": - if e.complexity.Subprocessor.Tags == nil { + if e.ComplexityRoot.Subprocessor.Tags == nil { break } - return e.complexity.Subprocessor.Tags(childComplexity), true + return e.ComplexityRoot.Subprocessor.Tags(childComplexity), true case "Subprocessor.trustCenterSubprocessors": - if e.complexity.Subprocessor.TrustCenterSubprocessors == nil { + if e.ComplexityRoot.Subprocessor.TrustCenterSubprocessors == nil { break } @@ -41896,136 +41879,136 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subprocessor.TrustCenterSubprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), args["where"].(*generated.TrustCenterSubprocessorWhereInput)), true + return e.ComplexityRoot.Subprocessor.TrustCenterSubprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), args["where"].(*generated.TrustCenterSubprocessorWhereInput)), true case "Subprocessor.updatedAt": - if e.complexity.Subprocessor.UpdatedAt == nil { + if e.ComplexityRoot.Subprocessor.UpdatedAt == nil { break } - return e.complexity.Subprocessor.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Subprocessor.UpdatedAt(childComplexity), true case "Subprocessor.updatedBy": - if e.complexity.Subprocessor.UpdatedBy == nil { + if e.ComplexityRoot.Subprocessor.UpdatedBy == nil { break } - return e.complexity.Subprocessor.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Subprocessor.UpdatedBy(childComplexity), true case "SubprocessorBulkCreatePayload.subprocessors": - if e.complexity.SubprocessorBulkCreatePayload.Subprocessors == nil { + if e.ComplexityRoot.SubprocessorBulkCreatePayload.Subprocessors == nil { break } - return e.complexity.SubprocessorBulkCreatePayload.Subprocessors(childComplexity), true + return e.ComplexityRoot.SubprocessorBulkCreatePayload.Subprocessors(childComplexity), true case "SubprocessorBulkDeletePayload.deletedIDs": - if e.complexity.SubprocessorBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.SubprocessorBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.SubprocessorBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.SubprocessorBulkDeletePayload.DeletedIDs(childComplexity), true case "SubprocessorBulkUpdatePayload.subprocessors": - if e.complexity.SubprocessorBulkUpdatePayload.Subprocessors == nil { + if e.ComplexityRoot.SubprocessorBulkUpdatePayload.Subprocessors == nil { break } - return e.complexity.SubprocessorBulkUpdatePayload.Subprocessors(childComplexity), true + return e.ComplexityRoot.SubprocessorBulkUpdatePayload.Subprocessors(childComplexity), true case "SubprocessorBulkUpdatePayload.updatedIDs": - if e.complexity.SubprocessorBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.SubprocessorBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.SubprocessorBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.SubprocessorBulkUpdatePayload.UpdatedIDs(childComplexity), true case "SubprocessorConnection.edges": - if e.complexity.SubprocessorConnection.Edges == nil { + if e.ComplexityRoot.SubprocessorConnection.Edges == nil { break } - return e.complexity.SubprocessorConnection.Edges(childComplexity), true + return e.ComplexityRoot.SubprocessorConnection.Edges(childComplexity), true case "SubprocessorConnection.pageInfo": - if e.complexity.SubprocessorConnection.PageInfo == nil { + if e.ComplexityRoot.SubprocessorConnection.PageInfo == nil { break } - return e.complexity.SubprocessorConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.SubprocessorConnection.PageInfo(childComplexity), true case "SubprocessorConnection.totalCount": - if e.complexity.SubprocessorConnection.TotalCount == nil { + if e.ComplexityRoot.SubprocessorConnection.TotalCount == nil { break } - return e.complexity.SubprocessorConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.SubprocessorConnection.TotalCount(childComplexity), true case "SubprocessorCreatePayload.subprocessor": - if e.complexity.SubprocessorCreatePayload.Subprocessor == nil { + if e.ComplexityRoot.SubprocessorCreatePayload.Subprocessor == nil { break } - return e.complexity.SubprocessorCreatePayload.Subprocessor(childComplexity), true + return e.ComplexityRoot.SubprocessorCreatePayload.Subprocessor(childComplexity), true case "SubprocessorDeletePayload.deletedID": - if e.complexity.SubprocessorDeletePayload.DeletedID == nil { + if e.ComplexityRoot.SubprocessorDeletePayload.DeletedID == nil { break } - return e.complexity.SubprocessorDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.SubprocessorDeletePayload.DeletedID(childComplexity), true case "SubprocessorEdge.cursor": - if e.complexity.SubprocessorEdge.Cursor == nil { + if e.ComplexityRoot.SubprocessorEdge.Cursor == nil { break } - return e.complexity.SubprocessorEdge.Cursor(childComplexity), true + return e.ComplexityRoot.SubprocessorEdge.Cursor(childComplexity), true case "SubprocessorEdge.node": - if e.complexity.SubprocessorEdge.Node == nil { + if e.ComplexityRoot.SubprocessorEdge.Node == nil { break } - return e.complexity.SubprocessorEdge.Node(childComplexity), true + return e.ComplexityRoot.SubprocessorEdge.Node(childComplexity), true case "SubprocessorUpdatePayload.subprocessor": - if e.complexity.SubprocessorUpdatePayload.Subprocessor == nil { + if e.ComplexityRoot.SubprocessorUpdatePayload.Subprocessor == nil { break } - return e.complexity.SubprocessorUpdatePayload.Subprocessor(childComplexity), true + return e.ComplexityRoot.SubprocessorUpdatePayload.Subprocessor(childComplexity), true case "Subscriber.active": - if e.complexity.Subscriber.Active == nil { + if e.ComplexityRoot.Subscriber.Active == nil { break } - return e.complexity.Subscriber.Active(childComplexity), true + return e.ComplexityRoot.Subscriber.Active(childComplexity), true case "Subscriber.createdAt": - if e.complexity.Subscriber.CreatedAt == nil { + if e.ComplexityRoot.Subscriber.CreatedAt == nil { break } - return e.complexity.Subscriber.CreatedAt(childComplexity), true + return e.ComplexityRoot.Subscriber.CreatedAt(childComplexity), true case "Subscriber.createdBy": - if e.complexity.Subscriber.CreatedBy == nil { + if e.ComplexityRoot.Subscriber.CreatedBy == nil { break } - return e.complexity.Subscriber.CreatedBy(childComplexity), true + return e.ComplexityRoot.Subscriber.CreatedBy(childComplexity), true case "Subscriber.email": - if e.complexity.Subscriber.Email == nil { + if e.ComplexityRoot.Subscriber.Email == nil { break } - return e.complexity.Subscriber.Email(childComplexity), true + return e.ComplexityRoot.Subscriber.Email(childComplexity), true case "Subscriber.events": - if e.complexity.Subscriber.Events == nil { + if e.ComplexityRoot.Subscriber.Events == nil { break } @@ -42034,465 +42017,465 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Subscriber.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.Subscriber.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "Subscriber.id": - if e.complexity.Subscriber.ID == nil { + if e.ComplexityRoot.Subscriber.ID == nil { break } - return e.complexity.Subscriber.ID(childComplexity), true + return e.ComplexityRoot.Subscriber.ID(childComplexity), true case "Subscriber.owner": - if e.complexity.Subscriber.Owner == nil { + if e.ComplexityRoot.Subscriber.Owner == nil { break } - return e.complexity.Subscriber.Owner(childComplexity), true + return e.ComplexityRoot.Subscriber.Owner(childComplexity), true case "Subscriber.ownerID": - if e.complexity.Subscriber.OwnerID == nil { + if e.ComplexityRoot.Subscriber.OwnerID == nil { break } - return e.complexity.Subscriber.OwnerID(childComplexity), true + return e.ComplexityRoot.Subscriber.OwnerID(childComplexity), true case "Subscriber.phoneNumber": - if e.complexity.Subscriber.PhoneNumber == nil { + if e.ComplexityRoot.Subscriber.PhoneNumber == nil { break } - return e.complexity.Subscriber.PhoneNumber(childComplexity), true + return e.ComplexityRoot.Subscriber.PhoneNumber(childComplexity), true case "Subscriber.sendAttempts": - if e.complexity.Subscriber.SendAttempts == nil { + if e.ComplexityRoot.Subscriber.SendAttempts == nil { break } - return e.complexity.Subscriber.SendAttempts(childComplexity), true + return e.ComplexityRoot.Subscriber.SendAttempts(childComplexity), true case "Subscriber.tags": - if e.complexity.Subscriber.Tags == nil { + if e.ComplexityRoot.Subscriber.Tags == nil { break } - return e.complexity.Subscriber.Tags(childComplexity), true + return e.ComplexityRoot.Subscriber.Tags(childComplexity), true case "Subscriber.unsubscribed": - if e.complexity.Subscriber.Unsubscribed == nil { + if e.ComplexityRoot.Subscriber.Unsubscribed == nil { break } - return e.complexity.Subscriber.Unsubscribed(childComplexity), true + return e.ComplexityRoot.Subscriber.Unsubscribed(childComplexity), true case "Subscriber.updatedAt": - if e.complexity.Subscriber.UpdatedAt == nil { + if e.ComplexityRoot.Subscriber.UpdatedAt == nil { break } - return e.complexity.Subscriber.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Subscriber.UpdatedAt(childComplexity), true case "Subscriber.updatedBy": - if e.complexity.Subscriber.UpdatedBy == nil { + if e.ComplexityRoot.Subscriber.UpdatedBy == nil { break } - return e.complexity.Subscriber.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Subscriber.UpdatedBy(childComplexity), true case "Subscriber.verifiedEmail": - if e.complexity.Subscriber.VerifiedEmail == nil { + if e.ComplexityRoot.Subscriber.VerifiedEmail == nil { break } - return e.complexity.Subscriber.VerifiedEmail(childComplexity), true + return e.ComplexityRoot.Subscriber.VerifiedEmail(childComplexity), true case "Subscriber.verifiedPhone": - if e.complexity.Subscriber.VerifiedPhone == nil { + if e.ComplexityRoot.Subscriber.VerifiedPhone == nil { break } - return e.complexity.Subscriber.VerifiedPhone(childComplexity), true + return e.ComplexityRoot.Subscriber.VerifiedPhone(childComplexity), true case "SubscriberBulkCreatePayload.subscribers": - if e.complexity.SubscriberBulkCreatePayload.Subscribers == nil { + if e.ComplexityRoot.SubscriberBulkCreatePayload.Subscribers == nil { break } - return e.complexity.SubscriberBulkCreatePayload.Subscribers(childComplexity), true + return e.ComplexityRoot.SubscriberBulkCreatePayload.Subscribers(childComplexity), true case "SubscriberConnection.edges": - if e.complexity.SubscriberConnection.Edges == nil { + if e.ComplexityRoot.SubscriberConnection.Edges == nil { break } - return e.complexity.SubscriberConnection.Edges(childComplexity), true + return e.ComplexityRoot.SubscriberConnection.Edges(childComplexity), true case "SubscriberConnection.pageInfo": - if e.complexity.SubscriberConnection.PageInfo == nil { + if e.ComplexityRoot.SubscriberConnection.PageInfo == nil { break } - return e.complexity.SubscriberConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.SubscriberConnection.PageInfo(childComplexity), true case "SubscriberConnection.totalCount": - if e.complexity.SubscriberConnection.TotalCount == nil { + if e.ComplexityRoot.SubscriberConnection.TotalCount == nil { break } - return e.complexity.SubscriberConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.SubscriberConnection.TotalCount(childComplexity), true case "SubscriberCreatePayload.subscriber": - if e.complexity.SubscriberCreatePayload.Subscriber == nil { + if e.ComplexityRoot.SubscriberCreatePayload.Subscriber == nil { break } - return e.complexity.SubscriberCreatePayload.Subscriber(childComplexity), true + return e.ComplexityRoot.SubscriberCreatePayload.Subscriber(childComplexity), true case "SubscriberDeletePayload.email": - if e.complexity.SubscriberDeletePayload.Email == nil { + if e.ComplexityRoot.SubscriberDeletePayload.Email == nil { break } - return e.complexity.SubscriberDeletePayload.Email(childComplexity), true + return e.ComplexityRoot.SubscriberDeletePayload.Email(childComplexity), true case "SubscriberEdge.cursor": - if e.complexity.SubscriberEdge.Cursor == nil { + if e.ComplexityRoot.SubscriberEdge.Cursor == nil { break } - return e.complexity.SubscriberEdge.Cursor(childComplexity), true + return e.ComplexityRoot.SubscriberEdge.Cursor(childComplexity), true case "SubscriberEdge.node": - if e.complexity.SubscriberEdge.Node == nil { + if e.ComplexityRoot.SubscriberEdge.Node == nil { break } - return e.complexity.SubscriberEdge.Node(childComplexity), true + return e.ComplexityRoot.SubscriberEdge.Node(childComplexity), true case "SubscriberUpdatePayload.subscriber": - if e.complexity.SubscriberUpdatePayload.Subscriber == nil { + if e.ComplexityRoot.SubscriberUpdatePayload.Subscriber == nil { break } - return e.complexity.SubscriberUpdatePayload.Subscriber(childComplexity), true + return e.ComplexityRoot.SubscriberUpdatePayload.Subscriber(childComplexity), true case "Subscription.notificationCreated": - if e.complexity.Subscription.NotificationCreated == nil { + if e.ComplexityRoot.Subscription.NotificationCreated == nil { break } - return e.complexity.Subscription.NotificationCreated(childComplexity), true + return e.ComplexityRoot.Subscription.NotificationCreated(childComplexity), true case "TFASetting.createdAt": - if e.complexity.TFASetting.CreatedAt == nil { + if e.ComplexityRoot.TFASetting.CreatedAt == nil { break } - return e.complexity.TFASetting.CreatedAt(childComplexity), true + return e.ComplexityRoot.TFASetting.CreatedAt(childComplexity), true case "TFASetting.createdBy": - if e.complexity.TFASetting.CreatedBy == nil { + if e.ComplexityRoot.TFASetting.CreatedBy == nil { break } - return e.complexity.TFASetting.CreatedBy(childComplexity), true + return e.ComplexityRoot.TFASetting.CreatedBy(childComplexity), true case "TFASetting.id": - if e.complexity.TFASetting.ID == nil { + if e.ComplexityRoot.TFASetting.ID == nil { break } - return e.complexity.TFASetting.ID(childComplexity), true + return e.ComplexityRoot.TFASetting.ID(childComplexity), true case "TFASetting.owner": - if e.complexity.TFASetting.Owner == nil { + if e.ComplexityRoot.TFASetting.Owner == nil { break } - return e.complexity.TFASetting.Owner(childComplexity), true + return e.ComplexityRoot.TFASetting.Owner(childComplexity), true case "TFASetting.totpAllowed": - if e.complexity.TFASetting.TotpAllowed == nil { + if e.ComplexityRoot.TFASetting.TotpAllowed == nil { break } - return e.complexity.TFASetting.TotpAllowed(childComplexity), true + return e.ComplexityRoot.TFASetting.TotpAllowed(childComplexity), true case "TFASetting.updatedAt": - if e.complexity.TFASetting.UpdatedAt == nil { + if e.ComplexityRoot.TFASetting.UpdatedAt == nil { break } - return e.complexity.TFASetting.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TFASetting.UpdatedAt(childComplexity), true case "TFASetting.updatedBy": - if e.complexity.TFASetting.UpdatedBy == nil { + if e.ComplexityRoot.TFASetting.UpdatedBy == nil { break } - return e.complexity.TFASetting.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TFASetting.UpdatedBy(childComplexity), true case "TFASetting.verified": - if e.complexity.TFASetting.Verified == nil { + if e.ComplexityRoot.TFASetting.Verified == nil { break } - return e.complexity.TFASetting.Verified(childComplexity), true + return e.ComplexityRoot.TFASetting.Verified(childComplexity), true case "TFASettingConnection.edges": - if e.complexity.TFASettingConnection.Edges == nil { + if e.ComplexityRoot.TFASettingConnection.Edges == nil { break } - return e.complexity.TFASettingConnection.Edges(childComplexity), true + return e.ComplexityRoot.TFASettingConnection.Edges(childComplexity), true case "TFASettingConnection.pageInfo": - if e.complexity.TFASettingConnection.PageInfo == nil { + if e.ComplexityRoot.TFASettingConnection.PageInfo == nil { break } - return e.complexity.TFASettingConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TFASettingConnection.PageInfo(childComplexity), true case "TFASettingConnection.totalCount": - if e.complexity.TFASettingConnection.TotalCount == nil { + if e.ComplexityRoot.TFASettingConnection.TotalCount == nil { break } - return e.complexity.TFASettingConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TFASettingConnection.TotalCount(childComplexity), true case "TFASettingCreatePayload.qrCode": - if e.complexity.TFASettingCreatePayload.QRCode == nil { + if e.ComplexityRoot.TFASettingCreatePayload.QRCode == nil { break } - return e.complexity.TFASettingCreatePayload.QRCode(childComplexity), true + return e.ComplexityRoot.TFASettingCreatePayload.QRCode(childComplexity), true case "TFASettingCreatePayload.tfaSecret": - if e.complexity.TFASettingCreatePayload.TfaSecret == nil { + if e.ComplexityRoot.TFASettingCreatePayload.TfaSecret == nil { break } - return e.complexity.TFASettingCreatePayload.TfaSecret(childComplexity), true + return e.ComplexityRoot.TFASettingCreatePayload.TfaSecret(childComplexity), true case "TFASettingCreatePayload.tfaSetting": - if e.complexity.TFASettingCreatePayload.TfaSetting == nil { + if e.ComplexityRoot.TFASettingCreatePayload.TfaSetting == nil { break } - return e.complexity.TFASettingCreatePayload.TfaSetting(childComplexity), true + return e.ComplexityRoot.TFASettingCreatePayload.TfaSetting(childComplexity), true case "TFASettingEdge.cursor": - if e.complexity.TFASettingEdge.Cursor == nil { + if e.ComplexityRoot.TFASettingEdge.Cursor == nil { break } - return e.complexity.TFASettingEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TFASettingEdge.Cursor(childComplexity), true case "TFASettingEdge.node": - if e.complexity.TFASettingEdge.Node == nil { + if e.ComplexityRoot.TFASettingEdge.Node == nil { break } - return e.complexity.TFASettingEdge.Node(childComplexity), true + return e.ComplexityRoot.TFASettingEdge.Node(childComplexity), true case "TFASettingUpdatePayload.qrCode": - if e.complexity.TFASettingUpdatePayload.QRCode == nil { + if e.ComplexityRoot.TFASettingUpdatePayload.QRCode == nil { break } - return e.complexity.TFASettingUpdatePayload.QRCode(childComplexity), true + return e.ComplexityRoot.TFASettingUpdatePayload.QRCode(childComplexity), true case "TFASettingUpdatePayload.recoveryCodes": - if e.complexity.TFASettingUpdatePayload.RecoveryCodes == nil { + if e.ComplexityRoot.TFASettingUpdatePayload.RecoveryCodes == nil { break } - return e.complexity.TFASettingUpdatePayload.RecoveryCodes(childComplexity), true + return e.ComplexityRoot.TFASettingUpdatePayload.RecoveryCodes(childComplexity), true case "TFASettingUpdatePayload.tfaSecret": - if e.complexity.TFASettingUpdatePayload.TfaSecret == nil { + if e.ComplexityRoot.TFASettingUpdatePayload.TfaSecret == nil { break } - return e.complexity.TFASettingUpdatePayload.TfaSecret(childComplexity), true + return e.ComplexityRoot.TFASettingUpdatePayload.TfaSecret(childComplexity), true case "TFASettingUpdatePayload.tfaSetting": - if e.complexity.TFASettingUpdatePayload.TfaSetting == nil { + if e.ComplexityRoot.TFASettingUpdatePayload.TfaSetting == nil { break } - return e.complexity.TFASettingUpdatePayload.TfaSetting(childComplexity), true + return e.ComplexityRoot.TFASettingUpdatePayload.TfaSetting(childComplexity), true case "TagDefinition.aliases": - if e.complexity.TagDefinition.Aliases == nil { + if e.ComplexityRoot.TagDefinition.Aliases == nil { break } - return e.complexity.TagDefinition.Aliases(childComplexity), true + return e.ComplexityRoot.TagDefinition.Aliases(childComplexity), true case "TagDefinition.color": - if e.complexity.TagDefinition.Color == nil { + if e.ComplexityRoot.TagDefinition.Color == nil { break } - return e.complexity.TagDefinition.Color(childComplexity), true + return e.ComplexityRoot.TagDefinition.Color(childComplexity), true case "TagDefinition.createdAt": - if e.complexity.TagDefinition.CreatedAt == nil { + if e.ComplexityRoot.TagDefinition.CreatedAt == nil { break } - return e.complexity.TagDefinition.CreatedAt(childComplexity), true + return e.ComplexityRoot.TagDefinition.CreatedAt(childComplexity), true case "TagDefinition.createdBy": - if e.complexity.TagDefinition.CreatedBy == nil { + if e.ComplexityRoot.TagDefinition.CreatedBy == nil { break } - return e.complexity.TagDefinition.CreatedBy(childComplexity), true + return e.ComplexityRoot.TagDefinition.CreatedBy(childComplexity), true case "TagDefinition.description": - if e.complexity.TagDefinition.Description == nil { + if e.ComplexityRoot.TagDefinition.Description == nil { break } - return e.complexity.TagDefinition.Description(childComplexity), true + return e.ComplexityRoot.TagDefinition.Description(childComplexity), true case "TagDefinition.id": - if e.complexity.TagDefinition.ID == nil { + if e.ComplexityRoot.TagDefinition.ID == nil { break } - return e.complexity.TagDefinition.ID(childComplexity), true + return e.ComplexityRoot.TagDefinition.ID(childComplexity), true case "TagDefinition.internalNotes": - if e.complexity.TagDefinition.InternalNotes == nil { + if e.ComplexityRoot.TagDefinition.InternalNotes == nil { break } - return e.complexity.TagDefinition.InternalNotes(childComplexity), true + return e.ComplexityRoot.TagDefinition.InternalNotes(childComplexity), true case "TagDefinition.name": - if e.complexity.TagDefinition.Name == nil { + if e.ComplexityRoot.TagDefinition.Name == nil { break } - return e.complexity.TagDefinition.Name(childComplexity), true + return e.ComplexityRoot.TagDefinition.Name(childComplexity), true case "TagDefinition.owner": - if e.complexity.TagDefinition.Owner == nil { + if e.ComplexityRoot.TagDefinition.Owner == nil { break } - return e.complexity.TagDefinition.Owner(childComplexity), true + return e.ComplexityRoot.TagDefinition.Owner(childComplexity), true case "TagDefinition.ownerID": - if e.complexity.TagDefinition.OwnerID == nil { + if e.ComplexityRoot.TagDefinition.OwnerID == nil { break } - return e.complexity.TagDefinition.OwnerID(childComplexity), true + return e.ComplexityRoot.TagDefinition.OwnerID(childComplexity), true case "TagDefinition.slug": - if e.complexity.TagDefinition.Slug == nil { + if e.ComplexityRoot.TagDefinition.Slug == nil { break } - return e.complexity.TagDefinition.Slug(childComplexity), true + return e.ComplexityRoot.TagDefinition.Slug(childComplexity), true case "TagDefinition.systemInternalID": - if e.complexity.TagDefinition.SystemInternalID == nil { + if e.ComplexityRoot.TagDefinition.SystemInternalID == nil { break } - return e.complexity.TagDefinition.SystemInternalID(childComplexity), true + return e.ComplexityRoot.TagDefinition.SystemInternalID(childComplexity), true case "TagDefinition.systemOwned": - if e.complexity.TagDefinition.SystemOwned == nil { + if e.ComplexityRoot.TagDefinition.SystemOwned == nil { break } - return e.complexity.TagDefinition.SystemOwned(childComplexity), true + return e.ComplexityRoot.TagDefinition.SystemOwned(childComplexity), true case "TagDefinition.updatedAt": - if e.complexity.TagDefinition.UpdatedAt == nil { + if e.ComplexityRoot.TagDefinition.UpdatedAt == nil { break } - return e.complexity.TagDefinition.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TagDefinition.UpdatedAt(childComplexity), true case "TagDefinition.updatedBy": - if e.complexity.TagDefinition.UpdatedBy == nil { + if e.ComplexityRoot.TagDefinition.UpdatedBy == nil { break } - return e.complexity.TagDefinition.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TagDefinition.UpdatedBy(childComplexity), true case "TagDefinitionBulkCreatePayload.tagDefinitions": - if e.complexity.TagDefinitionBulkCreatePayload.TagDefinitions == nil { + if e.ComplexityRoot.TagDefinitionBulkCreatePayload.TagDefinitions == nil { break } - return e.complexity.TagDefinitionBulkCreatePayload.TagDefinitions(childComplexity), true + return e.ComplexityRoot.TagDefinitionBulkCreatePayload.TagDefinitions(childComplexity), true case "TagDefinitionConnection.edges": - if e.complexity.TagDefinitionConnection.Edges == nil { + if e.ComplexityRoot.TagDefinitionConnection.Edges == nil { break } - return e.complexity.TagDefinitionConnection.Edges(childComplexity), true + return e.ComplexityRoot.TagDefinitionConnection.Edges(childComplexity), true case "TagDefinitionConnection.pageInfo": - if e.complexity.TagDefinitionConnection.PageInfo == nil { + if e.ComplexityRoot.TagDefinitionConnection.PageInfo == nil { break } - return e.complexity.TagDefinitionConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TagDefinitionConnection.PageInfo(childComplexity), true case "TagDefinitionConnection.totalCount": - if e.complexity.TagDefinitionConnection.TotalCount == nil { + if e.ComplexityRoot.TagDefinitionConnection.TotalCount == nil { break } - return e.complexity.TagDefinitionConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TagDefinitionConnection.TotalCount(childComplexity), true case "TagDefinitionCreatePayload.tagDefinition": - if e.complexity.TagDefinitionCreatePayload.TagDefinition == nil { + if e.ComplexityRoot.TagDefinitionCreatePayload.TagDefinition == nil { break } - return e.complexity.TagDefinitionCreatePayload.TagDefinition(childComplexity), true + return e.ComplexityRoot.TagDefinitionCreatePayload.TagDefinition(childComplexity), true case "TagDefinitionDeletePayload.deletedID": - if e.complexity.TagDefinitionDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TagDefinitionDeletePayload.DeletedID == nil { break } - return e.complexity.TagDefinitionDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TagDefinitionDeletePayload.DeletedID(childComplexity), true case "TagDefinitionEdge.cursor": - if e.complexity.TagDefinitionEdge.Cursor == nil { + if e.ComplexityRoot.TagDefinitionEdge.Cursor == nil { break } - return e.complexity.TagDefinitionEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TagDefinitionEdge.Cursor(childComplexity), true case "TagDefinitionEdge.node": - if e.complexity.TagDefinitionEdge.Node == nil { + if e.ComplexityRoot.TagDefinitionEdge.Node == nil { break } - return e.complexity.TagDefinitionEdge.Node(childComplexity), true + return e.ComplexityRoot.TagDefinitionEdge.Node(childComplexity), true case "TagDefinitionUpdatePayload.tagDefinition": - if e.complexity.TagDefinitionUpdatePayload.TagDefinition == nil { + if e.ComplexityRoot.TagDefinitionUpdatePayload.TagDefinition == nil { break } - return e.complexity.TagDefinitionUpdatePayload.TagDefinition(childComplexity), true + return e.ComplexityRoot.TagDefinitionUpdatePayload.TagDefinition(childComplexity), true case "Task.actionPlans": - if e.complexity.Task.ActionPlans == nil { + if e.ComplexityRoot.Task.ActionPlans == nil { break } @@ -42501,38 +42484,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Task.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Task.assignee": - if e.complexity.Task.Assignee == nil { + if e.ComplexityRoot.Task.Assignee == nil { break } - return e.complexity.Task.Assignee(childComplexity), true + return e.ComplexityRoot.Task.Assignee(childComplexity), true case "Task.assigneeID": - if e.complexity.Task.AssigneeID == nil { + if e.ComplexityRoot.Task.AssigneeID == nil { break } - return e.complexity.Task.AssigneeID(childComplexity), true + return e.ComplexityRoot.Task.AssigneeID(childComplexity), true case "Task.assigner": - if e.complexity.Task.Assigner == nil { + if e.ComplexityRoot.Task.Assigner == nil { break } - return e.complexity.Task.Assigner(childComplexity), true + return e.ComplexityRoot.Task.Assigner(childComplexity), true case "Task.assignerID": - if e.complexity.Task.AssignerID == nil { + if e.ComplexityRoot.Task.AssignerID == nil { break } - return e.complexity.Task.AssignerID(childComplexity), true + return e.ComplexityRoot.Task.AssignerID(childComplexity), true case "Task.comments": - if e.complexity.Task.Comments == nil { + if e.ComplexityRoot.Task.Comments == nil { break } @@ -42541,17 +42524,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Task.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Task.completed": - if e.complexity.Task.Completed == nil { + if e.ComplexityRoot.Task.Completed == nil { break } - return e.complexity.Task.Completed(childComplexity), true + return e.ComplexityRoot.Task.Completed(childComplexity), true case "Task.controlImplementations": - if e.complexity.Task.ControlImplementations == nil { + if e.ComplexityRoot.Task.ControlImplementations == nil { break } @@ -42560,10 +42543,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true + return e.ComplexityRoot.Task.ControlImplementations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlImplementationOrder), args["where"].(*generated.ControlImplementationWhereInput)), true case "Task.controlObjectives": - if e.complexity.Task.ControlObjectives == nil { + if e.ComplexityRoot.Task.ControlObjectives == nil { break } @@ -42572,10 +42555,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true + return e.ComplexityRoot.Task.ControlObjectives(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlObjectiveOrder), args["where"].(*generated.ControlObjectiveWhereInput)), true case "Task.controls": - if e.complexity.Task.Controls == nil { + if e.ComplexityRoot.Task.Controls == nil { break } @@ -42584,73 +42567,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Task.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Task.createdAt": - if e.complexity.Task.CreatedAt == nil { + if e.ComplexityRoot.Task.CreatedAt == nil { break } - return e.complexity.Task.CreatedAt(childComplexity), true + return e.ComplexityRoot.Task.CreatedAt(childComplexity), true case "Task.createdBy": - if e.complexity.Task.CreatedBy == nil { + if e.ComplexityRoot.Task.CreatedBy == nil { break } - return e.complexity.Task.CreatedBy(childComplexity), true + return e.ComplexityRoot.Task.CreatedBy(childComplexity), true case "Task.details": - if e.complexity.Task.Details == nil { + if e.ComplexityRoot.Task.Details == nil { break } - return e.complexity.Task.Details(childComplexity), true + return e.ComplexityRoot.Task.Details(childComplexity), true case "Task.detailsJSON": - if e.complexity.Task.DetailsJSON == nil { + if e.ComplexityRoot.Task.DetailsJSON == nil { break } - return e.complexity.Task.DetailsJSON(childComplexity), true + return e.ComplexityRoot.Task.DetailsJSON(childComplexity), true case "Task.displayID": - if e.complexity.Task.DisplayID == nil { + if e.ComplexityRoot.Task.DisplayID == nil { break } - return e.complexity.Task.DisplayID(childComplexity), true + return e.ComplexityRoot.Task.DisplayID(childComplexity), true case "Task.due": - if e.complexity.Task.Due == nil { + if e.ComplexityRoot.Task.Due == nil { break } - return e.complexity.Task.Due(childComplexity), true + return e.ComplexityRoot.Task.Due(childComplexity), true case "Task.environment": - if e.complexity.Task.Environment == nil { + if e.ComplexityRoot.Task.Environment == nil { break } - return e.complexity.Task.Environment(childComplexity), true + return e.ComplexityRoot.Task.Environment(childComplexity), true case "Task.environmentID": - if e.complexity.Task.EnvironmentID == nil { + if e.ComplexityRoot.Task.EnvironmentID == nil { break } - return e.complexity.Task.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Task.EnvironmentID(childComplexity), true case "Task.environmentName": - if e.complexity.Task.EnvironmentName == nil { + if e.ComplexityRoot.Task.EnvironmentName == nil { break } - return e.complexity.Task.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Task.EnvironmentName(childComplexity), true case "Task.evidence": - if e.complexity.Task.Evidence == nil { + if e.ComplexityRoot.Task.Evidence == nil { break } @@ -42659,17 +42642,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true + return e.ComplexityRoot.Task.Evidence(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EvidenceOrder), args["where"].(*generated.EvidenceWhereInput)), true case "Task.externalReferenceURL": - if e.complexity.Task.ExternalReferenceURL == nil { + if e.ComplexityRoot.Task.ExternalReferenceURL == nil { break } - return e.complexity.Task.ExternalReferenceURL(childComplexity), true + return e.ComplexityRoot.Task.ExternalReferenceURL(childComplexity), true case "Task.groups": - if e.complexity.Task.Groups == nil { + if e.ComplexityRoot.Task.Groups == nil { break } @@ -42678,24 +42661,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Task.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Task.id": - if e.complexity.Task.ID == nil { + if e.ComplexityRoot.Task.ID == nil { break } - return e.complexity.Task.ID(childComplexity), true + return e.ComplexityRoot.Task.ID(childComplexity), true case "Task.idempotencyKey": - if e.complexity.Task.IdempotencyKey == nil { + if e.ComplexityRoot.Task.IdempotencyKey == nil { break } - return e.complexity.Task.IdempotencyKey(childComplexity), true + return e.ComplexityRoot.Task.IdempotencyKey(childComplexity), true case "Task.identityHolders": - if e.complexity.Task.IdentityHolders == nil { + if e.ComplexityRoot.Task.IdentityHolders == nil { break } @@ -42704,10 +42687,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Task.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Task.internalPolicies": - if e.complexity.Task.InternalPolicies == nil { + if e.ComplexityRoot.Task.InternalPolicies == nil { break } @@ -42716,38 +42699,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true + return e.ComplexityRoot.Task.InternalPolicies(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.InternalPolicyOrder), args["where"].(*generated.InternalPolicyWhereInput)), true case "Task.owner": - if e.complexity.Task.Owner == nil { + if e.ComplexityRoot.Task.Owner == nil { break } - return e.complexity.Task.Owner(childComplexity), true + return e.ComplexityRoot.Task.Owner(childComplexity), true case "Task.ownerID": - if e.complexity.Task.OwnerID == nil { + if e.ComplexityRoot.Task.OwnerID == nil { break } - return e.complexity.Task.OwnerID(childComplexity), true + return e.ComplexityRoot.Task.OwnerID(childComplexity), true case "Task.parent": - if e.complexity.Task.Parent == nil { + if e.ComplexityRoot.Task.Parent == nil { break } - return e.complexity.Task.Parent(childComplexity), true + return e.ComplexityRoot.Task.Parent(childComplexity), true case "Task.parentTaskID": - if e.complexity.Task.ParentTaskID == nil { + if e.ComplexityRoot.Task.ParentTaskID == nil { break } - return e.complexity.Task.ParentTaskID(childComplexity), true + return e.ComplexityRoot.Task.ParentTaskID(childComplexity), true case "Task.platforms": - if e.complexity.Task.Platforms == nil { + if e.ComplexityRoot.Task.Platforms == nil { break } @@ -42756,10 +42739,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.Task.Platforms(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "Task.procedures": - if e.complexity.Task.Procedures == nil { + if e.ComplexityRoot.Task.Procedures == nil { break } @@ -42768,10 +42751,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true + return e.ComplexityRoot.Task.Procedures(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProcedureOrder), args["where"].(*generated.ProcedureWhereInput)), true case "Task.programs": - if e.complexity.Task.Programs == nil { + if e.ComplexityRoot.Task.Programs == nil { break } @@ -42780,10 +42763,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Task.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Task.risks": - if e.complexity.Task.Risks == nil { + if e.ComplexityRoot.Task.Risks == nil { break } @@ -42792,10 +42775,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Task.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Task.scans": - if e.complexity.Task.Scans == nil { + if e.ComplexityRoot.Task.Scans == nil { break } @@ -42804,38 +42787,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Task.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Task.scope": - if e.complexity.Task.Scope == nil { + if e.ComplexityRoot.Task.Scope == nil { break } - return e.complexity.Task.Scope(childComplexity), true + return e.ComplexityRoot.Task.Scope(childComplexity), true case "Task.scopeID": - if e.complexity.Task.ScopeID == nil { + if e.ComplexityRoot.Task.ScopeID == nil { break } - return e.complexity.Task.ScopeID(childComplexity), true + return e.ComplexityRoot.Task.ScopeID(childComplexity), true case "Task.scopeName": - if e.complexity.Task.ScopeName == nil { + if e.ComplexityRoot.Task.ScopeName == nil { break } - return e.complexity.Task.ScopeName(childComplexity), true + return e.ComplexityRoot.Task.ScopeName(childComplexity), true case "Task.status": - if e.complexity.Task.Status == nil { + if e.ComplexityRoot.Task.Status == nil { break } - return e.complexity.Task.Status(childComplexity), true + return e.ComplexityRoot.Task.Status(childComplexity), true case "Task.subcontrols": - if e.complexity.Task.Subcontrols == nil { + if e.ComplexityRoot.Task.Subcontrols == nil { break } @@ -42844,73 +42827,73 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Task.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Task.systemGenerated": - if e.complexity.Task.SystemGenerated == nil { + if e.ComplexityRoot.Task.SystemGenerated == nil { break } - return e.complexity.Task.SystemGenerated(childComplexity), true + return e.ComplexityRoot.Task.SystemGenerated(childComplexity), true case "Task.tags": - if e.complexity.Task.Tags == nil { + if e.ComplexityRoot.Task.Tags == nil { break } - return e.complexity.Task.Tags(childComplexity), true + return e.ComplexityRoot.Task.Tags(childComplexity), true case "Task.taskKind": - if e.complexity.Task.TaskKind == nil { + if e.ComplexityRoot.Task.TaskKind == nil { break } - return e.complexity.Task.TaskKind(childComplexity), true + return e.ComplexityRoot.Task.TaskKind(childComplexity), true case "Task.taskKindID": - if e.complexity.Task.TaskKindID == nil { + if e.ComplexityRoot.Task.TaskKindID == nil { break } - return e.complexity.Task.TaskKindID(childComplexity), true + return e.ComplexityRoot.Task.TaskKindID(childComplexity), true case "Task.taskKindName": - if e.complexity.Task.TaskKindName == nil { + if e.ComplexityRoot.Task.TaskKindName == nil { break } - return e.complexity.Task.TaskKindName(childComplexity), true + return e.ComplexityRoot.Task.TaskKindName(childComplexity), true case "Task.tasks": - if e.complexity.Task.Tasks == nil { + if e.ComplexityRoot.Task.Tasks == nil { break } - return e.complexity.Task.Tasks(childComplexity), true + return e.ComplexityRoot.Task.Tasks(childComplexity), true case "Task.title": - if e.complexity.Task.Title == nil { + if e.ComplexityRoot.Task.Title == nil { break } - return e.complexity.Task.Title(childComplexity), true + return e.ComplexityRoot.Task.Title(childComplexity), true case "Task.updatedAt": - if e.complexity.Task.UpdatedAt == nil { + if e.ComplexityRoot.Task.UpdatedAt == nil { break } - return e.complexity.Task.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Task.UpdatedAt(childComplexity), true case "Task.updatedBy": - if e.complexity.Task.UpdatedBy == nil { + if e.ComplexityRoot.Task.UpdatedBy == nil { break } - return e.complexity.Task.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Task.UpdatedBy(childComplexity), true case "Task.workflowObjectRefs": - if e.complexity.Task.WorkflowObjectRefs == nil { + if e.ComplexityRoot.Task.WorkflowObjectRefs == nil { break } @@ -42919,94 +42902,94 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Task.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.Task.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "TaskBulkCreatePayload.tasks": - if e.complexity.TaskBulkCreatePayload.Tasks == nil { + if e.ComplexityRoot.TaskBulkCreatePayload.Tasks == nil { break } - return e.complexity.TaskBulkCreatePayload.Tasks(childComplexity), true + return e.ComplexityRoot.TaskBulkCreatePayload.Tasks(childComplexity), true case "TaskBulkDeletePayload.deletedIDs": - if e.complexity.TaskBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.TaskBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.TaskBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.TaskBulkDeletePayload.DeletedIDs(childComplexity), true case "TaskBulkUpdatePayload.tasks": - if e.complexity.TaskBulkUpdatePayload.Tasks == nil { + if e.ComplexityRoot.TaskBulkUpdatePayload.Tasks == nil { break } - return e.complexity.TaskBulkUpdatePayload.Tasks(childComplexity), true + return e.ComplexityRoot.TaskBulkUpdatePayload.Tasks(childComplexity), true case "TaskBulkUpdatePayload.updatedIDs": - if e.complexity.TaskBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.TaskBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.TaskBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.TaskBulkUpdatePayload.UpdatedIDs(childComplexity), true case "TaskConnection.edges": - if e.complexity.TaskConnection.Edges == nil { + if e.ComplexityRoot.TaskConnection.Edges == nil { break } - return e.complexity.TaskConnection.Edges(childComplexity), true + return e.ComplexityRoot.TaskConnection.Edges(childComplexity), true case "TaskConnection.pageInfo": - if e.complexity.TaskConnection.PageInfo == nil { + if e.ComplexityRoot.TaskConnection.PageInfo == nil { break } - return e.complexity.TaskConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TaskConnection.PageInfo(childComplexity), true case "TaskConnection.totalCount": - if e.complexity.TaskConnection.TotalCount == nil { + if e.ComplexityRoot.TaskConnection.TotalCount == nil { break } - return e.complexity.TaskConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TaskConnection.TotalCount(childComplexity), true case "TaskCreatePayload.task": - if e.complexity.TaskCreatePayload.Task == nil { + if e.ComplexityRoot.TaskCreatePayload.Task == nil { break } - return e.complexity.TaskCreatePayload.Task(childComplexity), true + return e.ComplexityRoot.TaskCreatePayload.Task(childComplexity), true case "TaskDeletePayload.deletedID": - if e.complexity.TaskDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TaskDeletePayload.DeletedID == nil { break } - return e.complexity.TaskDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TaskDeletePayload.DeletedID(childComplexity), true case "TaskEdge.cursor": - if e.complexity.TaskEdge.Cursor == nil { + if e.ComplexityRoot.TaskEdge.Cursor == nil { break } - return e.complexity.TaskEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TaskEdge.Cursor(childComplexity), true case "TaskEdge.node": - if e.complexity.TaskEdge.Node == nil { + if e.ComplexityRoot.TaskEdge.Node == nil { break } - return e.complexity.TaskEdge.Node(childComplexity), true + return e.ComplexityRoot.TaskEdge.Node(childComplexity), true case "TaskUpdatePayload.task": - if e.complexity.TaskUpdatePayload.Task == nil { + if e.ComplexityRoot.TaskUpdatePayload.Task == nil { break } - return e.complexity.TaskUpdatePayload.Task(childComplexity), true + return e.ComplexityRoot.TaskUpdatePayload.Task(childComplexity), true case "Template.assessments": - if e.complexity.Template.Assessments == nil { + if e.ComplexityRoot.Template.Assessments == nil { break } @@ -43015,10 +42998,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Template.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true + return e.ComplexityRoot.Template.Assessments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssessmentOrder), args["where"].(*generated.AssessmentWhereInput)), true case "Template.campaigns": - if e.complexity.Template.Campaigns == nil { + if e.ComplexityRoot.Template.Campaigns == nil { break } @@ -43027,31 +43010,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Template.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.Template.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "Template.createdAt": - if e.complexity.Template.CreatedAt == nil { + if e.ComplexityRoot.Template.CreatedAt == nil { break } - return e.complexity.Template.CreatedAt(childComplexity), true + return e.ComplexityRoot.Template.CreatedAt(childComplexity), true case "Template.createdBy": - if e.complexity.Template.CreatedBy == nil { + if e.ComplexityRoot.Template.CreatedBy == nil { break } - return e.complexity.Template.CreatedBy(childComplexity), true + return e.ComplexityRoot.Template.CreatedBy(childComplexity), true case "Template.description": - if e.complexity.Template.Description == nil { + if e.ComplexityRoot.Template.Description == nil { break } - return e.complexity.Template.Description(childComplexity), true + return e.ComplexityRoot.Template.Description(childComplexity), true case "Template.documents": - if e.complexity.Template.Documents == nil { + if e.ComplexityRoot.Template.Documents == nil { break } @@ -43060,31 +43043,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Template.Documents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true + return e.ComplexityRoot.Template.Documents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.DocumentDataOrder), args["where"].(*generated.DocumentDataWhereInput)), true case "Template.environment": - if e.complexity.Template.Environment == nil { + if e.ComplexityRoot.Template.Environment == nil { break } - return e.complexity.Template.Environment(childComplexity), true + return e.ComplexityRoot.Template.Environment(childComplexity), true case "Template.environmentID": - if e.complexity.Template.EnvironmentID == nil { + if e.ComplexityRoot.Template.EnvironmentID == nil { break } - return e.complexity.Template.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Template.EnvironmentID(childComplexity), true case "Template.environmentName": - if e.complexity.Template.EnvironmentName == nil { + if e.ComplexityRoot.Template.EnvironmentName == nil { break } - return e.complexity.Template.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Template.EnvironmentName(childComplexity), true case "Template.files": - if e.complexity.Template.Files == nil { + if e.ComplexityRoot.Template.Files == nil { break } @@ -43093,17 +43076,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Template.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Template.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Template.id": - if e.complexity.Template.ID == nil { + if e.ComplexityRoot.Template.ID == nil { break } - return e.complexity.Template.ID(childComplexity), true + return e.ComplexityRoot.Template.ID(childComplexity), true case "Template.identityHolders": - if e.complexity.Template.IdentityHolders == nil { + if e.ComplexityRoot.Template.IdentityHolders == nil { break } @@ -43112,220 +43095,220 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Template.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.Template.IdentityHolders(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "Template.internalNotes": - if e.complexity.Template.InternalNotes == nil { + if e.ComplexityRoot.Template.InternalNotes == nil { break } - return e.complexity.Template.InternalNotes(childComplexity), true + return e.ComplexityRoot.Template.InternalNotes(childComplexity), true case "Template.jsonconfig": - if e.complexity.Template.Jsonconfig == nil { + if e.ComplexityRoot.Template.Jsonconfig == nil { break } - return e.complexity.Template.Jsonconfig(childComplexity), true + return e.ComplexityRoot.Template.Jsonconfig(childComplexity), true case "Template.kind": - if e.complexity.Template.Kind == nil { + if e.ComplexityRoot.Template.Kind == nil { break } - return e.complexity.Template.Kind(childComplexity), true + return e.ComplexityRoot.Template.Kind(childComplexity), true case "Template.name": - if e.complexity.Template.Name == nil { + if e.ComplexityRoot.Template.Name == nil { break } - return e.complexity.Template.Name(childComplexity), true + return e.ComplexityRoot.Template.Name(childComplexity), true case "Template.owner": - if e.complexity.Template.Owner == nil { + if e.ComplexityRoot.Template.Owner == nil { break } - return e.complexity.Template.Owner(childComplexity), true + return e.ComplexityRoot.Template.Owner(childComplexity), true case "Template.ownerID": - if e.complexity.Template.OwnerID == nil { + if e.ComplexityRoot.Template.OwnerID == nil { break } - return e.complexity.Template.OwnerID(childComplexity), true + return e.ComplexityRoot.Template.OwnerID(childComplexity), true case "Template.scope": - if e.complexity.Template.Scope == nil { + if e.ComplexityRoot.Template.Scope == nil { break } - return e.complexity.Template.Scope(childComplexity), true + return e.ComplexityRoot.Template.Scope(childComplexity), true case "Template.scopeID": - if e.complexity.Template.ScopeID == nil { + if e.ComplexityRoot.Template.ScopeID == nil { break } - return e.complexity.Template.ScopeID(childComplexity), true + return e.ComplexityRoot.Template.ScopeID(childComplexity), true case "Template.scopeName": - if e.complexity.Template.ScopeName == nil { + if e.ComplexityRoot.Template.ScopeName == nil { break } - return e.complexity.Template.ScopeName(childComplexity), true + return e.ComplexityRoot.Template.ScopeName(childComplexity), true case "Template.systemInternalID": - if e.complexity.Template.SystemInternalID == nil { + if e.ComplexityRoot.Template.SystemInternalID == nil { break } - return e.complexity.Template.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Template.SystemInternalID(childComplexity), true case "Template.systemOwned": - if e.complexity.Template.SystemOwned == nil { + if e.ComplexityRoot.Template.SystemOwned == nil { break } - return e.complexity.Template.SystemOwned(childComplexity), true + return e.ComplexityRoot.Template.SystemOwned(childComplexity), true case "Template.tags": - if e.complexity.Template.Tags == nil { + if e.ComplexityRoot.Template.Tags == nil { break } - return e.complexity.Template.Tags(childComplexity), true + return e.ComplexityRoot.Template.Tags(childComplexity), true case "Template.templateType": - if e.complexity.Template.TemplateType == nil { + if e.ComplexityRoot.Template.TemplateType == nil { break } - return e.complexity.Template.TemplateType(childComplexity), true + return e.ComplexityRoot.Template.TemplateType(childComplexity), true case "Template.trustCenter": - if e.complexity.Template.TrustCenter == nil { + if e.ComplexityRoot.Template.TrustCenter == nil { break } - return e.complexity.Template.TrustCenter(childComplexity), true + return e.ComplexityRoot.Template.TrustCenter(childComplexity), true case "Template.trustCenterID": - if e.complexity.Template.TrustCenterID == nil { + if e.ComplexityRoot.Template.TrustCenterID == nil { break } - return e.complexity.Template.TrustCenterID(childComplexity), true + return e.ComplexityRoot.Template.TrustCenterID(childComplexity), true case "Template.uischema": - if e.complexity.Template.Uischema == nil { + if e.ComplexityRoot.Template.Uischema == nil { break } - return e.complexity.Template.Uischema(childComplexity), true + return e.ComplexityRoot.Template.Uischema(childComplexity), true case "Template.updatedAt": - if e.complexity.Template.UpdatedAt == nil { + if e.ComplexityRoot.Template.UpdatedAt == nil { break } - return e.complexity.Template.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Template.UpdatedAt(childComplexity), true case "Template.updatedBy": - if e.complexity.Template.UpdatedBy == nil { + if e.ComplexityRoot.Template.UpdatedBy == nil { break } - return e.complexity.Template.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Template.UpdatedBy(childComplexity), true case "TemplateBulkCreatePayload.templates": - if e.complexity.TemplateBulkCreatePayload.Templates == nil { + if e.ComplexityRoot.TemplateBulkCreatePayload.Templates == nil { break } - return e.complexity.TemplateBulkCreatePayload.Templates(childComplexity), true + return e.ComplexityRoot.TemplateBulkCreatePayload.Templates(childComplexity), true case "TemplateBulkDeletePayload.deletedIDs": - if e.complexity.TemplateBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.TemplateBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.TemplateBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.TemplateBulkDeletePayload.DeletedIDs(childComplexity), true case "TemplateBulkUpdatePayload.templates": - if e.complexity.TemplateBulkUpdatePayload.Templates == nil { + if e.ComplexityRoot.TemplateBulkUpdatePayload.Templates == nil { break } - return e.complexity.TemplateBulkUpdatePayload.Templates(childComplexity), true + return e.ComplexityRoot.TemplateBulkUpdatePayload.Templates(childComplexity), true case "TemplateBulkUpdatePayload.updatedIDs": - if e.complexity.TemplateBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.TemplateBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.TemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.TemplateBulkUpdatePayload.UpdatedIDs(childComplexity), true case "TemplateConnection.edges": - if e.complexity.TemplateConnection.Edges == nil { + if e.ComplexityRoot.TemplateConnection.Edges == nil { break } - return e.complexity.TemplateConnection.Edges(childComplexity), true + return e.ComplexityRoot.TemplateConnection.Edges(childComplexity), true case "TemplateConnection.pageInfo": - if e.complexity.TemplateConnection.PageInfo == nil { + if e.ComplexityRoot.TemplateConnection.PageInfo == nil { break } - return e.complexity.TemplateConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TemplateConnection.PageInfo(childComplexity), true case "TemplateConnection.totalCount": - if e.complexity.TemplateConnection.TotalCount == nil { + if e.ComplexityRoot.TemplateConnection.TotalCount == nil { break } - return e.complexity.TemplateConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TemplateConnection.TotalCount(childComplexity), true case "TemplateCreatePayload.template": - if e.complexity.TemplateCreatePayload.Template == nil { + if e.ComplexityRoot.TemplateCreatePayload.Template == nil { break } - return e.complexity.TemplateCreatePayload.Template(childComplexity), true + return e.ComplexityRoot.TemplateCreatePayload.Template(childComplexity), true case "TemplateDeletePayload.deletedID": - if e.complexity.TemplateDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TemplateDeletePayload.DeletedID == nil { break } - return e.complexity.TemplateDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TemplateDeletePayload.DeletedID(childComplexity), true case "TemplateEdge.cursor": - if e.complexity.TemplateEdge.Cursor == nil { + if e.ComplexityRoot.TemplateEdge.Cursor == nil { break } - return e.complexity.TemplateEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TemplateEdge.Cursor(childComplexity), true case "TemplateEdge.node": - if e.complexity.TemplateEdge.Node == nil { + if e.ComplexityRoot.TemplateEdge.Node == nil { break } - return e.complexity.TemplateEdge.Node(childComplexity), true + return e.ComplexityRoot.TemplateEdge.Node(childComplexity), true case "TemplateUpdatePayload.template": - if e.complexity.TemplateUpdatePayload.Template == nil { + if e.ComplexityRoot.TemplateUpdatePayload.Template == nil { break } - return e.complexity.TemplateUpdatePayload.Template(childComplexity), true + return e.ComplexityRoot.TemplateUpdatePayload.Template(childComplexity), true case "TrustCenter.blockedGroups": - if e.complexity.TrustCenter.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenter.BlockedGroups == nil { break } @@ -43334,38 +43317,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenter.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenter.createdAt": - if e.complexity.TrustCenter.CreatedAt == nil { + if e.ComplexityRoot.TrustCenter.CreatedAt == nil { break } - return e.complexity.TrustCenter.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenter.CreatedAt(childComplexity), true case "TrustCenter.createdBy": - if e.complexity.TrustCenter.CreatedBy == nil { + if e.ComplexityRoot.TrustCenter.CreatedBy == nil { break } - return e.complexity.TrustCenter.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenter.CreatedBy(childComplexity), true case "TrustCenter.customDomain": - if e.complexity.TrustCenter.CustomDomain == nil { + if e.ComplexityRoot.TrustCenter.CustomDomain == nil { break } - return e.complexity.TrustCenter.CustomDomain(childComplexity), true + return e.ComplexityRoot.TrustCenter.CustomDomain(childComplexity), true case "TrustCenter.customDomainID": - if e.complexity.TrustCenter.CustomDomainID == nil { + if e.ComplexityRoot.TrustCenter.CustomDomainID == nil { break } - return e.complexity.TrustCenter.CustomDomainID(childComplexity), true + return e.ComplexityRoot.TrustCenter.CustomDomainID(childComplexity), true case "TrustCenter.editors": - if e.complexity.TrustCenter.Editors == nil { + if e.ComplexityRoot.TrustCenter.Editors == nil { break } @@ -43374,52 +43357,52 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenter.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenter.id": - if e.complexity.TrustCenter.ID == nil { + if e.ComplexityRoot.TrustCenter.ID == nil { break } - return e.complexity.TrustCenter.ID(childComplexity), true + return e.ComplexityRoot.TrustCenter.ID(childComplexity), true case "TrustCenter.owner": - if e.complexity.TrustCenter.Owner == nil { + if e.ComplexityRoot.TrustCenter.Owner == nil { break } - return e.complexity.TrustCenter.Owner(childComplexity), true + return e.ComplexityRoot.TrustCenter.Owner(childComplexity), true case "TrustCenter.ownerID": - if e.complexity.TrustCenter.OwnerID == nil { + if e.ComplexityRoot.TrustCenter.OwnerID == nil { break } - return e.complexity.TrustCenter.OwnerID(childComplexity), true + return e.ComplexityRoot.TrustCenter.OwnerID(childComplexity), true case "TrustCenter.pirschAccessLink": - if e.complexity.TrustCenter.PirschAccessLink == nil { + if e.ComplexityRoot.TrustCenter.PirschAccessLink == nil { break } - return e.complexity.TrustCenter.PirschAccessLink(childComplexity), true + return e.ComplexityRoot.TrustCenter.PirschAccessLink(childComplexity), true case "TrustCenter.pirschDomainID": - if e.complexity.TrustCenter.PirschDomainID == nil { + if e.ComplexityRoot.TrustCenter.PirschDomainID == nil { break } - return e.complexity.TrustCenter.PirschDomainID(childComplexity), true + return e.ComplexityRoot.TrustCenter.PirschDomainID(childComplexity), true case "TrustCenter.pirschIdentificationCode": - if e.complexity.TrustCenter.PirschIdentificationCode == nil { + if e.ComplexityRoot.TrustCenter.PirschIdentificationCode == nil { break } - return e.complexity.TrustCenter.PirschIdentificationCode(childComplexity), true + return e.ComplexityRoot.TrustCenter.PirschIdentificationCode(childComplexity), true case "TrustCenter.posts": - if e.complexity.TrustCenter.Posts == nil { + if e.ComplexityRoot.TrustCenter.Posts == nil { break } @@ -43428,66 +43411,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.Posts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.TrustCenter.Posts(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "TrustCenter.previewDomain": - if e.complexity.TrustCenter.PreviewDomain == nil { + if e.ComplexityRoot.TrustCenter.PreviewDomain == nil { break } - return e.complexity.TrustCenter.PreviewDomain(childComplexity), true + return e.ComplexityRoot.TrustCenter.PreviewDomain(childComplexity), true case "TrustCenter.previewDomainID": - if e.complexity.TrustCenter.PreviewDomainID == nil { + if e.ComplexityRoot.TrustCenter.PreviewDomainID == nil { break } - return e.complexity.TrustCenter.PreviewDomainID(childComplexity), true + return e.ComplexityRoot.TrustCenter.PreviewDomainID(childComplexity), true case "TrustCenter.previewSetting": - if e.complexity.TrustCenter.PreviewSetting == nil { + if e.ComplexityRoot.TrustCenter.PreviewSetting == nil { break } - return e.complexity.TrustCenter.PreviewSetting(childComplexity), true + return e.ComplexityRoot.TrustCenter.PreviewSetting(childComplexity), true case "TrustCenter.previewStatus": - if e.complexity.TrustCenter.PreviewStatus == nil { + if e.ComplexityRoot.TrustCenter.PreviewStatus == nil { break } - return e.complexity.TrustCenter.PreviewStatus(childComplexity), true + return e.ComplexityRoot.TrustCenter.PreviewStatus(childComplexity), true case "TrustCenter.setting": - if e.complexity.TrustCenter.Setting == nil { + if e.ComplexityRoot.TrustCenter.Setting == nil { break } - return e.complexity.TrustCenter.Setting(childComplexity), true + return e.ComplexityRoot.TrustCenter.Setting(childComplexity), true case "TrustCenter.slug": - if e.complexity.TrustCenter.Slug == nil { + if e.ComplexityRoot.TrustCenter.Slug == nil { break } - return e.complexity.TrustCenter.Slug(childComplexity), true + return e.ComplexityRoot.TrustCenter.Slug(childComplexity), true case "TrustCenter.subprocessorURL": - if e.complexity.TrustCenter.SubprocessorURL == nil { + if e.ComplexityRoot.TrustCenter.SubprocessorURL == nil { break } - return e.complexity.TrustCenter.SubprocessorURL(childComplexity), true + return e.ComplexityRoot.TrustCenter.SubprocessorURL(childComplexity), true case "TrustCenter.tags": - if e.complexity.TrustCenter.Tags == nil { + if e.ComplexityRoot.TrustCenter.Tags == nil { break } - return e.complexity.TrustCenter.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenter.Tags(childComplexity), true case "TrustCenter.templates": - if e.complexity.TrustCenter.Templates == nil { + if e.ComplexityRoot.TrustCenter.Templates == nil { break } @@ -43496,10 +43479,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true + return e.ComplexityRoot.TrustCenter.Templates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TemplateOrder), args["where"].(*generated.TemplateWhereInput)), true case "TrustCenter.trustCenterCompliances": - if e.complexity.TrustCenter.TrustCenterCompliances == nil { + if e.ComplexityRoot.TrustCenter.TrustCenterCompliances == nil { break } @@ -43508,10 +43491,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.TrustCenterCompliances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterComplianceOrder), args["where"].(*generated.TrustCenterComplianceWhereInput)), true + return e.ComplexityRoot.TrustCenter.TrustCenterCompliances(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterComplianceOrder), args["where"].(*generated.TrustCenterComplianceWhereInput)), true case "TrustCenter.trustCenterDocs": - if e.complexity.TrustCenter.TrustCenterDocs == nil { + if e.ComplexityRoot.TrustCenter.TrustCenterDocs == nil { break } @@ -43520,10 +43503,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true + return e.ComplexityRoot.TrustCenter.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true case "TrustCenter.trustCenterEntities": - if e.complexity.TrustCenter.TrustCenterEntities == nil { + if e.ComplexityRoot.TrustCenter.TrustCenterEntities == nil { break } @@ -43532,10 +43515,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.TrustCenterEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterEntityOrder), args["where"].(*generated.TrustCenterEntityWhereInput)), true + return e.ComplexityRoot.TrustCenter.TrustCenterEntities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterEntityOrder), args["where"].(*generated.TrustCenterEntityWhereInput)), true case "TrustCenter.trustCenterFaqs": - if e.complexity.TrustCenter.TrustCenterFaqs == nil { + if e.ComplexityRoot.TrustCenter.TrustCenterFaqs == nil { break } @@ -43544,10 +43527,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.TrustCenterFaqs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterFAQOrder), args["where"].(*generated.TrustCenterFAQWhereInput)), true + return e.ComplexityRoot.TrustCenter.TrustCenterFaqs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterFAQOrder), args["where"].(*generated.TrustCenterFAQWhereInput)), true case "TrustCenter.trustCenterNdaRequests": - if e.complexity.TrustCenter.TrustCenterNdaRequests == nil { + if e.ComplexityRoot.TrustCenter.TrustCenterNdaRequests == nil { break } @@ -43556,10 +43539,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.TrustCenterNdaRequests(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterNDARequestOrder), args["where"].(*generated.TrustCenterNDARequestWhereInput)), true + return e.ComplexityRoot.TrustCenter.TrustCenterNdaRequests(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterNDARequestOrder), args["where"].(*generated.TrustCenterNDARequestWhereInput)), true case "TrustCenter.trustCenterSubprocessors": - if e.complexity.TrustCenter.TrustCenterSubprocessors == nil { + if e.ComplexityRoot.TrustCenter.TrustCenterSubprocessors == nil { break } @@ -43568,38 +43551,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenter.TrustCenterSubprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), args["where"].(*generated.TrustCenterSubprocessorWhereInput)), true + return e.ComplexityRoot.TrustCenter.TrustCenterSubprocessors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterSubprocessorOrder), args["where"].(*generated.TrustCenterSubprocessorWhereInput)), true case "TrustCenter.updatedAt": - if e.complexity.TrustCenter.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenter.UpdatedAt == nil { break } - return e.complexity.TrustCenter.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenter.UpdatedAt(childComplexity), true case "TrustCenter.updatedBy": - if e.complexity.TrustCenter.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenter.UpdatedBy == nil { break } - return e.complexity.TrustCenter.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenter.UpdatedBy(childComplexity), true case "TrustCenter.watermarkConfig": - if e.complexity.TrustCenter.WatermarkConfig == nil { + if e.ComplexityRoot.TrustCenter.WatermarkConfig == nil { break } - return e.complexity.TrustCenter.WatermarkConfig(childComplexity), true + return e.ComplexityRoot.TrustCenter.WatermarkConfig(childComplexity), true case "TrustCenterAccessTokenPayload.success": - if e.complexity.TrustCenterAccessTokenPayload.Success == nil { + if e.ComplexityRoot.TrustCenterAccessTokenPayload.Success == nil { break } - return e.complexity.TrustCenterAccessTokenPayload.Success(childComplexity), true + return e.ComplexityRoot.TrustCenterAccessTokenPayload.Success(childComplexity), true case "TrustCenterCompliance.blockedGroups": - if e.complexity.TrustCenterCompliance.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterCompliance.BlockedGroups == nil { break } @@ -43608,24 +43591,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterCompliance.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterCompliance.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterCompliance.createdAt": - if e.complexity.TrustCenterCompliance.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterCompliance.CreatedAt == nil { break } - return e.complexity.TrustCenterCompliance.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.CreatedAt(childComplexity), true case "TrustCenterCompliance.createdBy": - if e.complexity.TrustCenterCompliance.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterCompliance.CreatedBy == nil { break } - return e.complexity.TrustCenterCompliance.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.CreatedBy(childComplexity), true case "TrustCenterCompliance.editors": - if e.complexity.TrustCenterCompliance.Editors == nil { + if e.ComplexityRoot.TrustCenterCompliance.Editors == nil { break } @@ -43634,185 +43617,185 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterCompliance.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterCompliance.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterCompliance.id": - if e.complexity.TrustCenterCompliance.ID == nil { + if e.ComplexityRoot.TrustCenterCompliance.ID == nil { break } - return e.complexity.TrustCenterCompliance.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.ID(childComplexity), true case "TrustCenterCompliance.standard": - if e.complexity.TrustCenterCompliance.Standard == nil { + if e.ComplexityRoot.TrustCenterCompliance.Standard == nil { break } - return e.complexity.TrustCenterCompliance.Standard(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.Standard(childComplexity), true case "TrustCenterCompliance.standardID": - if e.complexity.TrustCenterCompliance.StandardID == nil { + if e.ComplexityRoot.TrustCenterCompliance.StandardID == nil { break } - return e.complexity.TrustCenterCompliance.StandardID(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.StandardID(childComplexity), true case "TrustCenterCompliance.tags": - if e.complexity.TrustCenterCompliance.Tags == nil { + if e.ComplexityRoot.TrustCenterCompliance.Tags == nil { break } - return e.complexity.TrustCenterCompliance.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.Tags(childComplexity), true case "TrustCenterCompliance.trustCenter": - if e.complexity.TrustCenterCompliance.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterCompliance.TrustCenter == nil { break } - return e.complexity.TrustCenterCompliance.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.TrustCenter(childComplexity), true case "TrustCenterCompliance.trustCenterID": - if e.complexity.TrustCenterCompliance.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterCompliance.TrustCenterID == nil { break } - return e.complexity.TrustCenterCompliance.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.TrustCenterID(childComplexity), true case "TrustCenterCompliance.updatedAt": - if e.complexity.TrustCenterCompliance.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterCompliance.UpdatedAt == nil { break } - return e.complexity.TrustCenterCompliance.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.UpdatedAt(childComplexity), true case "TrustCenterCompliance.updatedBy": - if e.complexity.TrustCenterCompliance.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterCompliance.UpdatedBy == nil { break } - return e.complexity.TrustCenterCompliance.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterCompliance.UpdatedBy(childComplexity), true case "TrustCenterComplianceBulkCreatePayload.trustCenterCompliances": - if e.complexity.TrustCenterComplianceBulkCreatePayload.TrustCenterCompliances == nil { + if e.ComplexityRoot.TrustCenterComplianceBulkCreatePayload.TrustCenterCompliances == nil { break } - return e.complexity.TrustCenterComplianceBulkCreatePayload.TrustCenterCompliances(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceBulkCreatePayload.TrustCenterCompliances(childComplexity), true case "TrustCenterComplianceBulkDeletePayload.deletedIDs": - if e.complexity.TrustCenterComplianceBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.TrustCenterComplianceBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.TrustCenterComplianceBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceBulkDeletePayload.DeletedIDs(childComplexity), true case "TrustCenterComplianceBulkUpdatePayload.trustCenterCompliances": - if e.complexity.TrustCenterComplianceBulkUpdatePayload.TrustCenterCompliances == nil { + if e.ComplexityRoot.TrustCenterComplianceBulkUpdatePayload.TrustCenterCompliances == nil { break } - return e.complexity.TrustCenterComplianceBulkUpdatePayload.TrustCenterCompliances(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceBulkUpdatePayload.TrustCenterCompliances(childComplexity), true case "TrustCenterComplianceBulkUpdatePayload.updatedIDs": - if e.complexity.TrustCenterComplianceBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.TrustCenterComplianceBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.TrustCenterComplianceBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceBulkUpdatePayload.UpdatedIDs(childComplexity), true case "TrustCenterComplianceConnection.edges": - if e.complexity.TrustCenterComplianceConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterComplianceConnection.Edges == nil { break } - return e.complexity.TrustCenterComplianceConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceConnection.Edges(childComplexity), true case "TrustCenterComplianceConnection.pageInfo": - if e.complexity.TrustCenterComplianceConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterComplianceConnection.PageInfo == nil { break } - return e.complexity.TrustCenterComplianceConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceConnection.PageInfo(childComplexity), true case "TrustCenterComplianceConnection.totalCount": - if e.complexity.TrustCenterComplianceConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterComplianceConnection.TotalCount == nil { break } - return e.complexity.TrustCenterComplianceConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceConnection.TotalCount(childComplexity), true case "TrustCenterComplianceCreatePayload.trustCenterCompliance": - if e.complexity.TrustCenterComplianceCreatePayload.TrustCenterCompliance == nil { + if e.ComplexityRoot.TrustCenterComplianceCreatePayload.TrustCenterCompliance == nil { break } - return e.complexity.TrustCenterComplianceCreatePayload.TrustCenterCompliance(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceCreatePayload.TrustCenterCompliance(childComplexity), true case "TrustCenterComplianceDeletePayload.deletedID": - if e.complexity.TrustCenterComplianceDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterComplianceDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterComplianceDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceDeletePayload.DeletedID(childComplexity), true case "TrustCenterComplianceEdge.cursor": - if e.complexity.TrustCenterComplianceEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterComplianceEdge.Cursor == nil { break } - return e.complexity.TrustCenterComplianceEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceEdge.Cursor(childComplexity), true case "TrustCenterComplianceEdge.node": - if e.complexity.TrustCenterComplianceEdge.Node == nil { + if e.ComplexityRoot.TrustCenterComplianceEdge.Node == nil { break } - return e.complexity.TrustCenterComplianceEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceEdge.Node(childComplexity), true case "TrustCenterComplianceUpdatePayload.trustCenterCompliance": - if e.complexity.TrustCenterComplianceUpdatePayload.TrustCenterCompliance == nil { + if e.ComplexityRoot.TrustCenterComplianceUpdatePayload.TrustCenterCompliance == nil { break } - return e.complexity.TrustCenterComplianceUpdatePayload.TrustCenterCompliance(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceUpdatePayload.TrustCenterCompliance(childComplexity), true case "TrustCenterConnection.edges": - if e.complexity.TrustCenterConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterConnection.Edges == nil { break } - return e.complexity.TrustCenterConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterConnection.Edges(childComplexity), true case "TrustCenterConnection.pageInfo": - if e.complexity.TrustCenterConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterConnection.PageInfo == nil { break } - return e.complexity.TrustCenterConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterConnection.PageInfo(childComplexity), true case "TrustCenterConnection.totalCount": - if e.complexity.TrustCenterConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterConnection.TotalCount == nil { break } - return e.complexity.TrustCenterConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterConnection.TotalCount(childComplexity), true case "TrustCenterCreatePayload.trustCenter": - if e.complexity.TrustCenterCreatePayload.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterCreatePayload.TrustCenter == nil { break } - return e.complexity.TrustCenterCreatePayload.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterCreatePayload.TrustCenter(childComplexity), true case "TrustCenterDeletePayload.deletedID": - if e.complexity.TrustCenterDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterDeletePayload.DeletedID(childComplexity), true case "TrustCenterDoc.blockedGroups": - if e.complexity.TrustCenterDoc.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterDoc.BlockedGroups == nil { break } @@ -43821,24 +43804,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterDoc.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterDoc.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterDoc.createdAt": - if e.complexity.TrustCenterDoc.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterDoc.CreatedAt == nil { break } - return e.complexity.TrustCenterDoc.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.CreatedAt(childComplexity), true case "TrustCenterDoc.createdBy": - if e.complexity.TrustCenterDoc.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterDoc.CreatedBy == nil { break } - return e.complexity.TrustCenterDoc.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.CreatedBy(childComplexity), true case "TrustCenterDoc.editors": - if e.complexity.TrustCenterDoc.Editors == nil { + if e.ComplexityRoot.TrustCenterDoc.Editors == nil { break } @@ -43847,248 +43830,248 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterDoc.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterDoc.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterDoc.file": - if e.complexity.TrustCenterDoc.File == nil { + if e.ComplexityRoot.TrustCenterDoc.File == nil { break } - return e.complexity.TrustCenterDoc.File(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.File(childComplexity), true case "TrustCenterDoc.fileID": - if e.complexity.TrustCenterDoc.FileID == nil { + if e.ComplexityRoot.TrustCenterDoc.FileID == nil { break } - return e.complexity.TrustCenterDoc.FileID(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.FileID(childComplexity), true case "TrustCenterDoc.id": - if e.complexity.TrustCenterDoc.ID == nil { + if e.ComplexityRoot.TrustCenterDoc.ID == nil { break } - return e.complexity.TrustCenterDoc.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.ID(childComplexity), true case "TrustCenterDoc.originalFile": - if e.complexity.TrustCenterDoc.OriginalFile == nil { + if e.ComplexityRoot.TrustCenterDoc.OriginalFile == nil { break } - return e.complexity.TrustCenterDoc.OriginalFile(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.OriginalFile(childComplexity), true case "TrustCenterDoc.originalFileID": - if e.complexity.TrustCenterDoc.OriginalFileID == nil { + if e.ComplexityRoot.TrustCenterDoc.OriginalFileID == nil { break } - return e.complexity.TrustCenterDoc.OriginalFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.OriginalFileID(childComplexity), true case "TrustCenterDoc.standard": - if e.complexity.TrustCenterDoc.Standard == nil { + if e.ComplexityRoot.TrustCenterDoc.Standard == nil { break } - return e.complexity.TrustCenterDoc.Standard(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.Standard(childComplexity), true case "TrustCenterDoc.standardID": - if e.complexity.TrustCenterDoc.StandardID == nil { + if e.ComplexityRoot.TrustCenterDoc.StandardID == nil { break } - return e.complexity.TrustCenterDoc.StandardID(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.StandardID(childComplexity), true case "TrustCenterDoc.tags": - if e.complexity.TrustCenterDoc.Tags == nil { + if e.ComplexityRoot.TrustCenterDoc.Tags == nil { break } - return e.complexity.TrustCenterDoc.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.Tags(childComplexity), true case "TrustCenterDoc.title": - if e.complexity.TrustCenterDoc.Title == nil { + if e.ComplexityRoot.TrustCenterDoc.Title == nil { break } - return e.complexity.TrustCenterDoc.Title(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.Title(childComplexity), true case "TrustCenterDoc.trustCenter": - if e.complexity.TrustCenterDoc.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterDoc.TrustCenter == nil { break } - return e.complexity.TrustCenterDoc.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.TrustCenter(childComplexity), true case "TrustCenterDoc.trustCenterDocKind": - if e.complexity.TrustCenterDoc.TrustCenterDocKind == nil { + if e.ComplexityRoot.TrustCenterDoc.TrustCenterDocKind == nil { break } - return e.complexity.TrustCenterDoc.TrustCenterDocKind(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.TrustCenterDocKind(childComplexity), true case "TrustCenterDoc.trustCenterDocKindID": - if e.complexity.TrustCenterDoc.TrustCenterDocKindID == nil { + if e.ComplexityRoot.TrustCenterDoc.TrustCenterDocKindID == nil { break } - return e.complexity.TrustCenterDoc.TrustCenterDocKindID(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.TrustCenterDocKindID(childComplexity), true case "TrustCenterDoc.trustCenterDocKindName": - if e.complexity.TrustCenterDoc.TrustCenterDocKindName == nil { + if e.ComplexityRoot.TrustCenterDoc.TrustCenterDocKindName == nil { break } - return e.complexity.TrustCenterDoc.TrustCenterDocKindName(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.TrustCenterDocKindName(childComplexity), true case "TrustCenterDoc.trustCenterID": - if e.complexity.TrustCenterDoc.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterDoc.TrustCenterID == nil { break } - return e.complexity.TrustCenterDoc.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.TrustCenterID(childComplexity), true case "TrustCenterDoc.updatedAt": - if e.complexity.TrustCenterDoc.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterDoc.UpdatedAt == nil { break } - return e.complexity.TrustCenterDoc.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.UpdatedAt(childComplexity), true case "TrustCenterDoc.updatedBy": - if e.complexity.TrustCenterDoc.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterDoc.UpdatedBy == nil { break } - return e.complexity.TrustCenterDoc.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.UpdatedBy(childComplexity), true case "TrustCenterDoc.visibility": - if e.complexity.TrustCenterDoc.Visibility == nil { + if e.ComplexityRoot.TrustCenterDoc.Visibility == nil { break } - return e.complexity.TrustCenterDoc.Visibility(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.Visibility(childComplexity), true case "TrustCenterDoc.watermarkStatus": - if e.complexity.TrustCenterDoc.WatermarkStatus == nil { + if e.ComplexityRoot.TrustCenterDoc.WatermarkStatus == nil { break } - return e.complexity.TrustCenterDoc.WatermarkStatus(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.WatermarkStatus(childComplexity), true case "TrustCenterDoc.watermarkingEnabled": - if e.complexity.TrustCenterDoc.WatermarkingEnabled == nil { + if e.ComplexityRoot.TrustCenterDoc.WatermarkingEnabled == nil { break } - return e.complexity.TrustCenterDoc.WatermarkingEnabled(childComplexity), true + return e.ComplexityRoot.TrustCenterDoc.WatermarkingEnabled(childComplexity), true case "TrustCenterDocBulkCreatePayload.trustCenterDocs": - if e.complexity.TrustCenterDocBulkCreatePayload.TrustCenterDocs == nil { + if e.ComplexityRoot.TrustCenterDocBulkCreatePayload.TrustCenterDocs == nil { break } - return e.complexity.TrustCenterDocBulkCreatePayload.TrustCenterDocs(childComplexity), true + return e.ComplexityRoot.TrustCenterDocBulkCreatePayload.TrustCenterDocs(childComplexity), true case "TrustCenterDocBulkDeletePayload.deletedIDs": - if e.complexity.TrustCenterDocBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.TrustCenterDocBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.TrustCenterDocBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterDocBulkDeletePayload.DeletedIDs(childComplexity), true case "TrustCenterDocBulkUpdatePayload.trustCenterDocs": - if e.complexity.TrustCenterDocBulkUpdatePayload.TrustCenterDocs == nil { + if e.ComplexityRoot.TrustCenterDocBulkUpdatePayload.TrustCenterDocs == nil { break } - return e.complexity.TrustCenterDocBulkUpdatePayload.TrustCenterDocs(childComplexity), true + return e.ComplexityRoot.TrustCenterDocBulkUpdatePayload.TrustCenterDocs(childComplexity), true case "TrustCenterDocBulkUpdatePayload.updatedIDs": - if e.complexity.TrustCenterDocBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.TrustCenterDocBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.TrustCenterDocBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterDocBulkUpdatePayload.UpdatedIDs(childComplexity), true case "TrustCenterDocConnection.edges": - if e.complexity.TrustCenterDocConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterDocConnection.Edges == nil { break } - return e.complexity.TrustCenterDocConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterDocConnection.Edges(childComplexity), true case "TrustCenterDocConnection.pageInfo": - if e.complexity.TrustCenterDocConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterDocConnection.PageInfo == nil { break } - return e.complexity.TrustCenterDocConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterDocConnection.PageInfo(childComplexity), true case "TrustCenterDocConnection.totalCount": - if e.complexity.TrustCenterDocConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterDocConnection.TotalCount == nil { break } - return e.complexity.TrustCenterDocConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterDocConnection.TotalCount(childComplexity), true case "TrustCenterDocCreatePayload.trustCenterDoc": - if e.complexity.TrustCenterDocCreatePayload.TrustCenterDoc == nil { + if e.ComplexityRoot.TrustCenterDocCreatePayload.TrustCenterDoc == nil { break } - return e.complexity.TrustCenterDocCreatePayload.TrustCenterDoc(childComplexity), true + return e.ComplexityRoot.TrustCenterDocCreatePayload.TrustCenterDoc(childComplexity), true case "TrustCenterDocDeletePayload.deletedID": - if e.complexity.TrustCenterDocDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterDocDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterDocDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterDocDeletePayload.DeletedID(childComplexity), true case "TrustCenterDocEdge.cursor": - if e.complexity.TrustCenterDocEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterDocEdge.Cursor == nil { break } - return e.complexity.TrustCenterDocEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterDocEdge.Cursor(childComplexity), true case "TrustCenterDocEdge.node": - if e.complexity.TrustCenterDocEdge.Node == nil { + if e.ComplexityRoot.TrustCenterDocEdge.Node == nil { break } - return e.complexity.TrustCenterDocEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterDocEdge.Node(childComplexity), true case "TrustCenterDocUpdatePayload.trustCenterDoc": - if e.complexity.TrustCenterDocUpdatePayload.TrustCenterDoc == nil { + if e.ComplexityRoot.TrustCenterDocUpdatePayload.TrustCenterDoc == nil { break } - return e.complexity.TrustCenterDocUpdatePayload.TrustCenterDoc(childComplexity), true + return e.ComplexityRoot.TrustCenterDocUpdatePayload.TrustCenterDoc(childComplexity), true case "TrustCenterDomainCreatePayload.customDomain": - if e.complexity.TrustCenterDomainCreatePayload.CustomDomain == nil { + if e.ComplexityRoot.TrustCenterDomainCreatePayload.CustomDomain == nil { break } - return e.complexity.TrustCenterDomainCreatePayload.CustomDomain(childComplexity), true + return e.ComplexityRoot.TrustCenterDomainCreatePayload.CustomDomain(childComplexity), true case "TrustCenterEdge.cursor": - if e.complexity.TrustCenterEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterEdge.Cursor == nil { break } - return e.complexity.TrustCenterEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterEdge.Cursor(childComplexity), true case "TrustCenterEdge.node": - if e.complexity.TrustCenterEdge.Node == nil { + if e.ComplexityRoot.TrustCenterEdge.Node == nil { break } - return e.complexity.TrustCenterEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterEdge.Node(childComplexity), true case "TrustCenterEntity.blockedGroups": - if e.complexity.TrustCenterEntity.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterEntity.BlockedGroups == nil { break } @@ -44097,24 +44080,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterEntity.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterEntity.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterEntity.createdAt": - if e.complexity.TrustCenterEntity.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterEntity.CreatedAt == nil { break } - return e.complexity.TrustCenterEntity.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.CreatedAt(childComplexity), true case "TrustCenterEntity.createdBy": - if e.complexity.TrustCenterEntity.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterEntity.CreatedBy == nil { break } - return e.complexity.TrustCenterEntity.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.CreatedBy(childComplexity), true case "TrustCenterEntity.editors": - if e.complexity.TrustCenterEntity.Editors == nil { + if e.ComplexityRoot.TrustCenterEntity.Editors == nil { break } @@ -44123,150 +44106,150 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterEntity.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterEntity.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterEntity.entityType": - if e.complexity.TrustCenterEntity.EntityType == nil { + if e.ComplexityRoot.TrustCenterEntity.EntityType == nil { break } - return e.complexity.TrustCenterEntity.EntityType(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.EntityType(childComplexity), true case "TrustCenterEntity.entityTypeID": - if e.complexity.TrustCenterEntity.EntityTypeID == nil { + if e.ComplexityRoot.TrustCenterEntity.EntityTypeID == nil { break } - return e.complexity.TrustCenterEntity.EntityTypeID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.EntityTypeID(childComplexity), true case "TrustCenterEntity.id": - if e.complexity.TrustCenterEntity.ID == nil { + if e.ComplexityRoot.TrustCenterEntity.ID == nil { break } - return e.complexity.TrustCenterEntity.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.ID(childComplexity), true case "TrustCenterEntity.logoFile": - if e.complexity.TrustCenterEntity.LogoFile == nil { + if e.ComplexityRoot.TrustCenterEntity.LogoFile == nil { break } - return e.complexity.TrustCenterEntity.LogoFile(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.LogoFile(childComplexity), true case "TrustCenterEntity.logoFileID": - if e.complexity.TrustCenterEntity.LogoFileID == nil { + if e.ComplexityRoot.TrustCenterEntity.LogoFileID == nil { break } - return e.complexity.TrustCenterEntity.LogoFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.LogoFileID(childComplexity), true case "TrustCenterEntity.name": - if e.complexity.TrustCenterEntity.Name == nil { + if e.ComplexityRoot.TrustCenterEntity.Name == nil { break } - return e.complexity.TrustCenterEntity.Name(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.Name(childComplexity), true case "TrustCenterEntity.trustCenter": - if e.complexity.TrustCenterEntity.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterEntity.TrustCenter == nil { break } - return e.complexity.TrustCenterEntity.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.TrustCenter(childComplexity), true case "TrustCenterEntity.trustCenterID": - if e.complexity.TrustCenterEntity.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterEntity.TrustCenterID == nil { break } - return e.complexity.TrustCenterEntity.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.TrustCenterID(childComplexity), true case "TrustCenterEntity.url": - if e.complexity.TrustCenterEntity.URL == nil { + if e.ComplexityRoot.TrustCenterEntity.URL == nil { break } - return e.complexity.TrustCenterEntity.URL(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.URL(childComplexity), true case "TrustCenterEntity.updatedAt": - if e.complexity.TrustCenterEntity.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterEntity.UpdatedAt == nil { break } - return e.complexity.TrustCenterEntity.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.UpdatedAt(childComplexity), true case "TrustCenterEntity.updatedBy": - if e.complexity.TrustCenterEntity.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterEntity.UpdatedBy == nil { break } - return e.complexity.TrustCenterEntity.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterEntity.UpdatedBy(childComplexity), true case "TrustCenterEntityBulkCreatePayload.trustCenterEntities": - if e.complexity.TrustCenterEntityBulkCreatePayload.TrustCenterEntities == nil { + if e.ComplexityRoot.TrustCenterEntityBulkCreatePayload.TrustCenterEntities == nil { break } - return e.complexity.TrustCenterEntityBulkCreatePayload.TrustCenterEntities(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityBulkCreatePayload.TrustCenterEntities(childComplexity), true case "TrustCenterEntityConnection.edges": - if e.complexity.TrustCenterEntityConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterEntityConnection.Edges == nil { break } - return e.complexity.TrustCenterEntityConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityConnection.Edges(childComplexity), true case "TrustCenterEntityConnection.pageInfo": - if e.complexity.TrustCenterEntityConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterEntityConnection.PageInfo == nil { break } - return e.complexity.TrustCenterEntityConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityConnection.PageInfo(childComplexity), true case "TrustCenterEntityConnection.totalCount": - if e.complexity.TrustCenterEntityConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterEntityConnection.TotalCount == nil { break } - return e.complexity.TrustCenterEntityConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityConnection.TotalCount(childComplexity), true case "TrustCenterEntityCreatePayload.trustCenterEntity": - if e.complexity.TrustCenterEntityCreatePayload.TrustCenterEntity == nil { + if e.ComplexityRoot.TrustCenterEntityCreatePayload.TrustCenterEntity == nil { break } - return e.complexity.TrustCenterEntityCreatePayload.TrustCenterEntity(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityCreatePayload.TrustCenterEntity(childComplexity), true case "TrustCenterEntityDeletePayload.deletedID": - if e.complexity.TrustCenterEntityDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterEntityDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterEntityDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityDeletePayload.DeletedID(childComplexity), true case "TrustCenterEntityEdge.cursor": - if e.complexity.TrustCenterEntityEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterEntityEdge.Cursor == nil { break } - return e.complexity.TrustCenterEntityEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityEdge.Cursor(childComplexity), true case "TrustCenterEntityEdge.node": - if e.complexity.TrustCenterEntityEdge.Node == nil { + if e.ComplexityRoot.TrustCenterEntityEdge.Node == nil { break } - return e.complexity.TrustCenterEntityEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityEdge.Node(childComplexity), true case "TrustCenterEntityUpdatePayload.trustCenterEntity": - if e.complexity.TrustCenterEntityUpdatePayload.TrustCenterEntity == nil { + if e.ComplexityRoot.TrustCenterEntityUpdatePayload.TrustCenterEntity == nil { break } - return e.complexity.TrustCenterEntityUpdatePayload.TrustCenterEntity(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityUpdatePayload.TrustCenterEntity(childComplexity), true case "TrustCenterFAQ.blockedGroups": - if e.complexity.TrustCenterFAQ.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterFAQ.BlockedGroups == nil { break } @@ -44275,31 +44258,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterFAQ.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterFAQ.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterFAQ.createdAt": - if e.complexity.TrustCenterFAQ.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterFAQ.CreatedAt == nil { break } - return e.complexity.TrustCenterFAQ.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.CreatedAt(childComplexity), true case "TrustCenterFAQ.createdBy": - if e.complexity.TrustCenterFAQ.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterFAQ.CreatedBy == nil { break } - return e.complexity.TrustCenterFAQ.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.CreatedBy(childComplexity), true case "TrustCenterFAQ.displayOrder": - if e.complexity.TrustCenterFAQ.DisplayOrder == nil { + if e.ComplexityRoot.TrustCenterFAQ.DisplayOrder == nil { break } - return e.complexity.TrustCenterFAQ.DisplayOrder(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.DisplayOrder(childComplexity), true case "TrustCenterFAQ.editors": - if e.complexity.TrustCenterFAQ.Editors == nil { + if e.ComplexityRoot.TrustCenterFAQ.Editors == nil { break } @@ -44308,199 +44291,199 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterFAQ.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterFAQ.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterFAQ.id": - if e.complexity.TrustCenterFAQ.ID == nil { + if e.ComplexityRoot.TrustCenterFAQ.ID == nil { break } - return e.complexity.TrustCenterFAQ.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.ID(childComplexity), true case "TrustCenterFAQ.note": - if e.complexity.TrustCenterFAQ.Note == nil { + if e.ComplexityRoot.TrustCenterFAQ.Note == nil { break } - return e.complexity.TrustCenterFAQ.Note(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.Note(childComplexity), true case "TrustCenterFAQ.noteID": - if e.complexity.TrustCenterFAQ.NoteID == nil { + if e.ComplexityRoot.TrustCenterFAQ.NoteID == nil { break } - return e.complexity.TrustCenterFAQ.NoteID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.NoteID(childComplexity), true case "TrustCenterFAQ.referenceLink": - if e.complexity.TrustCenterFAQ.ReferenceLink == nil { + if e.ComplexityRoot.TrustCenterFAQ.ReferenceLink == nil { break } - return e.complexity.TrustCenterFAQ.ReferenceLink(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.ReferenceLink(childComplexity), true case "TrustCenterFAQ.trustCenter": - if e.complexity.TrustCenterFAQ.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterFAQ.TrustCenter == nil { break } - return e.complexity.TrustCenterFAQ.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.TrustCenter(childComplexity), true case "TrustCenterFAQ.trustCenterFaqKind": - if e.complexity.TrustCenterFAQ.TrustCenterFaqKind == nil { + if e.ComplexityRoot.TrustCenterFAQ.TrustCenterFaqKind == nil { break } - return e.complexity.TrustCenterFAQ.TrustCenterFaqKind(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.TrustCenterFaqKind(childComplexity), true case "TrustCenterFAQ.trustCenterFaqKindID": - if e.complexity.TrustCenterFAQ.TrustCenterFaqKindID == nil { + if e.ComplexityRoot.TrustCenterFAQ.TrustCenterFaqKindID == nil { break } - return e.complexity.TrustCenterFAQ.TrustCenterFaqKindID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.TrustCenterFaqKindID(childComplexity), true case "TrustCenterFAQ.trustCenterFaqKindName": - if e.complexity.TrustCenterFAQ.TrustCenterFaqKindName == nil { + if e.ComplexityRoot.TrustCenterFAQ.TrustCenterFaqKindName == nil { break } - return e.complexity.TrustCenterFAQ.TrustCenterFaqKindName(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.TrustCenterFaqKindName(childComplexity), true case "TrustCenterFAQ.trustCenterID": - if e.complexity.TrustCenterFAQ.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterFAQ.TrustCenterID == nil { break } - return e.complexity.TrustCenterFAQ.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.TrustCenterID(childComplexity), true case "TrustCenterFAQ.updatedAt": - if e.complexity.TrustCenterFAQ.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterFAQ.UpdatedAt == nil { break } - return e.complexity.TrustCenterFAQ.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.UpdatedAt(childComplexity), true case "TrustCenterFAQ.updatedBy": - if e.complexity.TrustCenterFAQ.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterFAQ.UpdatedBy == nil { break } - return e.complexity.TrustCenterFAQ.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQ.UpdatedBy(childComplexity), true case "TrustCenterFAQBulkCreatePayload.trustCenterFAQs": - if e.complexity.TrustCenterFAQBulkCreatePayload.TrustCenterFAQs == nil { + if e.ComplexityRoot.TrustCenterFAQBulkCreatePayload.TrustCenterFAQs == nil { break } - return e.complexity.TrustCenterFAQBulkCreatePayload.TrustCenterFAQs(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQBulkCreatePayload.TrustCenterFAQs(childComplexity), true case "TrustCenterFAQBulkDeletePayload.deletedIDs": - if e.complexity.TrustCenterFAQBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.TrustCenterFAQBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.TrustCenterFAQBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQBulkDeletePayload.DeletedIDs(childComplexity), true case "TrustCenterFAQBulkUpdatePayload.trustCenterFAQs": - if e.complexity.TrustCenterFAQBulkUpdatePayload.TrustCenterFAQs == nil { + if e.ComplexityRoot.TrustCenterFAQBulkUpdatePayload.TrustCenterFAQs == nil { break } - return e.complexity.TrustCenterFAQBulkUpdatePayload.TrustCenterFAQs(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQBulkUpdatePayload.TrustCenterFAQs(childComplexity), true case "TrustCenterFAQBulkUpdatePayload.updatedIDs": - if e.complexity.TrustCenterFAQBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.TrustCenterFAQBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.TrustCenterFAQBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQBulkUpdatePayload.UpdatedIDs(childComplexity), true case "TrustCenterFAQConnection.edges": - if e.complexity.TrustCenterFAQConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterFAQConnection.Edges == nil { break } - return e.complexity.TrustCenterFAQConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQConnection.Edges(childComplexity), true case "TrustCenterFAQConnection.pageInfo": - if e.complexity.TrustCenterFAQConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterFAQConnection.PageInfo == nil { break } - return e.complexity.TrustCenterFAQConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQConnection.PageInfo(childComplexity), true case "TrustCenterFAQConnection.totalCount": - if e.complexity.TrustCenterFAQConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterFAQConnection.TotalCount == nil { break } - return e.complexity.TrustCenterFAQConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQConnection.TotalCount(childComplexity), true case "TrustCenterFAQCreatePayload.trustCenterFAQ": - if e.complexity.TrustCenterFAQCreatePayload.TrustCenterFaq == nil { + if e.ComplexityRoot.TrustCenterFAQCreatePayload.TrustCenterFaq == nil { break } - return e.complexity.TrustCenterFAQCreatePayload.TrustCenterFaq(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQCreatePayload.TrustCenterFaq(childComplexity), true case "TrustCenterFAQDeletePayload.deletedID": - if e.complexity.TrustCenterFAQDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterFAQDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterFAQDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQDeletePayload.DeletedID(childComplexity), true case "TrustCenterFAQEdge.cursor": - if e.complexity.TrustCenterFAQEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterFAQEdge.Cursor == nil { break } - return e.complexity.TrustCenterFAQEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQEdge.Cursor(childComplexity), true case "TrustCenterFAQEdge.node": - if e.complexity.TrustCenterFAQEdge.Node == nil { + if e.ComplexityRoot.TrustCenterFAQEdge.Node == nil { break } - return e.complexity.TrustCenterFAQEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQEdge.Node(childComplexity), true case "TrustCenterFAQUpdatePayload.trustCenterFAQ": - if e.complexity.TrustCenterFAQUpdatePayload.TrustCenterFaq == nil { + if e.ComplexityRoot.TrustCenterFAQUpdatePayload.TrustCenterFaq == nil { break } - return e.complexity.TrustCenterFAQUpdatePayload.TrustCenterFaq(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQUpdatePayload.TrustCenterFaq(childComplexity), true case "TrustCenterNDACreatePayload.template": - if e.complexity.TrustCenterNDACreatePayload.Template == nil { + if e.ComplexityRoot.TrustCenterNDACreatePayload.Template == nil { break } - return e.complexity.TrustCenterNDACreatePayload.Template(childComplexity), true + return e.ComplexityRoot.TrustCenterNDACreatePayload.Template(childComplexity), true case "TrustCenterNDARequest.accessLevel": - if e.complexity.TrustCenterNDARequest.AccessLevel == nil { + if e.ComplexityRoot.TrustCenterNDARequest.AccessLevel == nil { break } - return e.complexity.TrustCenterNDARequest.AccessLevel(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.AccessLevel(childComplexity), true case "TrustCenterNDARequest.approvedAt": - if e.complexity.TrustCenterNDARequest.ApprovedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequest.ApprovedAt == nil { break } - return e.complexity.TrustCenterNDARequest.ApprovedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.ApprovedAt(childComplexity), true case "TrustCenterNDARequest.approvedByUserID": - if e.complexity.TrustCenterNDARequest.ApprovedByUserID == nil { + if e.ComplexityRoot.TrustCenterNDARequest.ApprovedByUserID == nil { break } - return e.complexity.TrustCenterNDARequest.ApprovedByUserID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.ApprovedByUserID(childComplexity), true case "TrustCenterNDARequest.blockedGroups": - if e.complexity.TrustCenterNDARequest.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterNDARequest.BlockedGroups == nil { break } @@ -44509,45 +44492,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterNDARequest.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterNDARequest.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterNDARequest.companyName": - if e.complexity.TrustCenterNDARequest.CompanyName == nil { + if e.ComplexityRoot.TrustCenterNDARequest.CompanyName == nil { break } - return e.complexity.TrustCenterNDARequest.CompanyName(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.CompanyName(childComplexity), true case "TrustCenterNDARequest.createdAt": - if e.complexity.TrustCenterNDARequest.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequest.CreatedAt == nil { break } - return e.complexity.TrustCenterNDARequest.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.CreatedAt(childComplexity), true case "TrustCenterNDARequest.createdBy": - if e.complexity.TrustCenterNDARequest.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterNDARequest.CreatedBy == nil { break } - return e.complexity.TrustCenterNDARequest.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.CreatedBy(childComplexity), true case "TrustCenterNDARequest.document": - if e.complexity.TrustCenterNDARequest.Document == nil { + if e.ComplexityRoot.TrustCenterNDARequest.Document == nil { break } - return e.complexity.TrustCenterNDARequest.Document(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.Document(childComplexity), true case "TrustCenterNDARequest.documentDataID": - if e.complexity.TrustCenterNDARequest.DocumentDataID == nil { + if e.ComplexityRoot.TrustCenterNDARequest.DocumentDataID == nil { break } - return e.complexity.TrustCenterNDARequest.DocumentDataID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.DocumentDataID(childComplexity), true case "TrustCenterNDARequest.editors": - if e.complexity.TrustCenterNDARequest.Editors == nil { + if e.ComplexityRoot.TrustCenterNDARequest.Editors == nil { break } @@ -44556,87 +44539,87 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterNDARequest.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterNDARequest.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterNDARequest.email": - if e.complexity.TrustCenterNDARequest.Email == nil { + if e.ComplexityRoot.TrustCenterNDARequest.Email == nil { break } - return e.complexity.TrustCenterNDARequest.Email(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.Email(childComplexity), true case "TrustCenterNDARequest.file": - if e.complexity.TrustCenterNDARequest.File == nil { + if e.ComplexityRoot.TrustCenterNDARequest.File == nil { break } - return e.complexity.TrustCenterNDARequest.File(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.File(childComplexity), true case "TrustCenterNDARequest.fileID": - if e.complexity.TrustCenterNDARequest.FileID == nil { + if e.ComplexityRoot.TrustCenterNDARequest.FileID == nil { break } - return e.complexity.TrustCenterNDARequest.FileID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.FileID(childComplexity), true case "TrustCenterNDARequest.firstName": - if e.complexity.TrustCenterNDARequest.FirstName == nil { + if e.ComplexityRoot.TrustCenterNDARequest.FirstName == nil { break } - return e.complexity.TrustCenterNDARequest.FirstName(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.FirstName(childComplexity), true case "TrustCenterNDARequest.id": - if e.complexity.TrustCenterNDARequest.ID == nil { + if e.ComplexityRoot.TrustCenterNDARequest.ID == nil { break } - return e.complexity.TrustCenterNDARequest.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.ID(childComplexity), true case "TrustCenterNDARequest.lastName": - if e.complexity.TrustCenterNDARequest.LastName == nil { + if e.ComplexityRoot.TrustCenterNDARequest.LastName == nil { break } - return e.complexity.TrustCenterNDARequest.LastName(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.LastName(childComplexity), true case "TrustCenterNDARequest.reason": - if e.complexity.TrustCenterNDARequest.Reason == nil { + if e.ComplexityRoot.TrustCenterNDARequest.Reason == nil { break } - return e.complexity.TrustCenterNDARequest.Reason(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.Reason(childComplexity), true case "TrustCenterNDARequest.signedAt": - if e.complexity.TrustCenterNDARequest.SignedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequest.SignedAt == nil { break } - return e.complexity.TrustCenterNDARequest.SignedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.SignedAt(childComplexity), true case "TrustCenterNDARequest.status": - if e.complexity.TrustCenterNDARequest.Status == nil { + if e.ComplexityRoot.TrustCenterNDARequest.Status == nil { break } - return e.complexity.TrustCenterNDARequest.Status(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.Status(childComplexity), true case "TrustCenterNDARequest.tags": - if e.complexity.TrustCenterNDARequest.Tags == nil { + if e.ComplexityRoot.TrustCenterNDARequest.Tags == nil { break } - return e.complexity.TrustCenterNDARequest.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.Tags(childComplexity), true case "TrustCenterNDARequest.trustCenter": - if e.complexity.TrustCenterNDARequest.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterNDARequest.TrustCenter == nil { break } - return e.complexity.TrustCenterNDARequest.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.TrustCenter(childComplexity), true case "TrustCenterNDARequest.trustCenterDocs": - if e.complexity.TrustCenterNDARequest.TrustCenterDocs == nil { + if e.ComplexityRoot.TrustCenterNDARequest.TrustCenterDocs == nil { break } @@ -44645,129 +44628,129 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterNDARequest.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true + return e.ComplexityRoot.TrustCenterNDARequest.TrustCenterDocs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TrustCenterDocOrder), args["where"].(*generated.TrustCenterDocWhereInput)), true case "TrustCenterNDARequest.trustCenterID": - if e.complexity.TrustCenterNDARequest.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterNDARequest.TrustCenterID == nil { break } - return e.complexity.TrustCenterNDARequest.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.TrustCenterID(childComplexity), true case "TrustCenterNDARequest.updatedAt": - if e.complexity.TrustCenterNDARequest.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequest.UpdatedAt == nil { break } - return e.complexity.TrustCenterNDARequest.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.UpdatedAt(childComplexity), true case "TrustCenterNDARequest.updatedBy": - if e.complexity.TrustCenterNDARequest.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterNDARequest.UpdatedBy == nil { break } - return e.complexity.TrustCenterNDARequest.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequest.UpdatedBy(childComplexity), true case "TrustCenterNDARequestBulkCreatePayload.trustCenterNDARequests": - if e.complexity.TrustCenterNDARequestBulkCreatePayload.TrustCenterNDARequests == nil { + if e.ComplexityRoot.TrustCenterNDARequestBulkCreatePayload.TrustCenterNDARequests == nil { break } - return e.complexity.TrustCenterNDARequestBulkCreatePayload.TrustCenterNDARequests(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestBulkCreatePayload.TrustCenterNDARequests(childComplexity), true case "TrustCenterNDARequestBulkDeletePayload.deletedIDs": - if e.complexity.TrustCenterNDARequestBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.TrustCenterNDARequestBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.TrustCenterNDARequestBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestBulkDeletePayload.DeletedIDs(childComplexity), true case "TrustCenterNDARequestConnection.edges": - if e.complexity.TrustCenterNDARequestConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterNDARequestConnection.Edges == nil { break } - return e.complexity.TrustCenterNDARequestConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestConnection.Edges(childComplexity), true case "TrustCenterNDARequestConnection.pageInfo": - if e.complexity.TrustCenterNDARequestConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterNDARequestConnection.PageInfo == nil { break } - return e.complexity.TrustCenterNDARequestConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestConnection.PageInfo(childComplexity), true case "TrustCenterNDARequestConnection.totalCount": - if e.complexity.TrustCenterNDARequestConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterNDARequestConnection.TotalCount == nil { break } - return e.complexity.TrustCenterNDARequestConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestConnection.TotalCount(childComplexity), true case "TrustCenterNDARequestCreatePayload.trustCenterNDARequest": - if e.complexity.TrustCenterNDARequestCreatePayload.TrustCenterNDARequest == nil { + if e.ComplexityRoot.TrustCenterNDARequestCreatePayload.TrustCenterNDARequest == nil { break } - return e.complexity.TrustCenterNDARequestCreatePayload.TrustCenterNDARequest(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestCreatePayload.TrustCenterNDARequest(childComplexity), true case "TrustCenterNDARequestDeletePayload.deletedID": - if e.complexity.TrustCenterNDARequestDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterNDARequestDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterNDARequestDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestDeletePayload.DeletedID(childComplexity), true case "TrustCenterNDARequestEdge.cursor": - if e.complexity.TrustCenterNDARequestEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterNDARequestEdge.Cursor == nil { break } - return e.complexity.TrustCenterNDARequestEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestEdge.Cursor(childComplexity), true case "TrustCenterNDARequestEdge.node": - if e.complexity.TrustCenterNDARequestEdge.Node == nil { + if e.ComplexityRoot.TrustCenterNDARequestEdge.Node == nil { break } - return e.complexity.TrustCenterNDARequestEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestEdge.Node(childComplexity), true case "TrustCenterNDARequestUpdatePayload.trustCenterNDARequest": - if e.complexity.TrustCenterNDARequestUpdatePayload.TrustCenterNDARequest == nil { + if e.ComplexityRoot.TrustCenterNDARequestUpdatePayload.TrustCenterNDARequest == nil { break } - return e.complexity.TrustCenterNDARequestUpdatePayload.TrustCenterNDARequest(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestUpdatePayload.TrustCenterNDARequest(childComplexity), true case "TrustCenterNDAUpdatePayload.template": - if e.complexity.TrustCenterNDAUpdatePayload.Template == nil { + if e.ComplexityRoot.TrustCenterNDAUpdatePayload.Template == nil { break } - return e.complexity.TrustCenterNDAUpdatePayload.Template(childComplexity), true + return e.ComplexityRoot.TrustCenterNDAUpdatePayload.Template(childComplexity), true case "TrustCenterPreviewSettingCreatePayload.trustCenterSetting": - if e.complexity.TrustCenterPreviewSettingCreatePayload.TrustCenterSetting == nil { + if e.ComplexityRoot.TrustCenterPreviewSettingCreatePayload.TrustCenterSetting == nil { break } - return e.complexity.TrustCenterPreviewSettingCreatePayload.TrustCenterSetting(childComplexity), true + return e.ComplexityRoot.TrustCenterPreviewSettingCreatePayload.TrustCenterSetting(childComplexity), true case "TrustCenterSetting.accentColor": - if e.complexity.TrustCenterSetting.AccentColor == nil { + if e.ComplexityRoot.TrustCenterSetting.AccentColor == nil { break } - return e.complexity.TrustCenterSetting.AccentColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.AccentColor(childComplexity), true case "TrustCenterSetting.backgroundColor": - if e.complexity.TrustCenterSetting.BackgroundColor == nil { + if e.ComplexityRoot.TrustCenterSetting.BackgroundColor == nil { break } - return e.complexity.TrustCenterSetting.BackgroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.BackgroundColor(childComplexity), true case "TrustCenterSetting.blockedGroups": - if e.complexity.TrustCenterSetting.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterSetting.BlockedGroups == nil { break } @@ -44776,45 +44759,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterSetting.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterSetting.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterSetting.companyDescription": - if e.complexity.TrustCenterSetting.CompanyDescription == nil { + if e.ComplexityRoot.TrustCenterSetting.CompanyDescription == nil { break } - return e.complexity.TrustCenterSetting.CompanyDescription(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.CompanyDescription(childComplexity), true case "TrustCenterSetting.companyDomain": - if e.complexity.TrustCenterSetting.CompanyDomain == nil { + if e.ComplexityRoot.TrustCenterSetting.CompanyDomain == nil { break } - return e.complexity.TrustCenterSetting.CompanyDomain(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.CompanyDomain(childComplexity), true case "TrustCenterSetting.companyName": - if e.complexity.TrustCenterSetting.CompanyName == nil { + if e.ComplexityRoot.TrustCenterSetting.CompanyName == nil { break } - return e.complexity.TrustCenterSetting.CompanyName(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.CompanyName(childComplexity), true case "TrustCenterSetting.createdAt": - if e.complexity.TrustCenterSetting.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterSetting.CreatedAt == nil { break } - return e.complexity.TrustCenterSetting.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.CreatedAt(childComplexity), true case "TrustCenterSetting.createdBy": - if e.complexity.TrustCenterSetting.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterSetting.CreatedBy == nil { break } - return e.complexity.TrustCenterSetting.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.CreatedBy(childComplexity), true case "TrustCenterSetting.editors": - if e.complexity.TrustCenterSetting.Editors == nil { + if e.ComplexityRoot.TrustCenterSetting.Editors == nil { break } @@ -44823,234 +44806,234 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterSetting.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterSetting.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterSetting.environment": - if e.complexity.TrustCenterSetting.Environment == nil { + if e.ComplexityRoot.TrustCenterSetting.Environment == nil { break } - return e.complexity.TrustCenterSetting.Environment(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.Environment(childComplexity), true case "TrustCenterSetting.faviconFile": - if e.complexity.TrustCenterSetting.FaviconFile == nil { + if e.ComplexityRoot.TrustCenterSetting.FaviconFile == nil { break } - return e.complexity.TrustCenterSetting.FaviconFile(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.FaviconFile(childComplexity), true case "TrustCenterSetting.faviconLocalFileID": - if e.complexity.TrustCenterSetting.FaviconLocalFileID == nil { + if e.ComplexityRoot.TrustCenterSetting.FaviconLocalFileID == nil { break } - return e.complexity.TrustCenterSetting.FaviconLocalFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.FaviconLocalFileID(childComplexity), true case "TrustCenterSetting.faviconRemoteURL": - if e.complexity.TrustCenterSetting.FaviconRemoteURL == nil { + if e.ComplexityRoot.TrustCenterSetting.FaviconRemoteURL == nil { break } - return e.complexity.TrustCenterSetting.FaviconRemoteURL(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.FaviconRemoteURL(childComplexity), true case "TrustCenterSetting.font": - if e.complexity.TrustCenterSetting.Font == nil { + if e.ComplexityRoot.TrustCenterSetting.Font == nil { break } - return e.complexity.TrustCenterSetting.Font(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.Font(childComplexity), true case "TrustCenterSetting.foregroundColor": - if e.complexity.TrustCenterSetting.ForegroundColor == nil { + if e.ComplexityRoot.TrustCenterSetting.ForegroundColor == nil { break } - return e.complexity.TrustCenterSetting.ForegroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.ForegroundColor(childComplexity), true case "TrustCenterSetting.id": - if e.complexity.TrustCenterSetting.ID == nil { + if e.ComplexityRoot.TrustCenterSetting.ID == nil { break } - return e.complexity.TrustCenterSetting.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.ID(childComplexity), true case "TrustCenterSetting.logoFile": - if e.complexity.TrustCenterSetting.LogoFile == nil { + if e.ComplexityRoot.TrustCenterSetting.LogoFile == nil { break } - return e.complexity.TrustCenterSetting.LogoFile(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.LogoFile(childComplexity), true case "TrustCenterSetting.logoLocalFileID": - if e.complexity.TrustCenterSetting.LogoLocalFileID == nil { + if e.ComplexityRoot.TrustCenterSetting.LogoLocalFileID == nil { break } - return e.complexity.TrustCenterSetting.LogoLocalFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.LogoLocalFileID(childComplexity), true case "TrustCenterSetting.logoRemoteURL": - if e.complexity.TrustCenterSetting.LogoRemoteURL == nil { + if e.ComplexityRoot.TrustCenterSetting.LogoRemoteURL == nil { break } - return e.complexity.TrustCenterSetting.LogoRemoteURL(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.LogoRemoteURL(childComplexity), true case "TrustCenterSetting.ndaApprovalRequired": - if e.complexity.TrustCenterSetting.NdaApprovalRequired == nil { + if e.ComplexityRoot.TrustCenterSetting.NdaApprovalRequired == nil { break } - return e.complexity.TrustCenterSetting.NdaApprovalRequired(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.NdaApprovalRequired(childComplexity), true case "TrustCenterSetting.overview": - if e.complexity.TrustCenterSetting.Overview == nil { + if e.ComplexityRoot.TrustCenterSetting.Overview == nil { break } - return e.complexity.TrustCenterSetting.Overview(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.Overview(childComplexity), true case "TrustCenterSetting.primaryColor": - if e.complexity.TrustCenterSetting.PrimaryColor == nil { + if e.ComplexityRoot.TrustCenterSetting.PrimaryColor == nil { break } - return e.complexity.TrustCenterSetting.PrimaryColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.PrimaryColor(childComplexity), true case "TrustCenterSetting.removeBranding": - if e.complexity.TrustCenterSetting.RemoveBranding == nil { + if e.ComplexityRoot.TrustCenterSetting.RemoveBranding == nil { break } - return e.complexity.TrustCenterSetting.RemoveBranding(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.RemoveBranding(childComplexity), true case "TrustCenterSetting.secondaryBackgroundColor": - if e.complexity.TrustCenterSetting.SecondaryBackgroundColor == nil { + if e.ComplexityRoot.TrustCenterSetting.SecondaryBackgroundColor == nil { break } - return e.complexity.TrustCenterSetting.SecondaryBackgroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.SecondaryBackgroundColor(childComplexity), true case "TrustCenterSetting.secondaryForegroundColor": - if e.complexity.TrustCenterSetting.SecondaryForegroundColor == nil { + if e.ComplexityRoot.TrustCenterSetting.SecondaryForegroundColor == nil { break } - return e.complexity.TrustCenterSetting.SecondaryForegroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.SecondaryForegroundColor(childComplexity), true case "TrustCenterSetting.securityContact": - if e.complexity.TrustCenterSetting.SecurityContact == nil { + if e.ComplexityRoot.TrustCenterSetting.SecurityContact == nil { break } - return e.complexity.TrustCenterSetting.SecurityContact(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.SecurityContact(childComplexity), true case "TrustCenterSetting.statusPageURL": - if e.complexity.TrustCenterSetting.StatusPageURL == nil { + if e.ComplexityRoot.TrustCenterSetting.StatusPageURL == nil { break } - return e.complexity.TrustCenterSetting.StatusPageURL(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.StatusPageURL(childComplexity), true case "TrustCenterSetting.themeMode": - if e.complexity.TrustCenterSetting.ThemeMode == nil { + if e.ComplexityRoot.TrustCenterSetting.ThemeMode == nil { break } - return e.complexity.TrustCenterSetting.ThemeMode(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.ThemeMode(childComplexity), true case "TrustCenterSetting.title": - if e.complexity.TrustCenterSetting.Title == nil { + if e.ComplexityRoot.TrustCenterSetting.Title == nil { break } - return e.complexity.TrustCenterSetting.Title(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.Title(childComplexity), true case "TrustCenterSetting.trustCenterID": - if e.complexity.TrustCenterSetting.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterSetting.TrustCenterID == nil { break } - return e.complexity.TrustCenterSetting.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.TrustCenterID(childComplexity), true case "TrustCenterSetting.updatedAt": - if e.complexity.TrustCenterSetting.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterSetting.UpdatedAt == nil { break } - return e.complexity.TrustCenterSetting.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.UpdatedAt(childComplexity), true case "TrustCenterSetting.updatedBy": - if e.complexity.TrustCenterSetting.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterSetting.UpdatedBy == nil { break } - return e.complexity.TrustCenterSetting.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSetting.UpdatedBy(childComplexity), true case "TrustCenterSettingBulkCreatePayload.trustCenterSettings": - if e.complexity.TrustCenterSettingBulkCreatePayload.TrustCenterSettings == nil { + if e.ComplexityRoot.TrustCenterSettingBulkCreatePayload.TrustCenterSettings == nil { break } - return e.complexity.TrustCenterSettingBulkCreatePayload.TrustCenterSettings(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingBulkCreatePayload.TrustCenterSettings(childComplexity), true case "TrustCenterSettingConnection.edges": - if e.complexity.TrustCenterSettingConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterSettingConnection.Edges == nil { break } - return e.complexity.TrustCenterSettingConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingConnection.Edges(childComplexity), true case "TrustCenterSettingConnection.pageInfo": - if e.complexity.TrustCenterSettingConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterSettingConnection.PageInfo == nil { break } - return e.complexity.TrustCenterSettingConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingConnection.PageInfo(childComplexity), true case "TrustCenterSettingConnection.totalCount": - if e.complexity.TrustCenterSettingConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterSettingConnection.TotalCount == nil { break } - return e.complexity.TrustCenterSettingConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingConnection.TotalCount(childComplexity), true case "TrustCenterSettingCreatePayload.trustCenterSetting": - if e.complexity.TrustCenterSettingCreatePayload.TrustCenterSetting == nil { + if e.ComplexityRoot.TrustCenterSettingCreatePayload.TrustCenterSetting == nil { break } - return e.complexity.TrustCenterSettingCreatePayload.TrustCenterSetting(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingCreatePayload.TrustCenterSetting(childComplexity), true case "TrustCenterSettingDeletePayload.deletedID": - if e.complexity.TrustCenterSettingDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterSettingDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterSettingDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingDeletePayload.DeletedID(childComplexity), true case "TrustCenterSettingEdge.cursor": - if e.complexity.TrustCenterSettingEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterSettingEdge.Cursor == nil { break } - return e.complexity.TrustCenterSettingEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingEdge.Cursor(childComplexity), true case "TrustCenterSettingEdge.node": - if e.complexity.TrustCenterSettingEdge.Node == nil { + if e.ComplexityRoot.TrustCenterSettingEdge.Node == nil { break } - return e.complexity.TrustCenterSettingEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingEdge.Node(childComplexity), true case "TrustCenterSettingUpdatePayload.trustCenterSetting": - if e.complexity.TrustCenterSettingUpdatePayload.TrustCenterSetting == nil { + if e.ComplexityRoot.TrustCenterSettingUpdatePayload.TrustCenterSetting == nil { break } - return e.complexity.TrustCenterSettingUpdatePayload.TrustCenterSetting(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingUpdatePayload.TrustCenterSetting(childComplexity), true case "TrustCenterSubprocessor.blockedGroups": - if e.complexity.TrustCenterSubprocessor.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.BlockedGroups == nil { break } @@ -45059,31 +45042,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterSubprocessor.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterSubprocessor.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterSubprocessor.countries": - if e.complexity.TrustCenterSubprocessor.Countries == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.Countries == nil { break } - return e.complexity.TrustCenterSubprocessor.Countries(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.Countries(childComplexity), true case "TrustCenterSubprocessor.createdAt": - if e.complexity.TrustCenterSubprocessor.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.CreatedAt == nil { break } - return e.complexity.TrustCenterSubprocessor.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.CreatedAt(childComplexity), true case "TrustCenterSubprocessor.createdBy": - if e.complexity.TrustCenterSubprocessor.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.CreatedBy == nil { break } - return e.complexity.TrustCenterSubprocessor.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.CreatedBy(childComplexity), true case "TrustCenterSubprocessor.editors": - if e.complexity.TrustCenterSubprocessor.Editors == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.Editors == nil { break } @@ -45092,171 +45075,171 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterSubprocessor.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterSubprocessor.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterSubprocessor.id": - if e.complexity.TrustCenterSubprocessor.ID == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.ID == nil { break } - return e.complexity.TrustCenterSubprocessor.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.ID(childComplexity), true case "TrustCenterSubprocessor.subprocessor": - if e.complexity.TrustCenterSubprocessor.Subprocessor == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.Subprocessor == nil { break } - return e.complexity.TrustCenterSubprocessor.Subprocessor(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.Subprocessor(childComplexity), true case "TrustCenterSubprocessor.subprocessorID": - if e.complexity.TrustCenterSubprocessor.SubprocessorID == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.SubprocessorID == nil { break } - return e.complexity.TrustCenterSubprocessor.SubprocessorID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.SubprocessorID(childComplexity), true case "TrustCenterSubprocessor.trustCenter": - if e.complexity.TrustCenterSubprocessor.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.TrustCenter == nil { break } - return e.complexity.TrustCenterSubprocessor.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.TrustCenter(childComplexity), true case "TrustCenterSubprocessor.trustCenterID": - if e.complexity.TrustCenterSubprocessor.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterID == nil { break } - return e.complexity.TrustCenterSubprocessor.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterID(childComplexity), true case "TrustCenterSubprocessor.trustCenterSubprocessorKind": - if e.complexity.TrustCenterSubprocessor.TrustCenterSubprocessorKind == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterSubprocessorKind == nil { break } - return e.complexity.TrustCenterSubprocessor.TrustCenterSubprocessorKind(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterSubprocessorKind(childComplexity), true case "TrustCenterSubprocessor.trustCenterSubprocessorKindID": - if e.complexity.TrustCenterSubprocessor.TrustCenterSubprocessorKindID == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterSubprocessorKindID == nil { break } - return e.complexity.TrustCenterSubprocessor.TrustCenterSubprocessorKindID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterSubprocessorKindID(childComplexity), true case "TrustCenterSubprocessor.trustCenterSubprocessorKindName": - if e.complexity.TrustCenterSubprocessor.TrustCenterSubprocessorKindName == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterSubprocessorKindName == nil { break } - return e.complexity.TrustCenterSubprocessor.TrustCenterSubprocessorKindName(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.TrustCenterSubprocessorKindName(childComplexity), true case "TrustCenterSubprocessor.updatedAt": - if e.complexity.TrustCenterSubprocessor.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.UpdatedAt == nil { break } - return e.complexity.TrustCenterSubprocessor.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.UpdatedAt(childComplexity), true case "TrustCenterSubprocessor.updatedBy": - if e.complexity.TrustCenterSubprocessor.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterSubprocessor.UpdatedBy == nil { break } - return e.complexity.TrustCenterSubprocessor.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessor.UpdatedBy(childComplexity), true case "TrustCenterSubprocessorBulkCreatePayload.trustCenterSubprocessors": - if e.complexity.TrustCenterSubprocessorBulkCreatePayload.TrustCenterSubprocessors == nil { + if e.ComplexityRoot.TrustCenterSubprocessorBulkCreatePayload.TrustCenterSubprocessors == nil { break } - return e.complexity.TrustCenterSubprocessorBulkCreatePayload.TrustCenterSubprocessors(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorBulkCreatePayload.TrustCenterSubprocessors(childComplexity), true case "TrustCenterSubprocessorBulkDeletePayload.deletedIDs": - if e.complexity.TrustCenterSubprocessorBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.TrustCenterSubprocessorBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.TrustCenterSubprocessorBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorBulkDeletePayload.DeletedIDs(childComplexity), true case "TrustCenterSubprocessorBulkUpdatePayload.trustCenterSubprocessors": - if e.complexity.TrustCenterSubprocessorBulkUpdatePayload.TrustCenterSubprocessors == nil { + if e.ComplexityRoot.TrustCenterSubprocessorBulkUpdatePayload.TrustCenterSubprocessors == nil { break } - return e.complexity.TrustCenterSubprocessorBulkUpdatePayload.TrustCenterSubprocessors(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorBulkUpdatePayload.TrustCenterSubprocessors(childComplexity), true case "TrustCenterSubprocessorBulkUpdatePayload.updatedIDs": - if e.complexity.TrustCenterSubprocessorBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.TrustCenterSubprocessorBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.TrustCenterSubprocessorBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorBulkUpdatePayload.UpdatedIDs(childComplexity), true case "TrustCenterSubprocessorConnection.edges": - if e.complexity.TrustCenterSubprocessorConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterSubprocessorConnection.Edges == nil { break } - return e.complexity.TrustCenterSubprocessorConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorConnection.Edges(childComplexity), true case "TrustCenterSubprocessorConnection.pageInfo": - if e.complexity.TrustCenterSubprocessorConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterSubprocessorConnection.PageInfo == nil { break } - return e.complexity.TrustCenterSubprocessorConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorConnection.PageInfo(childComplexity), true case "TrustCenterSubprocessorConnection.totalCount": - if e.complexity.TrustCenterSubprocessorConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterSubprocessorConnection.TotalCount == nil { break } - return e.complexity.TrustCenterSubprocessorConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorConnection.TotalCount(childComplexity), true case "TrustCenterSubprocessorCreatePayload.trustCenterSubprocessor": - if e.complexity.TrustCenterSubprocessorCreatePayload.TrustCenterSubprocessor == nil { + if e.ComplexityRoot.TrustCenterSubprocessorCreatePayload.TrustCenterSubprocessor == nil { break } - return e.complexity.TrustCenterSubprocessorCreatePayload.TrustCenterSubprocessor(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorCreatePayload.TrustCenterSubprocessor(childComplexity), true case "TrustCenterSubprocessorDeletePayload.deletedID": - if e.complexity.TrustCenterSubprocessorDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterSubprocessorDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterSubprocessorDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorDeletePayload.DeletedID(childComplexity), true case "TrustCenterSubprocessorEdge.cursor": - if e.complexity.TrustCenterSubprocessorEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterSubprocessorEdge.Cursor == nil { break } - return e.complexity.TrustCenterSubprocessorEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorEdge.Cursor(childComplexity), true case "TrustCenterSubprocessorEdge.node": - if e.complexity.TrustCenterSubprocessorEdge.Node == nil { + if e.ComplexityRoot.TrustCenterSubprocessorEdge.Node == nil { break } - return e.complexity.TrustCenterSubprocessorEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorEdge.Node(childComplexity), true case "TrustCenterSubprocessorUpdatePayload.trustCenterSubprocessor": - if e.complexity.TrustCenterSubprocessorUpdatePayload.TrustCenterSubprocessor == nil { + if e.ComplexityRoot.TrustCenterSubprocessorUpdatePayload.TrustCenterSubprocessor == nil { break } - return e.complexity.TrustCenterSubprocessorUpdatePayload.TrustCenterSubprocessor(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorUpdatePayload.TrustCenterSubprocessor(childComplexity), true case "TrustCenterUpdatePayload.trustCenter": - if e.complexity.TrustCenterUpdatePayload.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterUpdatePayload.TrustCenter == nil { break } - return e.complexity.TrustCenterUpdatePayload.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterUpdatePayload.TrustCenter(childComplexity), true case "TrustCenterWatermarkConfig.blockedGroups": - if e.complexity.TrustCenterWatermarkConfig.BlockedGroups == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.BlockedGroups == nil { break } @@ -45265,31 +45248,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterWatermarkConfig.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterWatermarkConfig.color": - if e.complexity.TrustCenterWatermarkConfig.Color == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.Color == nil { break } - return e.complexity.TrustCenterWatermarkConfig.Color(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.Color(childComplexity), true case "TrustCenterWatermarkConfig.createdAt": - if e.complexity.TrustCenterWatermarkConfig.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.CreatedAt == nil { break } - return e.complexity.TrustCenterWatermarkConfig.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.CreatedAt(childComplexity), true case "TrustCenterWatermarkConfig.createdBy": - if e.complexity.TrustCenterWatermarkConfig.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.CreatedBy == nil { break } - return e.complexity.TrustCenterWatermarkConfig.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.CreatedBy(childComplexity), true case "TrustCenterWatermarkConfig.editors": - if e.complexity.TrustCenterWatermarkConfig.Editors == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.Editors == nil { break } @@ -45298,178 +45281,178 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.TrustCenterWatermarkConfig.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "TrustCenterWatermarkConfig.file": - if e.complexity.TrustCenterWatermarkConfig.File == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.File == nil { break } - return e.complexity.TrustCenterWatermarkConfig.File(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.File(childComplexity), true case "TrustCenterWatermarkConfig.font": - if e.complexity.TrustCenterWatermarkConfig.Font == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.Font == nil { break } - return e.complexity.TrustCenterWatermarkConfig.Font(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.Font(childComplexity), true case "TrustCenterWatermarkConfig.fontSize": - if e.complexity.TrustCenterWatermarkConfig.FontSize == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.FontSize == nil { break } - return e.complexity.TrustCenterWatermarkConfig.FontSize(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.FontSize(childComplexity), true case "TrustCenterWatermarkConfig.id": - if e.complexity.TrustCenterWatermarkConfig.ID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.ID == nil { break } - return e.complexity.TrustCenterWatermarkConfig.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.ID(childComplexity), true case "TrustCenterWatermarkConfig.isEnabled": - if e.complexity.TrustCenterWatermarkConfig.IsEnabled == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.IsEnabled == nil { break } - return e.complexity.TrustCenterWatermarkConfig.IsEnabled(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.IsEnabled(childComplexity), true case "TrustCenterWatermarkConfig.logoID": - if e.complexity.TrustCenterWatermarkConfig.LogoID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.LogoID == nil { break } - return e.complexity.TrustCenterWatermarkConfig.LogoID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.LogoID(childComplexity), true case "TrustCenterWatermarkConfig.opacity": - if e.complexity.TrustCenterWatermarkConfig.Opacity == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.Opacity == nil { break } - return e.complexity.TrustCenterWatermarkConfig.Opacity(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.Opacity(childComplexity), true case "TrustCenterWatermarkConfig.owner": - if e.complexity.TrustCenterWatermarkConfig.Owner == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.Owner == nil { break } - return e.complexity.TrustCenterWatermarkConfig.Owner(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.Owner(childComplexity), true case "TrustCenterWatermarkConfig.ownerID": - if e.complexity.TrustCenterWatermarkConfig.OwnerID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.OwnerID == nil { break } - return e.complexity.TrustCenterWatermarkConfig.OwnerID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.OwnerID(childComplexity), true case "TrustCenterWatermarkConfig.rotation": - if e.complexity.TrustCenterWatermarkConfig.Rotation == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.Rotation == nil { break } - return e.complexity.TrustCenterWatermarkConfig.Rotation(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.Rotation(childComplexity), true case "TrustCenterWatermarkConfig.text": - if e.complexity.TrustCenterWatermarkConfig.Text == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.Text == nil { break } - return e.complexity.TrustCenterWatermarkConfig.Text(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.Text(childComplexity), true case "TrustCenterWatermarkConfig.trustCenter": - if e.complexity.TrustCenterWatermarkConfig.TrustCenter == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.TrustCenter == nil { break } - return e.complexity.TrustCenterWatermarkConfig.TrustCenter(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.TrustCenter(childComplexity), true case "TrustCenterWatermarkConfig.trustCenterID": - if e.complexity.TrustCenterWatermarkConfig.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.TrustCenterID == nil { break } - return e.complexity.TrustCenterWatermarkConfig.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.TrustCenterID(childComplexity), true case "TrustCenterWatermarkConfig.updatedAt": - if e.complexity.TrustCenterWatermarkConfig.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.UpdatedAt == nil { break } - return e.complexity.TrustCenterWatermarkConfig.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.UpdatedAt(childComplexity), true case "TrustCenterWatermarkConfig.updatedBy": - if e.complexity.TrustCenterWatermarkConfig.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfig.UpdatedBy == nil { break } - return e.complexity.TrustCenterWatermarkConfig.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfig.UpdatedBy(childComplexity), true case "TrustCenterWatermarkConfigBulkCreatePayload.trustCenterWatermarkConfigs": - if e.complexity.TrustCenterWatermarkConfigBulkCreatePayload.TrustCenterWatermarkConfigs == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigBulkCreatePayload.TrustCenterWatermarkConfigs == nil { break } - return e.complexity.TrustCenterWatermarkConfigBulkCreatePayload.TrustCenterWatermarkConfigs(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigBulkCreatePayload.TrustCenterWatermarkConfigs(childComplexity), true case "TrustCenterWatermarkConfigConnection.edges": - if e.complexity.TrustCenterWatermarkConfigConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigConnection.Edges == nil { break } - return e.complexity.TrustCenterWatermarkConfigConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigConnection.Edges(childComplexity), true case "TrustCenterWatermarkConfigConnection.pageInfo": - if e.complexity.TrustCenterWatermarkConfigConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigConnection.PageInfo == nil { break } - return e.complexity.TrustCenterWatermarkConfigConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigConnection.PageInfo(childComplexity), true case "TrustCenterWatermarkConfigConnection.totalCount": - if e.complexity.TrustCenterWatermarkConfigConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigConnection.TotalCount == nil { break } - return e.complexity.TrustCenterWatermarkConfigConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigConnection.TotalCount(childComplexity), true case "TrustCenterWatermarkConfigCreatePayload.trustCenterWatermarkConfig": - if e.complexity.TrustCenterWatermarkConfigCreatePayload.TrustCenterWatermarkConfig == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigCreatePayload.TrustCenterWatermarkConfig == nil { break } - return e.complexity.TrustCenterWatermarkConfigCreatePayload.TrustCenterWatermarkConfig(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigCreatePayload.TrustCenterWatermarkConfig(childComplexity), true case "TrustCenterWatermarkConfigDeletePayload.deletedID": - if e.complexity.TrustCenterWatermarkConfigDeletePayload.DeletedID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigDeletePayload.DeletedID == nil { break } - return e.complexity.TrustCenterWatermarkConfigDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigDeletePayload.DeletedID(childComplexity), true case "TrustCenterWatermarkConfigEdge.cursor": - if e.complexity.TrustCenterWatermarkConfigEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigEdge.Cursor == nil { break } - return e.complexity.TrustCenterWatermarkConfigEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigEdge.Cursor(childComplexity), true case "TrustCenterWatermarkConfigEdge.node": - if e.complexity.TrustCenterWatermarkConfigEdge.Node == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigEdge.Node == nil { break } - return e.complexity.TrustCenterWatermarkConfigEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigEdge.Node(childComplexity), true case "TrustCenterWatermarkConfigUpdatePayload.trustCenterWatermarkConfig": - if e.complexity.TrustCenterWatermarkConfigUpdatePayload.TrustCenterWatermarkConfig == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigUpdatePayload.TrustCenterWatermarkConfig == nil { break } - return e.complexity.TrustCenterWatermarkConfigUpdatePayload.TrustCenterWatermarkConfig(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigUpdatePayload.TrustCenterWatermarkConfig(childComplexity), true case "User.actionPlans": - if e.complexity.User.ActionPlans == nil { + if e.ComplexityRoot.User.ActionPlans == nil { break } @@ -45478,10 +45461,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.User.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "User.assigneeTasks": - if e.complexity.User.AssigneeTasks == nil { + if e.ComplexityRoot.User.AssigneeTasks == nil { break } @@ -45490,10 +45473,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.AssigneeTasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.User.AssigneeTasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "User.assignerTasks": - if e.complexity.User.AssignerTasks == nil { + if e.ComplexityRoot.User.AssignerTasks == nil { break } @@ -45502,45 +45485,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.AssignerTasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.User.AssignerTasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "User.authProvider": - if e.complexity.User.AuthProvider == nil { + if e.ComplexityRoot.User.AuthProvider == nil { break } - return e.complexity.User.AuthProvider(childComplexity), true + return e.ComplexityRoot.User.AuthProvider(childComplexity), true case "User.avatarFile": - if e.complexity.User.AvatarFile == nil { + if e.ComplexityRoot.User.AvatarFile == nil { break } - return e.complexity.User.AvatarFile(childComplexity), true + return e.ComplexityRoot.User.AvatarFile(childComplexity), true case "User.avatarLocalFileID": - if e.complexity.User.AvatarLocalFileID == nil { + if e.ComplexityRoot.User.AvatarLocalFileID == nil { break } - return e.complexity.User.AvatarLocalFileID(childComplexity), true + return e.ComplexityRoot.User.AvatarLocalFileID(childComplexity), true case "User.avatarRemoteURL": - if e.complexity.User.AvatarRemoteURL == nil { + if e.ComplexityRoot.User.AvatarRemoteURL == nil { break } - return e.complexity.User.AvatarRemoteURL(childComplexity), true + return e.ComplexityRoot.User.AvatarRemoteURL(childComplexity), true case "User.avatarUpdatedAt": - if e.complexity.User.AvatarUpdatedAt == nil { + if e.ComplexityRoot.User.AvatarUpdatedAt == nil { break } - return e.complexity.User.AvatarUpdatedAt(childComplexity), true + return e.ComplexityRoot.User.AvatarUpdatedAt(childComplexity), true case "User.campaignTargets": - if e.complexity.User.CampaignTargets == nil { + if e.ComplexityRoot.User.CampaignTargets == nil { break } @@ -45549,10 +45532,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true + return e.ComplexityRoot.User.CampaignTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignTargetOrder), args["where"].(*generated.CampaignTargetWhereInput)), true case "User.campaigns": - if e.complexity.User.Campaigns == nil { + if e.ComplexityRoot.User.Campaigns == nil { break } @@ -45561,45 +45544,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true + return e.ComplexityRoot.User.Campaigns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.CampaignOrder), args["where"].(*generated.CampaignWhereInput)), true case "User.createdAt": - if e.complexity.User.CreatedAt == nil { + if e.ComplexityRoot.User.CreatedAt == nil { break } - return e.complexity.User.CreatedAt(childComplexity), true + return e.ComplexityRoot.User.CreatedAt(childComplexity), true case "User.createdBy": - if e.complexity.User.CreatedBy == nil { + if e.ComplexityRoot.User.CreatedBy == nil { break } - return e.complexity.User.CreatedBy(childComplexity), true + return e.ComplexityRoot.User.CreatedBy(childComplexity), true case "User.displayID": - if e.complexity.User.DisplayID == nil { + if e.ComplexityRoot.User.DisplayID == nil { break } - return e.complexity.User.DisplayID(childComplexity), true + return e.ComplexityRoot.User.DisplayID(childComplexity), true case "User.displayName": - if e.complexity.User.DisplayName == nil { + if e.ComplexityRoot.User.DisplayName == nil { break } - return e.complexity.User.DisplayName(childComplexity), true + return e.ComplexityRoot.User.DisplayName(childComplexity), true case "User.email": - if e.complexity.User.Email == nil { + if e.ComplexityRoot.User.Email == nil { break } - return e.complexity.User.Email(childComplexity), true + return e.ComplexityRoot.User.Email(childComplexity), true case "User.events": - if e.complexity.User.Events == nil { + if e.ComplexityRoot.User.Events == nil { break } @@ -45608,17 +45591,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true + return e.ComplexityRoot.User.Events(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EventOrder), args["where"].(*generated.EventWhereInput)), true case "User.firstName": - if e.complexity.User.FirstName == nil { + if e.ComplexityRoot.User.FirstName == nil { break } - return e.complexity.User.FirstName(childComplexity), true + return e.ComplexityRoot.User.FirstName(childComplexity), true case "User.groupMemberships": - if e.complexity.User.GroupMemberships == nil { + if e.ComplexityRoot.User.GroupMemberships == nil { break } @@ -45627,10 +45610,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.GroupMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true + return e.ComplexityRoot.User.GroupMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupMembershipOrder), args["where"].(*generated.GroupMembershipWhereInput)), true case "User.groups": - if e.complexity.User.Groups == nil { + if e.ComplexityRoot.User.Groups == nil { break } @@ -45639,17 +45622,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.User.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "User.id": - if e.complexity.User.ID == nil { + if e.ComplexityRoot.User.ID == nil { break } - return e.complexity.User.ID(childComplexity), true + return e.ComplexityRoot.User.ID(childComplexity), true case "User.identityHolderProfiles": - if e.complexity.User.IdentityHolderProfiles == nil { + if e.ComplexityRoot.User.IdentityHolderProfiles == nil { break } @@ -45658,31 +45641,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.IdentityHolderProfiles(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true + return e.ComplexityRoot.User.IdentityHolderProfiles(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IdentityHolderOrder), args["where"].(*generated.IdentityHolderWhereInput)), true case "User.lastLoginProvider": - if e.complexity.User.LastLoginProvider == nil { + if e.ComplexityRoot.User.LastLoginProvider == nil { break } - return e.complexity.User.LastLoginProvider(childComplexity), true + return e.ComplexityRoot.User.LastLoginProvider(childComplexity), true case "User.lastName": - if e.complexity.User.LastName == nil { + if e.ComplexityRoot.User.LastName == nil { break } - return e.complexity.User.LastName(childComplexity), true + return e.ComplexityRoot.User.LastName(childComplexity), true case "User.lastSeen": - if e.complexity.User.LastSeen == nil { + if e.ComplexityRoot.User.LastSeen == nil { break } - return e.complexity.User.LastSeen(childComplexity), true + return e.ComplexityRoot.User.LastSeen(childComplexity), true case "User.orgMemberships": - if e.complexity.User.OrgMemberships == nil { + if e.ComplexityRoot.User.OrgMemberships == nil { break } @@ -45691,10 +45674,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.OrgMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true + return e.ComplexityRoot.User.OrgMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrgMembershipOrder), args["where"].(*generated.OrgMembershipWhereInput)), true case "User.organizations": - if e.complexity.User.Organizations == nil { + if e.ComplexityRoot.User.Organizations == nil { break } @@ -45703,10 +45686,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true + return e.ComplexityRoot.User.Organizations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.OrganizationOrder), args["where"].(*generated.OrganizationWhereInput)), true case "User.personalAccessTokens": - if e.complexity.User.PersonalAccessTokens == nil { + if e.ComplexityRoot.User.PersonalAccessTokens == nil { break } @@ -45715,10 +45698,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true + return e.ComplexityRoot.User.PersonalAccessTokens(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PersonalAccessTokenOrder), args["where"].(*generated.PersonalAccessTokenWhereInput)), true case "User.platformsOwned": - if e.complexity.User.PlatformsOwned == nil { + if e.ComplexityRoot.User.PlatformsOwned == nil { break } @@ -45727,10 +45710,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.PlatformsOwned(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true + return e.ComplexityRoot.User.PlatformsOwned(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.PlatformOrder), args["where"].(*generated.PlatformWhereInput)), true case "User.programMemberships": - if e.complexity.User.ProgramMemberships == nil { + if e.ComplexityRoot.User.ProgramMemberships == nil { break } @@ -45739,10 +45722,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.ProgramMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramMembershipOrder), args["where"].(*generated.ProgramMembershipWhereInput)), true + return e.ComplexityRoot.User.ProgramMemberships(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramMembershipOrder), args["where"].(*generated.ProgramMembershipWhereInput)), true case "User.programs": - if e.complexity.User.Programs == nil { + if e.ComplexityRoot.User.Programs == nil { break } @@ -45751,10 +45734,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.User.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "User.programsOwned": - if e.complexity.User.ProgramsOwned == nil { + if e.ComplexityRoot.User.ProgramsOwned == nil { break } @@ -45763,66 +45746,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.ProgramsOwned(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.User.ProgramsOwned(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "User.role": - if e.complexity.User.Role == nil { + if e.ComplexityRoot.User.Role == nil { break } - return e.complexity.User.Role(childComplexity), true + return e.ComplexityRoot.User.Role(childComplexity), true case "User.scimActive": - if e.complexity.User.ScimActive == nil { + if e.ComplexityRoot.User.ScimActive == nil { break } - return e.complexity.User.ScimActive(childComplexity), true + return e.ComplexityRoot.User.ScimActive(childComplexity), true case "User.scimExternalID": - if e.complexity.User.ScimExternalID == nil { + if e.ComplexityRoot.User.ScimExternalID == nil { break } - return e.complexity.User.ScimExternalID(childComplexity), true + return e.ComplexityRoot.User.ScimExternalID(childComplexity), true case "User.scimLocale": - if e.complexity.User.ScimLocale == nil { + if e.ComplexityRoot.User.ScimLocale == nil { break } - return e.complexity.User.ScimLocale(childComplexity), true + return e.ComplexityRoot.User.ScimLocale(childComplexity), true case "User.scimPreferredLanguage": - if e.complexity.User.ScimPreferredLanguage == nil { + if e.ComplexityRoot.User.ScimPreferredLanguage == nil { break } - return e.complexity.User.ScimPreferredLanguage(childComplexity), true + return e.ComplexityRoot.User.ScimPreferredLanguage(childComplexity), true case "User.scimUsername": - if e.complexity.User.ScimUsername == nil { + if e.ComplexityRoot.User.ScimUsername == nil { break } - return e.complexity.User.ScimUsername(childComplexity), true + return e.ComplexityRoot.User.ScimUsername(childComplexity), true case "User.setting": - if e.complexity.User.Setting == nil { + if e.ComplexityRoot.User.Setting == nil { break } - return e.complexity.User.Setting(childComplexity), true + return e.ComplexityRoot.User.Setting(childComplexity), true case "User.sub": - if e.complexity.User.Sub == nil { + if e.ComplexityRoot.User.Sub == nil { break } - return e.complexity.User.Sub(childComplexity), true + return e.ComplexityRoot.User.Sub(childComplexity), true case "User.subcontrols": - if e.complexity.User.Subcontrols == nil { + if e.ComplexityRoot.User.Subcontrols == nil { break } @@ -45831,17 +45814,17 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.User.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "User.tags": - if e.complexity.User.Tags == nil { + if e.ComplexityRoot.User.Tags == nil { break } - return e.complexity.User.Tags(childComplexity), true + return e.ComplexityRoot.User.Tags(childComplexity), true case "User.tfaSettings": - if e.complexity.User.TfaSettings == nil { + if e.ComplexityRoot.User.TfaSettings == nil { break } @@ -45850,24 +45833,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.TfaSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TFASettingOrder), args["where"].(*generated.TFASettingWhereInput)), true + return e.ComplexityRoot.User.TfaSettings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TFASettingOrder), args["where"].(*generated.TFASettingWhereInput)), true case "User.updatedAt": - if e.complexity.User.UpdatedAt == nil { + if e.ComplexityRoot.User.UpdatedAt == nil { break } - return e.complexity.User.UpdatedAt(childComplexity), true + return e.ComplexityRoot.User.UpdatedAt(childComplexity), true case "User.updatedBy": - if e.complexity.User.UpdatedBy == nil { + if e.ComplexityRoot.User.UpdatedBy == nil { break } - return e.complexity.User.UpdatedBy(childComplexity), true + return e.ComplexityRoot.User.UpdatedBy(childComplexity), true case "User.webauthns": - if e.complexity.User.Webauthns == nil { + if e.ComplexityRoot.User.Webauthns == nil { break } @@ -45876,283 +45859,283 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.User.Webauthns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.WebauthnOrder), args["where"].(*generated.WebauthnWhereInput)), true + return e.ComplexityRoot.User.Webauthns(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*generated.WebauthnOrder), args["where"].(*generated.WebauthnWhereInput)), true case "UserBulkCreatePayload.users": - if e.complexity.UserBulkCreatePayload.Users == nil { + if e.ComplexityRoot.UserBulkCreatePayload.Users == nil { break } - return e.complexity.UserBulkCreatePayload.Users(childComplexity), true + return e.ComplexityRoot.UserBulkCreatePayload.Users(childComplexity), true case "UserConnection.edges": - if e.complexity.UserConnection.Edges == nil { + if e.ComplexityRoot.UserConnection.Edges == nil { break } - return e.complexity.UserConnection.Edges(childComplexity), true + return e.ComplexityRoot.UserConnection.Edges(childComplexity), true case "UserConnection.pageInfo": - if e.complexity.UserConnection.PageInfo == nil { + if e.ComplexityRoot.UserConnection.PageInfo == nil { break } - return e.complexity.UserConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.UserConnection.PageInfo(childComplexity), true case "UserConnection.totalCount": - if e.complexity.UserConnection.TotalCount == nil { + if e.ComplexityRoot.UserConnection.TotalCount == nil { break } - return e.complexity.UserConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.UserConnection.TotalCount(childComplexity), true case "UserCreatePayload.user": - if e.complexity.UserCreatePayload.User == nil { + if e.ComplexityRoot.UserCreatePayload.User == nil { break } - return e.complexity.UserCreatePayload.User(childComplexity), true + return e.ComplexityRoot.UserCreatePayload.User(childComplexity), true case "UserDeletePayload.deletedID": - if e.complexity.UserDeletePayload.DeletedID == nil { + if e.ComplexityRoot.UserDeletePayload.DeletedID == nil { break } - return e.complexity.UserDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.UserDeletePayload.DeletedID(childComplexity), true case "UserEdge.cursor": - if e.complexity.UserEdge.Cursor == nil { + if e.ComplexityRoot.UserEdge.Cursor == nil { break } - return e.complexity.UserEdge.Cursor(childComplexity), true + return e.ComplexityRoot.UserEdge.Cursor(childComplexity), true case "UserEdge.node": - if e.complexity.UserEdge.Node == nil { + if e.ComplexityRoot.UserEdge.Node == nil { break } - return e.complexity.UserEdge.Node(childComplexity), true + return e.ComplexityRoot.UserEdge.Node(childComplexity), true case "UserSetting.createdAt": - if e.complexity.UserSetting.CreatedAt == nil { + if e.ComplexityRoot.UserSetting.CreatedAt == nil { break } - return e.complexity.UserSetting.CreatedAt(childComplexity), true + return e.ComplexityRoot.UserSetting.CreatedAt(childComplexity), true case "UserSetting.createdBy": - if e.complexity.UserSetting.CreatedBy == nil { + if e.ComplexityRoot.UserSetting.CreatedBy == nil { break } - return e.complexity.UserSetting.CreatedBy(childComplexity), true + return e.ComplexityRoot.UserSetting.CreatedBy(childComplexity), true case "UserSetting.defaultOrg": - if e.complexity.UserSetting.DefaultOrg == nil { + if e.ComplexityRoot.UserSetting.DefaultOrg == nil { break } - return e.complexity.UserSetting.DefaultOrg(childComplexity), true + return e.ComplexityRoot.UserSetting.DefaultOrg(childComplexity), true case "UserSetting.delegateEndAt": - if e.complexity.UserSetting.DelegateEndAt == nil { + if e.ComplexityRoot.UserSetting.DelegateEndAt == nil { break } - return e.complexity.UserSetting.DelegateEndAt(childComplexity), true + return e.ComplexityRoot.UserSetting.DelegateEndAt(childComplexity), true case "UserSetting.delegateStartAt": - if e.complexity.UserSetting.DelegateStartAt == nil { + if e.ComplexityRoot.UserSetting.DelegateStartAt == nil { break } - return e.complexity.UserSetting.DelegateStartAt(childComplexity), true + return e.ComplexityRoot.UserSetting.DelegateStartAt(childComplexity), true case "UserSetting.delegateUserID": - if e.complexity.UserSetting.DelegateUserID == nil { + if e.ComplexityRoot.UserSetting.DelegateUserID == nil { break } - return e.complexity.UserSetting.DelegateUserID(childComplexity), true + return e.ComplexityRoot.UserSetting.DelegateUserID(childComplexity), true case "UserSetting.emailConfirmed": - if e.complexity.UserSetting.EmailConfirmed == nil { + if e.ComplexityRoot.UserSetting.EmailConfirmed == nil { break } - return e.complexity.UserSetting.EmailConfirmed(childComplexity), true + return e.ComplexityRoot.UserSetting.EmailConfirmed(childComplexity), true case "UserSetting.id": - if e.complexity.UserSetting.ID == nil { + if e.ComplexityRoot.UserSetting.ID == nil { break } - return e.complexity.UserSetting.ID(childComplexity), true + return e.ComplexityRoot.UserSetting.ID(childComplexity), true case "UserSetting.isTfaEnabled": - if e.complexity.UserSetting.IsTfaEnabled == nil { + if e.ComplexityRoot.UserSetting.IsTfaEnabled == nil { break } - return e.complexity.UserSetting.IsTfaEnabled(childComplexity), true + return e.ComplexityRoot.UserSetting.IsTfaEnabled(childComplexity), true case "UserSetting.isWebauthnAllowed": - if e.complexity.UserSetting.IsWebauthnAllowed == nil { + if e.ComplexityRoot.UserSetting.IsWebauthnAllowed == nil { break } - return e.complexity.UserSetting.IsWebauthnAllowed(childComplexity), true + return e.ComplexityRoot.UserSetting.IsWebauthnAllowed(childComplexity), true case "UserSetting.locked": - if e.complexity.UserSetting.Locked == nil { + if e.ComplexityRoot.UserSetting.Locked == nil { break } - return e.complexity.UserSetting.Locked(childComplexity), true + return e.ComplexityRoot.UserSetting.Locked(childComplexity), true case "UserSetting.silencedAt": - if e.complexity.UserSetting.SilencedAt == nil { + if e.ComplexityRoot.UserSetting.SilencedAt == nil { break } - return e.complexity.UserSetting.SilencedAt(childComplexity), true + return e.ComplexityRoot.UserSetting.SilencedAt(childComplexity), true case "UserSetting.status": - if e.complexity.UserSetting.Status == nil { + if e.ComplexityRoot.UserSetting.Status == nil { break } - return e.complexity.UserSetting.Status(childComplexity), true + return e.ComplexityRoot.UserSetting.Status(childComplexity), true case "UserSetting.suspendedAt": - if e.complexity.UserSetting.SuspendedAt == nil { + if e.ComplexityRoot.UserSetting.SuspendedAt == nil { break } - return e.complexity.UserSetting.SuspendedAt(childComplexity), true + return e.ComplexityRoot.UserSetting.SuspendedAt(childComplexity), true case "UserSetting.tags": - if e.complexity.UserSetting.Tags == nil { + if e.ComplexityRoot.UserSetting.Tags == nil { break } - return e.complexity.UserSetting.Tags(childComplexity), true + return e.ComplexityRoot.UserSetting.Tags(childComplexity), true case "UserSetting.updatedAt": - if e.complexity.UserSetting.UpdatedAt == nil { + if e.ComplexityRoot.UserSetting.UpdatedAt == nil { break } - return e.complexity.UserSetting.UpdatedAt(childComplexity), true + return e.ComplexityRoot.UserSetting.UpdatedAt(childComplexity), true case "UserSetting.updatedBy": - if e.complexity.UserSetting.UpdatedBy == nil { + if e.ComplexityRoot.UserSetting.UpdatedBy == nil { break } - return e.complexity.UserSetting.UpdatedBy(childComplexity), true + return e.ComplexityRoot.UserSetting.UpdatedBy(childComplexity), true case "UserSetting.user": - if e.complexity.UserSetting.User == nil { + if e.ComplexityRoot.UserSetting.User == nil { break } - return e.complexity.UserSetting.User(childComplexity), true + return e.ComplexityRoot.UserSetting.User(childComplexity), true case "UserSetting.userID": - if e.complexity.UserSetting.UserID == nil { + if e.ComplexityRoot.UserSetting.UserID == nil { break } - return e.complexity.UserSetting.UserID(childComplexity), true + return e.ComplexityRoot.UserSetting.UserID(childComplexity), true case "UserSettingBulkCreatePayload.userSettings": - if e.complexity.UserSettingBulkCreatePayload.UserSettings == nil { + if e.ComplexityRoot.UserSettingBulkCreatePayload.UserSettings == nil { break } - return e.complexity.UserSettingBulkCreatePayload.UserSettings(childComplexity), true + return e.ComplexityRoot.UserSettingBulkCreatePayload.UserSettings(childComplexity), true case "UserSettingBulkDeletePayload.deletedIDs": - if e.complexity.UserSettingBulkDeletePayload.DeletedIDs == nil { + if e.ComplexityRoot.UserSettingBulkDeletePayload.DeletedIDs == nil { break } - return e.complexity.UserSettingBulkDeletePayload.DeletedIDs(childComplexity), true + return e.ComplexityRoot.UserSettingBulkDeletePayload.DeletedIDs(childComplexity), true case "UserSettingBulkUpdatePayload.updatedIDs": - if e.complexity.UserSettingBulkUpdatePayload.UpdatedIDs == nil { + if e.ComplexityRoot.UserSettingBulkUpdatePayload.UpdatedIDs == nil { break } - return e.complexity.UserSettingBulkUpdatePayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.UserSettingBulkUpdatePayload.UpdatedIDs(childComplexity), true case "UserSettingBulkUpdatePayload.userSettings": - if e.complexity.UserSettingBulkUpdatePayload.UserSettings == nil { + if e.ComplexityRoot.UserSettingBulkUpdatePayload.UserSettings == nil { break } - return e.complexity.UserSettingBulkUpdatePayload.UserSettings(childComplexity), true + return e.ComplexityRoot.UserSettingBulkUpdatePayload.UserSettings(childComplexity), true case "UserSettingConnection.edges": - if e.complexity.UserSettingConnection.Edges == nil { + if e.ComplexityRoot.UserSettingConnection.Edges == nil { break } - return e.complexity.UserSettingConnection.Edges(childComplexity), true + return e.ComplexityRoot.UserSettingConnection.Edges(childComplexity), true case "UserSettingConnection.pageInfo": - if e.complexity.UserSettingConnection.PageInfo == nil { + if e.ComplexityRoot.UserSettingConnection.PageInfo == nil { break } - return e.complexity.UserSettingConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.UserSettingConnection.PageInfo(childComplexity), true case "UserSettingConnection.totalCount": - if e.complexity.UserSettingConnection.TotalCount == nil { + if e.ComplexityRoot.UserSettingConnection.TotalCount == nil { break } - return e.complexity.UserSettingConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.UserSettingConnection.TotalCount(childComplexity), true case "UserSettingCreatePayload.userSetting": - if e.complexity.UserSettingCreatePayload.UserSetting == nil { + if e.ComplexityRoot.UserSettingCreatePayload.UserSetting == nil { break } - return e.complexity.UserSettingCreatePayload.UserSetting(childComplexity), true + return e.ComplexityRoot.UserSettingCreatePayload.UserSetting(childComplexity), true case "UserSettingEdge.cursor": - if e.complexity.UserSettingEdge.Cursor == nil { + if e.ComplexityRoot.UserSettingEdge.Cursor == nil { break } - return e.complexity.UserSettingEdge.Cursor(childComplexity), true + return e.ComplexityRoot.UserSettingEdge.Cursor(childComplexity), true case "UserSettingEdge.node": - if e.complexity.UserSettingEdge.Node == nil { + if e.ComplexityRoot.UserSettingEdge.Node == nil { break } - return e.complexity.UserSettingEdge.Node(childComplexity), true + return e.ComplexityRoot.UserSettingEdge.Node(childComplexity), true case "UserSettingUpdatePayload.userSetting": - if e.complexity.UserSettingUpdatePayload.UserSetting == nil { + if e.ComplexityRoot.UserSettingUpdatePayload.UserSetting == nil { break } - return e.complexity.UserSettingUpdatePayload.UserSetting(childComplexity), true + return e.ComplexityRoot.UserSettingUpdatePayload.UserSetting(childComplexity), true case "UserUpdatePayload.user": - if e.complexity.UserUpdatePayload.User == nil { + if e.ComplexityRoot.UserUpdatePayload.User == nil { break } - return e.complexity.UserUpdatePayload.User(childComplexity), true + return e.ComplexityRoot.UserUpdatePayload.User(childComplexity), true case "Vulnerability.actionPlans": - if e.complexity.Vulnerability.ActionPlans == nil { + if e.ComplexityRoot.Vulnerability.ActionPlans == nil { break } @@ -46161,10 +46144,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true + return e.ComplexityRoot.Vulnerability.ActionPlans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ActionPlanOrder), args["where"].(*generated.ActionPlanWhereInput)), true case "Vulnerability.assets": - if e.complexity.Vulnerability.Assets == nil { + if e.ComplexityRoot.Vulnerability.Assets == nil { break } @@ -46173,10 +46156,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true + return e.ComplexityRoot.Vulnerability.Assets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.AssetOrder), args["where"].(*generated.AssetWhereInput)), true case "Vulnerability.blockedGroups": - if e.complexity.Vulnerability.BlockedGroups == nil { + if e.ComplexityRoot.Vulnerability.BlockedGroups == nil { break } @@ -46185,24 +46168,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Vulnerability.BlockedGroups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Vulnerability.blocking": - if e.complexity.Vulnerability.Blocking == nil { + if e.ComplexityRoot.Vulnerability.Blocking == nil { break } - return e.complexity.Vulnerability.Blocking(childComplexity), true + return e.ComplexityRoot.Vulnerability.Blocking(childComplexity), true case "Vulnerability.category": - if e.complexity.Vulnerability.Category == nil { + if e.ComplexityRoot.Vulnerability.Category == nil { break } - return e.complexity.Vulnerability.Category(childComplexity), true + return e.ComplexityRoot.Vulnerability.Category(childComplexity), true case "Vulnerability.comments": - if e.complexity.Vulnerability.Comments == nil { + if e.ComplexityRoot.Vulnerability.Comments == nil { break } @@ -46211,10 +46194,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true + return e.ComplexityRoot.Vulnerability.Comments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NoteOrder), args["where"].(*generated.NoteWhereInput)), true case "Vulnerability.controls": - if e.complexity.Vulnerability.Controls == nil { + if e.ComplexityRoot.Vulnerability.Controls == nil { break } @@ -46223,59 +46206,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true + return e.ComplexityRoot.Vulnerability.Controls(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ControlOrder), args["where"].(*generated.ControlWhereInput)), true case "Vulnerability.createdAt": - if e.complexity.Vulnerability.CreatedAt == nil { + if e.ComplexityRoot.Vulnerability.CreatedAt == nil { break } - return e.complexity.Vulnerability.CreatedAt(childComplexity), true + return e.ComplexityRoot.Vulnerability.CreatedAt(childComplexity), true case "Vulnerability.createdBy": - if e.complexity.Vulnerability.CreatedBy == nil { + if e.ComplexityRoot.Vulnerability.CreatedBy == nil { break } - return e.complexity.Vulnerability.CreatedBy(childComplexity), true + return e.ComplexityRoot.Vulnerability.CreatedBy(childComplexity), true case "Vulnerability.cveID": - if e.complexity.Vulnerability.CveID == nil { + if e.ComplexityRoot.Vulnerability.CveID == nil { break } - return e.complexity.Vulnerability.CveID(childComplexity), true + return e.ComplexityRoot.Vulnerability.CveID(childComplexity), true case "Vulnerability.description": - if e.complexity.Vulnerability.Description == nil { + if e.ComplexityRoot.Vulnerability.Description == nil { break } - return e.complexity.Vulnerability.Description(childComplexity), true + return e.ComplexityRoot.Vulnerability.Description(childComplexity), true case "Vulnerability.discoveredAt": - if e.complexity.Vulnerability.DiscoveredAt == nil { + if e.ComplexityRoot.Vulnerability.DiscoveredAt == nil { break } - return e.complexity.Vulnerability.DiscoveredAt(childComplexity), true + return e.ComplexityRoot.Vulnerability.DiscoveredAt(childComplexity), true case "Vulnerability.displayID": - if e.complexity.Vulnerability.DisplayID == nil { + if e.ComplexityRoot.Vulnerability.DisplayID == nil { break } - return e.complexity.Vulnerability.DisplayID(childComplexity), true + return e.ComplexityRoot.Vulnerability.DisplayID(childComplexity), true case "Vulnerability.displayName": - if e.complexity.Vulnerability.DisplayName == nil { + if e.ComplexityRoot.Vulnerability.DisplayName == nil { break } - return e.complexity.Vulnerability.DisplayName(childComplexity), true + return e.ComplexityRoot.Vulnerability.DisplayName(childComplexity), true case "Vulnerability.editors": - if e.complexity.Vulnerability.Editors == nil { + if e.ComplexityRoot.Vulnerability.Editors == nil { break } @@ -46284,10 +46267,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Vulnerability.Editors(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "Vulnerability.entities": - if e.complexity.Vulnerability.Entities == nil { + if e.ComplexityRoot.Vulnerability.Entities == nil { break } @@ -46296,59 +46279,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true + return e.ComplexityRoot.Vulnerability.Entities(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EntityOrder), args["where"].(*generated.EntityWhereInput)), true case "Vulnerability.environment": - if e.complexity.Vulnerability.Environment == nil { + if e.ComplexityRoot.Vulnerability.Environment == nil { break } - return e.complexity.Vulnerability.Environment(childComplexity), true + return e.ComplexityRoot.Vulnerability.Environment(childComplexity), true case "Vulnerability.environmentID": - if e.complexity.Vulnerability.EnvironmentID == nil { + if e.ComplexityRoot.Vulnerability.EnvironmentID == nil { break } - return e.complexity.Vulnerability.EnvironmentID(childComplexity), true + return e.ComplexityRoot.Vulnerability.EnvironmentID(childComplexity), true case "Vulnerability.environmentName": - if e.complexity.Vulnerability.EnvironmentName == nil { + if e.ComplexityRoot.Vulnerability.EnvironmentName == nil { break } - return e.complexity.Vulnerability.EnvironmentName(childComplexity), true + return e.ComplexityRoot.Vulnerability.EnvironmentName(childComplexity), true case "Vulnerability.exploitability": - if e.complexity.Vulnerability.Exploitability == nil { + if e.ComplexityRoot.Vulnerability.Exploitability == nil { break } - return e.complexity.Vulnerability.Exploitability(childComplexity), true + return e.ComplexityRoot.Vulnerability.Exploitability(childComplexity), true case "Vulnerability.externalID": - if e.complexity.Vulnerability.ExternalID == nil { + if e.ComplexityRoot.Vulnerability.ExternalID == nil { break } - return e.complexity.Vulnerability.ExternalID(childComplexity), true + return e.ComplexityRoot.Vulnerability.ExternalID(childComplexity), true case "Vulnerability.externalOwnerID": - if e.complexity.Vulnerability.ExternalOwnerID == nil { + if e.ComplexityRoot.Vulnerability.ExternalOwnerID == nil { break } - return e.complexity.Vulnerability.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.Vulnerability.ExternalOwnerID(childComplexity), true case "Vulnerability.externalURI": - if e.complexity.Vulnerability.ExternalURI == nil { + if e.ComplexityRoot.Vulnerability.ExternalURI == nil { break } - return e.complexity.Vulnerability.ExternalURI(childComplexity), true + return e.ComplexityRoot.Vulnerability.ExternalURI(childComplexity), true case "Vulnerability.files": - if e.complexity.Vulnerability.Files == nil { + if e.ComplexityRoot.Vulnerability.Files == nil { break } @@ -46357,10 +46340,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true + return e.ComplexityRoot.Vulnerability.Files(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FileOrder), args["where"].(*generated.FileWhereInput)), true case "Vulnerability.findings": - if e.complexity.Vulnerability.Findings == nil { + if e.ComplexityRoot.Vulnerability.Findings == nil { break } @@ -46369,31 +46352,31 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true + return e.ComplexityRoot.Vulnerability.Findings(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.FindingOrder), args["where"].(*generated.FindingWhereInput)), true case "Vulnerability.id": - if e.complexity.Vulnerability.ID == nil { + if e.ComplexityRoot.Vulnerability.ID == nil { break } - return e.complexity.Vulnerability.ID(childComplexity), true + return e.ComplexityRoot.Vulnerability.ID(childComplexity), true case "Vulnerability.impact": - if e.complexity.Vulnerability.Impact == nil { + if e.ComplexityRoot.Vulnerability.Impact == nil { break } - return e.complexity.Vulnerability.Impact(childComplexity), true + return e.ComplexityRoot.Vulnerability.Impact(childComplexity), true case "Vulnerability.impacts": - if e.complexity.Vulnerability.Impacts == nil { + if e.ComplexityRoot.Vulnerability.Impacts == nil { break } - return e.complexity.Vulnerability.Impacts(childComplexity), true + return e.ComplexityRoot.Vulnerability.Impacts(childComplexity), true case "Vulnerability.integrations": - if e.complexity.Vulnerability.Integrations == nil { + if e.ComplexityRoot.Vulnerability.Integrations == nil { break } @@ -46402,59 +46385,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true + return e.ComplexityRoot.Vulnerability.Integrations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.IntegrationOrder), args["where"].(*generated.IntegrationWhereInput)), true case "Vulnerability.internalNotes": - if e.complexity.Vulnerability.InternalNotes == nil { + if e.ComplexityRoot.Vulnerability.InternalNotes == nil { break } - return e.complexity.Vulnerability.InternalNotes(childComplexity), true + return e.ComplexityRoot.Vulnerability.InternalNotes(childComplexity), true case "Vulnerability.metadata": - if e.complexity.Vulnerability.Metadata == nil { + if e.ComplexityRoot.Vulnerability.Metadata == nil { break } - return e.complexity.Vulnerability.Metadata(childComplexity), true + return e.ComplexityRoot.Vulnerability.Metadata(childComplexity), true case "Vulnerability.open": - if e.complexity.Vulnerability.Open == nil { + if e.ComplexityRoot.Vulnerability.Open == nil { break } - return e.complexity.Vulnerability.Open(childComplexity), true + return e.ComplexityRoot.Vulnerability.Open(childComplexity), true case "Vulnerability.owner": - if e.complexity.Vulnerability.Owner == nil { + if e.ComplexityRoot.Vulnerability.Owner == nil { break } - return e.complexity.Vulnerability.Owner(childComplexity), true + return e.ComplexityRoot.Vulnerability.Owner(childComplexity), true case "Vulnerability.ownerID": - if e.complexity.Vulnerability.OwnerID == nil { + if e.ComplexityRoot.Vulnerability.OwnerID == nil { break } - return e.complexity.Vulnerability.OwnerID(childComplexity), true + return e.ComplexityRoot.Vulnerability.OwnerID(childComplexity), true case "Vulnerability.priority": - if e.complexity.Vulnerability.Priority == nil { + if e.ComplexityRoot.Vulnerability.Priority == nil { break } - return e.complexity.Vulnerability.Priority(childComplexity), true + return e.ComplexityRoot.Vulnerability.Priority(childComplexity), true case "Vulnerability.production": - if e.complexity.Vulnerability.Production == nil { + if e.ComplexityRoot.Vulnerability.Production == nil { break } - return e.complexity.Vulnerability.Production(childComplexity), true + return e.ComplexityRoot.Vulnerability.Production(childComplexity), true case "Vulnerability.programs": - if e.complexity.Vulnerability.Programs == nil { + if e.ComplexityRoot.Vulnerability.Programs == nil { break } @@ -46463,45 +46446,45 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true + return e.ComplexityRoot.Vulnerability.Programs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ProgramOrder), args["where"].(*generated.ProgramWhereInput)), true case "Vulnerability.public": - if e.complexity.Vulnerability.Public == nil { + if e.ComplexityRoot.Vulnerability.Public == nil { break } - return e.complexity.Vulnerability.Public(childComplexity), true + return e.ComplexityRoot.Vulnerability.Public(childComplexity), true case "Vulnerability.publishedAt": - if e.complexity.Vulnerability.PublishedAt == nil { + if e.ComplexityRoot.Vulnerability.PublishedAt == nil { break } - return e.complexity.Vulnerability.PublishedAt(childComplexity), true + return e.ComplexityRoot.Vulnerability.PublishedAt(childComplexity), true case "Vulnerability.rawPayload": - if e.complexity.Vulnerability.RawPayload == nil { + if e.ComplexityRoot.Vulnerability.RawPayload == nil { break } - return e.complexity.Vulnerability.RawPayload(childComplexity), true + return e.ComplexityRoot.Vulnerability.RawPayload(childComplexity), true case "Vulnerability.references": - if e.complexity.Vulnerability.References == nil { + if e.ComplexityRoot.Vulnerability.References == nil { break } - return e.complexity.Vulnerability.References(childComplexity), true + return e.ComplexityRoot.Vulnerability.References(childComplexity), true case "Vulnerability.remediationSLA": - if e.complexity.Vulnerability.RemediationSLA == nil { + if e.ComplexityRoot.Vulnerability.RemediationSLA == nil { break } - return e.complexity.Vulnerability.RemediationSLA(childComplexity), true + return e.ComplexityRoot.Vulnerability.RemediationSLA(childComplexity), true case "Vulnerability.remediations": - if e.complexity.Vulnerability.Remediations == nil { + if e.ComplexityRoot.Vulnerability.Remediations == nil { break } @@ -46510,10 +46493,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true + return e.ComplexityRoot.Vulnerability.Remediations(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RemediationOrder), args["where"].(*generated.RemediationWhereInput)), true case "Vulnerability.reviews": - if e.complexity.Vulnerability.Reviews == nil { + if e.ComplexityRoot.Vulnerability.Reviews == nil { break } @@ -46522,10 +46505,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true + return e.ComplexityRoot.Vulnerability.Reviews(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ReviewOrder), args["where"].(*generated.ReviewWhereInput)), true case "Vulnerability.risks": - if e.complexity.Vulnerability.Risks == nil { + if e.ComplexityRoot.Vulnerability.Risks == nil { break } @@ -46534,10 +46517,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true + return e.ComplexityRoot.Vulnerability.Risks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.RiskOrder), args["where"].(*generated.RiskWhereInput)), true case "Vulnerability.scans": - if e.complexity.Vulnerability.Scans == nil { + if e.ComplexityRoot.Vulnerability.Scans == nil { break } @@ -46546,66 +46529,66 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true + return e.ComplexityRoot.Vulnerability.Scans(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.ScanOrder), args["where"].(*generated.ScanWhereInput)), true case "Vulnerability.scope": - if e.complexity.Vulnerability.Scope == nil { + if e.ComplexityRoot.Vulnerability.Scope == nil { break } - return e.complexity.Vulnerability.Scope(childComplexity), true + return e.ComplexityRoot.Vulnerability.Scope(childComplexity), true case "Vulnerability.scopeID": - if e.complexity.Vulnerability.ScopeID == nil { + if e.ComplexityRoot.Vulnerability.ScopeID == nil { break } - return e.complexity.Vulnerability.ScopeID(childComplexity), true + return e.ComplexityRoot.Vulnerability.ScopeID(childComplexity), true case "Vulnerability.scopeName": - if e.complexity.Vulnerability.ScopeName == nil { + if e.ComplexityRoot.Vulnerability.ScopeName == nil { break } - return e.complexity.Vulnerability.ScopeName(childComplexity), true + return e.ComplexityRoot.Vulnerability.ScopeName(childComplexity), true case "Vulnerability.score": - if e.complexity.Vulnerability.Score == nil { + if e.ComplexityRoot.Vulnerability.Score == nil { break } - return e.complexity.Vulnerability.Score(childComplexity), true + return e.ComplexityRoot.Vulnerability.Score(childComplexity), true case "Vulnerability.severity": - if e.complexity.Vulnerability.Severity == nil { + if e.ComplexityRoot.Vulnerability.Severity == nil { break } - return e.complexity.Vulnerability.Severity(childComplexity), true + return e.ComplexityRoot.Vulnerability.Severity(childComplexity), true case "Vulnerability.source": - if e.complexity.Vulnerability.Source == nil { + if e.ComplexityRoot.Vulnerability.Source == nil { break } - return e.complexity.Vulnerability.Source(childComplexity), true + return e.ComplexityRoot.Vulnerability.Source(childComplexity), true case "Vulnerability.sourceUpdatedAt": - if e.complexity.Vulnerability.SourceUpdatedAt == nil { + if e.ComplexityRoot.Vulnerability.SourceUpdatedAt == nil { break } - return e.complexity.Vulnerability.SourceUpdatedAt(childComplexity), true + return e.ComplexityRoot.Vulnerability.SourceUpdatedAt(childComplexity), true case "Vulnerability.status": - if e.complexity.Vulnerability.Status == nil { + if e.ComplexityRoot.Vulnerability.Status == nil { break } - return e.complexity.Vulnerability.Status(childComplexity), true + return e.ComplexityRoot.Vulnerability.Status(childComplexity), true case "Vulnerability.subcontrols": - if e.complexity.Vulnerability.Subcontrols == nil { + if e.ComplexityRoot.Vulnerability.Subcontrols == nil { break } @@ -46614,38 +46597,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true + return e.ComplexityRoot.Vulnerability.Subcontrols(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.SubcontrolOrder), args["where"].(*generated.SubcontrolWhereInput)), true case "Vulnerability.summary": - if e.complexity.Vulnerability.Summary == nil { + if e.ComplexityRoot.Vulnerability.Summary == nil { break } - return e.complexity.Vulnerability.Summary(childComplexity), true + return e.ComplexityRoot.Vulnerability.Summary(childComplexity), true case "Vulnerability.systemInternalID": - if e.complexity.Vulnerability.SystemInternalID == nil { + if e.ComplexityRoot.Vulnerability.SystemInternalID == nil { break } - return e.complexity.Vulnerability.SystemInternalID(childComplexity), true + return e.ComplexityRoot.Vulnerability.SystemInternalID(childComplexity), true case "Vulnerability.systemOwned": - if e.complexity.Vulnerability.SystemOwned == nil { + if e.ComplexityRoot.Vulnerability.SystemOwned == nil { break } - return e.complexity.Vulnerability.SystemOwned(childComplexity), true + return e.ComplexityRoot.Vulnerability.SystemOwned(childComplexity), true case "Vulnerability.tags": - if e.complexity.Vulnerability.Tags == nil { + if e.ComplexityRoot.Vulnerability.Tags == nil { break } - return e.complexity.Vulnerability.Tags(childComplexity), true + return e.ComplexityRoot.Vulnerability.Tags(childComplexity), true case "Vulnerability.tasks": - if e.complexity.Vulnerability.Tasks == nil { + if e.ComplexityRoot.Vulnerability.Tasks == nil { break } @@ -46654,38 +46637,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true + return e.ComplexityRoot.Vulnerability.Tasks(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TaskOrder), args["where"].(*generated.TaskWhereInput)), true case "Vulnerability.updatedAt": - if e.complexity.Vulnerability.UpdatedAt == nil { + if e.ComplexityRoot.Vulnerability.UpdatedAt == nil { break } - return e.complexity.Vulnerability.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Vulnerability.UpdatedAt(childComplexity), true case "Vulnerability.updatedBy": - if e.complexity.Vulnerability.UpdatedBy == nil { + if e.ComplexityRoot.Vulnerability.UpdatedBy == nil { break } - return e.complexity.Vulnerability.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Vulnerability.UpdatedBy(childComplexity), true case "Vulnerability.validated": - if e.complexity.Vulnerability.Validated == nil { + if e.ComplexityRoot.Vulnerability.Validated == nil { break } - return e.complexity.Vulnerability.Validated(childComplexity), true + return e.ComplexityRoot.Vulnerability.Validated(childComplexity), true case "Vulnerability.vector": - if e.complexity.Vulnerability.Vector == nil { + if e.ComplexityRoot.Vulnerability.Vector == nil { break } - return e.complexity.Vulnerability.Vector(childComplexity), true + return e.ComplexityRoot.Vulnerability.Vector(childComplexity), true case "Vulnerability.viewers": - if e.complexity.Vulnerability.Viewers == nil { + if e.ComplexityRoot.Vulnerability.Viewers == nil { break } @@ -46694,416 +46677,416 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Vulnerability.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.Vulnerability.Viewers(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "VulnerabilityBulkCreatePayload.vulnerabilities": - if e.complexity.VulnerabilityBulkCreatePayload.Vulnerabilities == nil { + if e.ComplexityRoot.VulnerabilityBulkCreatePayload.Vulnerabilities == nil { break } - return e.complexity.VulnerabilityBulkCreatePayload.Vulnerabilities(childComplexity), true + return e.ComplexityRoot.VulnerabilityBulkCreatePayload.Vulnerabilities(childComplexity), true case "VulnerabilityConnection.edges": - if e.complexity.VulnerabilityConnection.Edges == nil { + if e.ComplexityRoot.VulnerabilityConnection.Edges == nil { break } - return e.complexity.VulnerabilityConnection.Edges(childComplexity), true + return e.ComplexityRoot.VulnerabilityConnection.Edges(childComplexity), true case "VulnerabilityConnection.pageInfo": - if e.complexity.VulnerabilityConnection.PageInfo == nil { + if e.ComplexityRoot.VulnerabilityConnection.PageInfo == nil { break } - return e.complexity.VulnerabilityConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.VulnerabilityConnection.PageInfo(childComplexity), true case "VulnerabilityConnection.totalCount": - if e.complexity.VulnerabilityConnection.TotalCount == nil { + if e.ComplexityRoot.VulnerabilityConnection.TotalCount == nil { break } - return e.complexity.VulnerabilityConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.VulnerabilityConnection.TotalCount(childComplexity), true case "VulnerabilityCreatePayload.vulnerability": - if e.complexity.VulnerabilityCreatePayload.Vulnerability == nil { + if e.ComplexityRoot.VulnerabilityCreatePayload.Vulnerability == nil { break } - return e.complexity.VulnerabilityCreatePayload.Vulnerability(childComplexity), true + return e.ComplexityRoot.VulnerabilityCreatePayload.Vulnerability(childComplexity), true case "VulnerabilityDeletePayload.deletedID": - if e.complexity.VulnerabilityDeletePayload.DeletedID == nil { + if e.ComplexityRoot.VulnerabilityDeletePayload.DeletedID == nil { break } - return e.complexity.VulnerabilityDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.VulnerabilityDeletePayload.DeletedID(childComplexity), true case "VulnerabilityEdge.cursor": - if e.complexity.VulnerabilityEdge.Cursor == nil { + if e.ComplexityRoot.VulnerabilityEdge.Cursor == nil { break } - return e.complexity.VulnerabilityEdge.Cursor(childComplexity), true + return e.ComplexityRoot.VulnerabilityEdge.Cursor(childComplexity), true case "VulnerabilityEdge.node": - if e.complexity.VulnerabilityEdge.Node == nil { + if e.ComplexityRoot.VulnerabilityEdge.Node == nil { break } - return e.complexity.VulnerabilityEdge.Node(childComplexity), true + return e.ComplexityRoot.VulnerabilityEdge.Node(childComplexity), true case "VulnerabilityResolvePayload.review": - if e.complexity.VulnerabilityResolvePayload.Review == nil { + if e.ComplexityRoot.VulnerabilityResolvePayload.Review == nil { break } - return e.complexity.VulnerabilityResolvePayload.Review(childComplexity), true + return e.ComplexityRoot.VulnerabilityResolvePayload.Review(childComplexity), true case "VulnerabilityResolvePayload.vulnerability": - if e.complexity.VulnerabilityResolvePayload.Vulnerability == nil { + if e.ComplexityRoot.VulnerabilityResolvePayload.Vulnerability == nil { break } - return e.complexity.VulnerabilityResolvePayload.Vulnerability(childComplexity), true + return e.ComplexityRoot.VulnerabilityResolvePayload.Vulnerability(childComplexity), true case "VulnerabilitySummary.bySeverity": - if e.complexity.VulnerabilitySummary.BySeverity == nil { + if e.ComplexityRoot.VulnerabilitySummary.BySeverity == nil { break } - return e.complexity.VulnerabilitySummary.BySeverity(childComplexity), true + return e.ComplexityRoot.VulnerabilitySummary.BySeverity(childComplexity), true case "VulnerabilitySummary.bySource": - if e.complexity.VulnerabilitySummary.BySource == nil { + if e.ComplexityRoot.VulnerabilitySummary.BySource == nil { break } - return e.complexity.VulnerabilitySummary.BySource(childComplexity), true + return e.ComplexityRoot.VulnerabilitySummary.BySource(childComplexity), true case "VulnerabilitySummary.byStatus": - if e.complexity.VulnerabilitySummary.ByStatus == nil { + if e.ComplexityRoot.VulnerabilitySummary.ByStatus == nil { break } - return e.complexity.VulnerabilitySummary.ByStatus(childComplexity), true + return e.ComplexityRoot.VulnerabilitySummary.ByStatus(childComplexity), true case "VulnerabilitySummary.total": - if e.complexity.VulnerabilitySummary.Total == nil { + if e.ComplexityRoot.VulnerabilitySummary.Total == nil { break } - return e.complexity.VulnerabilitySummary.Total(childComplexity), true + return e.ComplexityRoot.VulnerabilitySummary.Total(childComplexity), true case "VulnerabilitySummaryBucket.count": - if e.complexity.VulnerabilitySummaryBucket.Count == nil { + if e.ComplexityRoot.VulnerabilitySummaryBucket.Count == nil { break } - return e.complexity.VulnerabilitySummaryBucket.Count(childComplexity), true + return e.ComplexityRoot.VulnerabilitySummaryBucket.Count(childComplexity), true case "VulnerabilitySummaryBucket.key": - if e.complexity.VulnerabilitySummaryBucket.Key == nil { + if e.ComplexityRoot.VulnerabilitySummaryBucket.Key == nil { break } - return e.complexity.VulnerabilitySummaryBucket.Key(childComplexity), true + return e.ComplexityRoot.VulnerabilitySummaryBucket.Key(childComplexity), true case "VulnerabilityUpdatePayload.vulnerability": - if e.complexity.VulnerabilityUpdatePayload.Vulnerability == nil { + if e.ComplexityRoot.VulnerabilityUpdatePayload.Vulnerability == nil { break } - return e.complexity.VulnerabilityUpdatePayload.Vulnerability(childComplexity), true + return e.ComplexityRoot.VulnerabilityUpdatePayload.Vulnerability(childComplexity), true case "Webauthn.aaguid": - if e.complexity.Webauthn.Aaguid == nil { + if e.ComplexityRoot.Webauthn.Aaguid == nil { break } - return e.complexity.Webauthn.Aaguid(childComplexity), true + return e.ComplexityRoot.Webauthn.Aaguid(childComplexity), true case "Webauthn.backupEligible": - if e.complexity.Webauthn.BackupEligible == nil { + if e.ComplexityRoot.Webauthn.BackupEligible == nil { break } - return e.complexity.Webauthn.BackupEligible(childComplexity), true + return e.ComplexityRoot.Webauthn.BackupEligible(childComplexity), true case "Webauthn.backupState": - if e.complexity.Webauthn.BackupState == nil { + if e.ComplexityRoot.Webauthn.BackupState == nil { break } - return e.complexity.Webauthn.BackupState(childComplexity), true + return e.ComplexityRoot.Webauthn.BackupState(childComplexity), true case "Webauthn.createdAt": - if e.complexity.Webauthn.CreatedAt == nil { + if e.ComplexityRoot.Webauthn.CreatedAt == nil { break } - return e.complexity.Webauthn.CreatedAt(childComplexity), true + return e.ComplexityRoot.Webauthn.CreatedAt(childComplexity), true case "Webauthn.createdBy": - if e.complexity.Webauthn.CreatedBy == nil { + if e.ComplexityRoot.Webauthn.CreatedBy == nil { break } - return e.complexity.Webauthn.CreatedBy(childComplexity), true + return e.ComplexityRoot.Webauthn.CreatedBy(childComplexity), true case "Webauthn.id": - if e.complexity.Webauthn.ID == nil { + if e.ComplexityRoot.Webauthn.ID == nil { break } - return e.complexity.Webauthn.ID(childComplexity), true + return e.ComplexityRoot.Webauthn.ID(childComplexity), true case "Webauthn.owner": - if e.complexity.Webauthn.Owner == nil { + if e.ComplexityRoot.Webauthn.Owner == nil { break } - return e.complexity.Webauthn.Owner(childComplexity), true + return e.ComplexityRoot.Webauthn.Owner(childComplexity), true case "Webauthn.tags": - if e.complexity.Webauthn.Tags == nil { + if e.ComplexityRoot.Webauthn.Tags == nil { break } - return e.complexity.Webauthn.Tags(childComplexity), true + return e.ComplexityRoot.Webauthn.Tags(childComplexity), true case "Webauthn.updatedAt": - if e.complexity.Webauthn.UpdatedAt == nil { + if e.ComplexityRoot.Webauthn.UpdatedAt == nil { break } - return e.complexity.Webauthn.UpdatedAt(childComplexity), true + return e.ComplexityRoot.Webauthn.UpdatedAt(childComplexity), true case "Webauthn.updatedBy": - if e.complexity.Webauthn.UpdatedBy == nil { + if e.ComplexityRoot.Webauthn.UpdatedBy == nil { break } - return e.complexity.Webauthn.UpdatedBy(childComplexity), true + return e.ComplexityRoot.Webauthn.UpdatedBy(childComplexity), true case "WebauthnConnection.edges": - if e.complexity.WebauthnConnection.Edges == nil { + if e.ComplexityRoot.WebauthnConnection.Edges == nil { break } - return e.complexity.WebauthnConnection.Edges(childComplexity), true + return e.ComplexityRoot.WebauthnConnection.Edges(childComplexity), true case "WebauthnConnection.pageInfo": - if e.complexity.WebauthnConnection.PageInfo == nil { + if e.ComplexityRoot.WebauthnConnection.PageInfo == nil { break } - return e.complexity.WebauthnConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WebauthnConnection.PageInfo(childComplexity), true case "WebauthnConnection.totalCount": - if e.complexity.WebauthnConnection.TotalCount == nil { + if e.ComplexityRoot.WebauthnConnection.TotalCount == nil { break } - return e.complexity.WebauthnConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WebauthnConnection.TotalCount(childComplexity), true case "WebauthnDeletePayload.deletedID": - if e.complexity.WebauthnDeletePayload.DeletedID == nil { + if e.ComplexityRoot.WebauthnDeletePayload.DeletedID == nil { break } - return e.complexity.WebauthnDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.WebauthnDeletePayload.DeletedID(childComplexity), true case "WebauthnEdge.cursor": - if e.complexity.WebauthnEdge.Cursor == nil { + if e.ComplexityRoot.WebauthnEdge.Cursor == nil { break } - return e.complexity.WebauthnEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WebauthnEdge.Cursor(childComplexity), true case "WebauthnEdge.node": - if e.complexity.WebauthnEdge.Node == nil { + if e.ComplexityRoot.WebauthnEdge.Node == nil { break } - return e.complexity.WebauthnEdge.Node(childComplexity), true + return e.ComplexityRoot.WebauthnEdge.Node(childComplexity), true case "WorkflowAssignment.actorGroupID": - if e.complexity.WorkflowAssignment.ActorGroupID == nil { + if e.ComplexityRoot.WorkflowAssignment.ActorGroupID == nil { break } - return e.complexity.WorkflowAssignment.ActorGroupID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.ActorGroupID(childComplexity), true case "WorkflowAssignment.actorUserID": - if e.complexity.WorkflowAssignment.ActorUserID == nil { + if e.ComplexityRoot.WorkflowAssignment.ActorUserID == nil { break } - return e.complexity.WorkflowAssignment.ActorUserID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.ActorUserID(childComplexity), true case "WorkflowAssignment.approvalMetadata": - if e.complexity.WorkflowAssignment.ApprovalMetadata == nil { + if e.ComplexityRoot.WorkflowAssignment.ApprovalMetadata == nil { break } - return e.complexity.WorkflowAssignment.ApprovalMetadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.ApprovalMetadata(childComplexity), true case "WorkflowAssignment.assignmentKey": - if e.complexity.WorkflowAssignment.AssignmentKey == nil { + if e.ComplexityRoot.WorkflowAssignment.AssignmentKey == nil { break } - return e.complexity.WorkflowAssignment.AssignmentKey(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.AssignmentKey(childComplexity), true case "WorkflowAssignment.createdAt": - if e.complexity.WorkflowAssignment.CreatedAt == nil { + if e.ComplexityRoot.WorkflowAssignment.CreatedAt == nil { break } - return e.complexity.WorkflowAssignment.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.CreatedAt(childComplexity), true case "WorkflowAssignment.createdBy": - if e.complexity.WorkflowAssignment.CreatedBy == nil { + if e.ComplexityRoot.WorkflowAssignment.CreatedBy == nil { break } - return e.complexity.WorkflowAssignment.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.CreatedBy(childComplexity), true case "WorkflowAssignment.decidedAt": - if e.complexity.WorkflowAssignment.DecidedAt == nil { + if e.ComplexityRoot.WorkflowAssignment.DecidedAt == nil { break } - return e.complexity.WorkflowAssignment.DecidedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.DecidedAt(childComplexity), true case "WorkflowAssignment.displayID": - if e.complexity.WorkflowAssignment.DisplayID == nil { + if e.ComplexityRoot.WorkflowAssignment.DisplayID == nil { break } - return e.complexity.WorkflowAssignment.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.DisplayID(childComplexity), true case "WorkflowAssignment.dueAt": - if e.complexity.WorkflowAssignment.DueAt == nil { + if e.ComplexityRoot.WorkflowAssignment.DueAt == nil { break } - return e.complexity.WorkflowAssignment.DueAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.DueAt(childComplexity), true case "WorkflowAssignment.group": - if e.complexity.WorkflowAssignment.Group == nil { + if e.ComplexityRoot.WorkflowAssignment.Group == nil { break } - return e.complexity.WorkflowAssignment.Group(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Group(childComplexity), true case "WorkflowAssignment.id": - if e.complexity.WorkflowAssignment.ID == nil { + if e.ComplexityRoot.WorkflowAssignment.ID == nil { break } - return e.complexity.WorkflowAssignment.ID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.ID(childComplexity), true case "WorkflowAssignment.invalidationMetadata": - if e.complexity.WorkflowAssignment.InvalidationMetadata == nil { + if e.ComplexityRoot.WorkflowAssignment.InvalidationMetadata == nil { break } - return e.complexity.WorkflowAssignment.InvalidationMetadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.InvalidationMetadata(childComplexity), true case "WorkflowAssignment.label": - if e.complexity.WorkflowAssignment.Label == nil { + if e.ComplexityRoot.WorkflowAssignment.Label == nil { break } - return e.complexity.WorkflowAssignment.Label(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Label(childComplexity), true case "WorkflowAssignment.metadata": - if e.complexity.WorkflowAssignment.Metadata == nil { + if e.ComplexityRoot.WorkflowAssignment.Metadata == nil { break } - return e.complexity.WorkflowAssignment.Metadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Metadata(childComplexity), true case "WorkflowAssignment.notes": - if e.complexity.WorkflowAssignment.Notes == nil { + if e.ComplexityRoot.WorkflowAssignment.Notes == nil { break } - return e.complexity.WorkflowAssignment.Notes(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Notes(childComplexity), true case "WorkflowAssignment.owner": - if e.complexity.WorkflowAssignment.Owner == nil { + if e.ComplexityRoot.WorkflowAssignment.Owner == nil { break } - return e.complexity.WorkflowAssignment.Owner(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Owner(childComplexity), true case "WorkflowAssignment.ownerID": - if e.complexity.WorkflowAssignment.OwnerID == nil { + if e.ComplexityRoot.WorkflowAssignment.OwnerID == nil { break } - return e.complexity.WorkflowAssignment.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.OwnerID(childComplexity), true case "WorkflowAssignment.rejectionMetadata": - if e.complexity.WorkflowAssignment.RejectionMetadata == nil { + if e.ComplexityRoot.WorkflowAssignment.RejectionMetadata == nil { break } - return e.complexity.WorkflowAssignment.RejectionMetadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.RejectionMetadata(childComplexity), true case "WorkflowAssignment.required": - if e.complexity.WorkflowAssignment.Required == nil { + if e.ComplexityRoot.WorkflowAssignment.Required == nil { break } - return e.complexity.WorkflowAssignment.Required(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Required(childComplexity), true case "WorkflowAssignment.role": - if e.complexity.WorkflowAssignment.Role == nil { + if e.ComplexityRoot.WorkflowAssignment.Role == nil { break } - return e.complexity.WorkflowAssignment.Role(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Role(childComplexity), true case "WorkflowAssignment.status": - if e.complexity.WorkflowAssignment.Status == nil { + if e.ComplexityRoot.WorkflowAssignment.Status == nil { break } - return e.complexity.WorkflowAssignment.Status(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Status(childComplexity), true case "WorkflowAssignment.tags": - if e.complexity.WorkflowAssignment.Tags == nil { + if e.ComplexityRoot.WorkflowAssignment.Tags == nil { break } - return e.complexity.WorkflowAssignment.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.Tags(childComplexity), true case "WorkflowAssignment.updatedAt": - if e.complexity.WorkflowAssignment.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowAssignment.UpdatedAt == nil { break } - return e.complexity.WorkflowAssignment.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.UpdatedAt(childComplexity), true case "WorkflowAssignment.updatedBy": - if e.complexity.WorkflowAssignment.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowAssignment.UpdatedBy == nil { break } - return e.complexity.WorkflowAssignment.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.UpdatedBy(childComplexity), true case "WorkflowAssignment.user": - if e.complexity.WorkflowAssignment.User == nil { + if e.ComplexityRoot.WorkflowAssignment.User == nil { break } - return e.complexity.WorkflowAssignment.User(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.User(childComplexity), true case "WorkflowAssignment.workflowAssignmentTargets": - if e.complexity.WorkflowAssignment.WorkflowAssignmentTargets == nil { + if e.ComplexityRoot.WorkflowAssignment.WorkflowAssignmentTargets == nil { break } @@ -47112,290 +47095,290 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowAssignment.WorkflowAssignmentTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), args["where"].(*generated.WorkflowAssignmentTargetWhereInput)), true + return e.ComplexityRoot.WorkflowAssignment.WorkflowAssignmentTargets(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentTargetOrder), args["where"].(*generated.WorkflowAssignmentTargetWhereInput)), true case "WorkflowAssignment.workflowInstance": - if e.complexity.WorkflowAssignment.WorkflowInstance == nil { + if e.ComplexityRoot.WorkflowAssignment.WorkflowInstance == nil { break } - return e.complexity.WorkflowAssignment.WorkflowInstance(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.WorkflowInstance(childComplexity), true case "WorkflowAssignment.workflowInstanceID": - if e.complexity.WorkflowAssignment.WorkflowInstanceID == nil { + if e.ComplexityRoot.WorkflowAssignment.WorkflowInstanceID == nil { break } - return e.complexity.WorkflowAssignment.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignment.WorkflowInstanceID(childComplexity), true case "WorkflowAssignmentApprovePayload.workflowAssignment": - if e.complexity.WorkflowAssignmentApprovePayload.WorkflowAssignment == nil { + if e.ComplexityRoot.WorkflowAssignmentApprovePayload.WorkflowAssignment == nil { break } - return e.complexity.WorkflowAssignmentApprovePayload.WorkflowAssignment(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentApprovePayload.WorkflowAssignment(childComplexity), true case "WorkflowAssignmentConnection.edges": - if e.complexity.WorkflowAssignmentConnection.Edges == nil { + if e.ComplexityRoot.WorkflowAssignmentConnection.Edges == nil { break } - return e.complexity.WorkflowAssignmentConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentConnection.Edges(childComplexity), true case "WorkflowAssignmentConnection.pageInfo": - if e.complexity.WorkflowAssignmentConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowAssignmentConnection.PageInfo == nil { break } - return e.complexity.WorkflowAssignmentConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentConnection.PageInfo(childComplexity), true case "WorkflowAssignmentConnection.totalCount": - if e.complexity.WorkflowAssignmentConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowAssignmentConnection.TotalCount == nil { break } - return e.complexity.WorkflowAssignmentConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentConnection.TotalCount(childComplexity), true case "WorkflowAssignmentEdge.cursor": - if e.complexity.WorkflowAssignmentEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowAssignmentEdge.Cursor == nil { break } - return e.complexity.WorkflowAssignmentEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentEdge.Cursor(childComplexity), true case "WorkflowAssignmentEdge.node": - if e.complexity.WorkflowAssignmentEdge.Node == nil { + if e.ComplexityRoot.WorkflowAssignmentEdge.Node == nil { break } - return e.complexity.WorkflowAssignmentEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentEdge.Node(childComplexity), true case "WorkflowAssignmentReassignPayload.workflowAssignment": - if e.complexity.WorkflowAssignmentReassignPayload.WorkflowAssignment == nil { + if e.ComplexityRoot.WorkflowAssignmentReassignPayload.WorkflowAssignment == nil { break } - return e.complexity.WorkflowAssignmentReassignPayload.WorkflowAssignment(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentReassignPayload.WorkflowAssignment(childComplexity), true case "WorkflowAssignmentRejectPayload.workflowAssignment": - if e.complexity.WorkflowAssignmentRejectPayload.WorkflowAssignment == nil { + if e.ComplexityRoot.WorkflowAssignmentRejectPayload.WorkflowAssignment == nil { break } - return e.complexity.WorkflowAssignmentRejectPayload.WorkflowAssignment(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentRejectPayload.WorkflowAssignment(childComplexity), true case "WorkflowAssignmentTarget.createdAt": - if e.complexity.WorkflowAssignmentTarget.CreatedAt == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.CreatedAt == nil { break } - return e.complexity.WorkflowAssignmentTarget.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.CreatedAt(childComplexity), true case "WorkflowAssignmentTarget.createdBy": - if e.complexity.WorkflowAssignmentTarget.CreatedBy == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.CreatedBy == nil { break } - return e.complexity.WorkflowAssignmentTarget.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.CreatedBy(childComplexity), true case "WorkflowAssignmentTarget.displayID": - if e.complexity.WorkflowAssignmentTarget.DisplayID == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.DisplayID == nil { break } - return e.complexity.WorkflowAssignmentTarget.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.DisplayID(childComplexity), true case "WorkflowAssignmentTarget.group": - if e.complexity.WorkflowAssignmentTarget.Group == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.Group == nil { break } - return e.complexity.WorkflowAssignmentTarget.Group(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.Group(childComplexity), true case "WorkflowAssignmentTarget.id": - if e.complexity.WorkflowAssignmentTarget.ID == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.ID == nil { break } - return e.complexity.WorkflowAssignmentTarget.ID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.ID(childComplexity), true case "WorkflowAssignmentTarget.owner": - if e.complexity.WorkflowAssignmentTarget.Owner == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.Owner == nil { break } - return e.complexity.WorkflowAssignmentTarget.Owner(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.Owner(childComplexity), true case "WorkflowAssignmentTarget.ownerID": - if e.complexity.WorkflowAssignmentTarget.OwnerID == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.OwnerID == nil { break } - return e.complexity.WorkflowAssignmentTarget.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.OwnerID(childComplexity), true case "WorkflowAssignmentTarget.resolverKey": - if e.complexity.WorkflowAssignmentTarget.ResolverKey == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.ResolverKey == nil { break } - return e.complexity.WorkflowAssignmentTarget.ResolverKey(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.ResolverKey(childComplexity), true case "WorkflowAssignmentTarget.tags": - if e.complexity.WorkflowAssignmentTarget.Tags == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.Tags == nil { break } - return e.complexity.WorkflowAssignmentTarget.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.Tags(childComplexity), true case "WorkflowAssignmentTarget.targetGroupID": - if e.complexity.WorkflowAssignmentTarget.TargetGroupID == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.TargetGroupID == nil { break } - return e.complexity.WorkflowAssignmentTarget.TargetGroupID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.TargetGroupID(childComplexity), true case "WorkflowAssignmentTarget.targetType": - if e.complexity.WorkflowAssignmentTarget.TargetType == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.TargetType == nil { break } - return e.complexity.WorkflowAssignmentTarget.TargetType(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.TargetType(childComplexity), true case "WorkflowAssignmentTarget.targetUserID": - if e.complexity.WorkflowAssignmentTarget.TargetUserID == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.TargetUserID == nil { break } - return e.complexity.WorkflowAssignmentTarget.TargetUserID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.TargetUserID(childComplexity), true case "WorkflowAssignmentTarget.updatedAt": - if e.complexity.WorkflowAssignmentTarget.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.UpdatedAt == nil { break } - return e.complexity.WorkflowAssignmentTarget.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.UpdatedAt(childComplexity), true case "WorkflowAssignmentTarget.updatedBy": - if e.complexity.WorkflowAssignmentTarget.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.UpdatedBy == nil { break } - return e.complexity.WorkflowAssignmentTarget.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.UpdatedBy(childComplexity), true case "WorkflowAssignmentTarget.user": - if e.complexity.WorkflowAssignmentTarget.User == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.User == nil { break } - return e.complexity.WorkflowAssignmentTarget.User(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.User(childComplexity), true case "WorkflowAssignmentTarget.workflowAssignment": - if e.complexity.WorkflowAssignmentTarget.WorkflowAssignment == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.WorkflowAssignment == nil { break } - return e.complexity.WorkflowAssignmentTarget.WorkflowAssignment(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.WorkflowAssignment(childComplexity), true case "WorkflowAssignmentTarget.workflowAssignmentID": - if e.complexity.WorkflowAssignmentTarget.WorkflowAssignmentID == nil { + if e.ComplexityRoot.WorkflowAssignmentTarget.WorkflowAssignmentID == nil { break } - return e.complexity.WorkflowAssignmentTarget.WorkflowAssignmentID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTarget.WorkflowAssignmentID(childComplexity), true case "WorkflowAssignmentTargetConnection.edges": - if e.complexity.WorkflowAssignmentTargetConnection.Edges == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetConnection.Edges == nil { break } - return e.complexity.WorkflowAssignmentTargetConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetConnection.Edges(childComplexity), true case "WorkflowAssignmentTargetConnection.pageInfo": - if e.complexity.WorkflowAssignmentTargetConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetConnection.PageInfo == nil { break } - return e.complexity.WorkflowAssignmentTargetConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetConnection.PageInfo(childComplexity), true case "WorkflowAssignmentTargetConnection.totalCount": - if e.complexity.WorkflowAssignmentTargetConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetConnection.TotalCount == nil { break } - return e.complexity.WorkflowAssignmentTargetConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetConnection.TotalCount(childComplexity), true case "WorkflowAssignmentTargetEdge.cursor": - if e.complexity.WorkflowAssignmentTargetEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetEdge.Cursor == nil { break } - return e.complexity.WorkflowAssignmentTargetEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetEdge.Cursor(childComplexity), true case "WorkflowAssignmentTargetEdge.node": - if e.complexity.WorkflowAssignmentTargetEdge.Node == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetEdge.Node == nil { break } - return e.complexity.WorkflowAssignmentTargetEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetEdge.Node(childComplexity), true case "WorkflowDefinition.active": - if e.complexity.WorkflowDefinition.Active == nil { + if e.ComplexityRoot.WorkflowDefinition.Active == nil { break } - return e.complexity.WorkflowDefinition.Active(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.Active(childComplexity), true case "WorkflowDefinition.cooldownSeconds": - if e.complexity.WorkflowDefinition.CooldownSeconds == nil { + if e.ComplexityRoot.WorkflowDefinition.CooldownSeconds == nil { break } - return e.complexity.WorkflowDefinition.CooldownSeconds(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.CooldownSeconds(childComplexity), true case "WorkflowDefinition.createdAt": - if e.complexity.WorkflowDefinition.CreatedAt == nil { + if e.ComplexityRoot.WorkflowDefinition.CreatedAt == nil { break } - return e.complexity.WorkflowDefinition.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.CreatedAt(childComplexity), true case "WorkflowDefinition.createdBy": - if e.complexity.WorkflowDefinition.CreatedBy == nil { + if e.ComplexityRoot.WorkflowDefinition.CreatedBy == nil { break } - return e.complexity.WorkflowDefinition.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.CreatedBy(childComplexity), true case "WorkflowDefinition.definitionJSON": - if e.complexity.WorkflowDefinition.DefinitionJSON == nil { + if e.ComplexityRoot.WorkflowDefinition.DefinitionJSON == nil { break } - return e.complexity.WorkflowDefinition.DefinitionJSON(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.DefinitionJSON(childComplexity), true case "WorkflowDefinition.description": - if e.complexity.WorkflowDefinition.Description == nil { + if e.ComplexityRoot.WorkflowDefinition.Description == nil { break } - return e.complexity.WorkflowDefinition.Description(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.Description(childComplexity), true case "WorkflowDefinition.displayID": - if e.complexity.WorkflowDefinition.DisplayID == nil { + if e.ComplexityRoot.WorkflowDefinition.DisplayID == nil { break } - return e.complexity.WorkflowDefinition.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.DisplayID(childComplexity), true case "WorkflowDefinition.draft": - if e.complexity.WorkflowDefinition.Draft == nil { + if e.ComplexityRoot.WorkflowDefinition.Draft == nil { break } - return e.complexity.WorkflowDefinition.Draft(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.Draft(childComplexity), true case "WorkflowDefinition.emailTemplates": - if e.complexity.WorkflowDefinition.EmailTemplates == nil { + if e.ComplexityRoot.WorkflowDefinition.EmailTemplates == nil { break } @@ -47404,10 +47387,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowDefinition.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true + return e.ComplexityRoot.WorkflowDefinition.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true case "WorkflowDefinition.groups": - if e.complexity.WorkflowDefinition.Groups == nil { + if e.ComplexityRoot.WorkflowDefinition.Groups == nil { break } @@ -47416,38 +47399,38 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowDefinition.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true + return e.ComplexityRoot.WorkflowDefinition.Groups(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.GroupOrder), args["where"].(*generated.GroupWhereInput)), true case "WorkflowDefinition.id": - if e.complexity.WorkflowDefinition.ID == nil { + if e.ComplexityRoot.WorkflowDefinition.ID == nil { break } - return e.complexity.WorkflowDefinition.ID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.ID(childComplexity), true case "WorkflowDefinition.internalNotes": - if e.complexity.WorkflowDefinition.InternalNotes == nil { + if e.ComplexityRoot.WorkflowDefinition.InternalNotes == nil { break } - return e.complexity.WorkflowDefinition.InternalNotes(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.InternalNotes(childComplexity), true case "WorkflowDefinition.isDefault": - if e.complexity.WorkflowDefinition.IsDefault == nil { + if e.ComplexityRoot.WorkflowDefinition.IsDefault == nil { break } - return e.complexity.WorkflowDefinition.IsDefault(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.IsDefault(childComplexity), true case "WorkflowDefinition.name": - if e.complexity.WorkflowDefinition.Name == nil { + if e.ComplexityRoot.WorkflowDefinition.Name == nil { break } - return e.complexity.WorkflowDefinition.Name(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.Name(childComplexity), true case "WorkflowDefinition.notificationTemplates": - if e.complexity.WorkflowDefinition.NotificationTemplates == nil { + if e.ComplexityRoot.WorkflowDefinition.NotificationTemplates == nil { break } @@ -47456,59 +47439,59 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowDefinition.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true + return e.ComplexityRoot.WorkflowDefinition.NotificationTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.NotificationTemplateOrder), args["where"].(*generated.NotificationTemplateWhereInput)), true case "WorkflowDefinition.owner": - if e.complexity.WorkflowDefinition.Owner == nil { + if e.ComplexityRoot.WorkflowDefinition.Owner == nil { break } - return e.complexity.WorkflowDefinition.Owner(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.Owner(childComplexity), true case "WorkflowDefinition.ownerID": - if e.complexity.WorkflowDefinition.OwnerID == nil { + if e.ComplexityRoot.WorkflowDefinition.OwnerID == nil { break } - return e.complexity.WorkflowDefinition.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.OwnerID(childComplexity), true case "WorkflowDefinition.publishedAt": - if e.complexity.WorkflowDefinition.PublishedAt == nil { + if e.ComplexityRoot.WorkflowDefinition.PublishedAt == nil { break } - return e.complexity.WorkflowDefinition.PublishedAt(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.PublishedAt(childComplexity), true case "WorkflowDefinition.revision": - if e.complexity.WorkflowDefinition.Revision == nil { + if e.ComplexityRoot.WorkflowDefinition.Revision == nil { break } - return e.complexity.WorkflowDefinition.Revision(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.Revision(childComplexity), true case "WorkflowDefinition.schemaType": - if e.complexity.WorkflowDefinition.SchemaType == nil { + if e.ComplexityRoot.WorkflowDefinition.SchemaType == nil { break } - return e.complexity.WorkflowDefinition.SchemaType(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.SchemaType(childComplexity), true case "WorkflowDefinition.systemInternalID": - if e.complexity.WorkflowDefinition.SystemInternalID == nil { + if e.ComplexityRoot.WorkflowDefinition.SystemInternalID == nil { break } - return e.complexity.WorkflowDefinition.SystemInternalID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.SystemInternalID(childComplexity), true case "WorkflowDefinition.systemOwned": - if e.complexity.WorkflowDefinition.SystemOwned == nil { + if e.ComplexityRoot.WorkflowDefinition.SystemOwned == nil { break } - return e.complexity.WorkflowDefinition.SystemOwned(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.SystemOwned(childComplexity), true case "WorkflowDefinition.tagDefinitions": - if e.complexity.WorkflowDefinition.TagDefinitions == nil { + if e.ComplexityRoot.WorkflowDefinition.TagDefinitions == nil { break } @@ -47517,395 +47500,395 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowDefinition.TagDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TagDefinitionOrder), args["where"].(*generated.TagDefinitionWhereInput)), true + return e.ComplexityRoot.WorkflowDefinition.TagDefinitions(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.TagDefinitionOrder), args["where"].(*generated.TagDefinitionWhereInput)), true case "WorkflowDefinition.tags": - if e.complexity.WorkflowDefinition.Tags == nil { + if e.ComplexityRoot.WorkflowDefinition.Tags == nil { break } - return e.complexity.WorkflowDefinition.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.Tags(childComplexity), true case "WorkflowDefinition.trackedFields": - if e.complexity.WorkflowDefinition.TrackedFields == nil { + if e.ComplexityRoot.WorkflowDefinition.TrackedFields == nil { break } - return e.complexity.WorkflowDefinition.TrackedFields(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.TrackedFields(childComplexity), true case "WorkflowDefinition.updatedAt": - if e.complexity.WorkflowDefinition.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowDefinition.UpdatedAt == nil { break } - return e.complexity.WorkflowDefinition.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.UpdatedAt(childComplexity), true case "WorkflowDefinition.updatedBy": - if e.complexity.WorkflowDefinition.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowDefinition.UpdatedBy == nil { break } - return e.complexity.WorkflowDefinition.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.UpdatedBy(childComplexity), true case "WorkflowDefinition.workflowKind": - if e.complexity.WorkflowDefinition.WorkflowKind == nil { + if e.ComplexityRoot.WorkflowDefinition.WorkflowKind == nil { break } - return e.complexity.WorkflowDefinition.WorkflowKind(childComplexity), true + return e.ComplexityRoot.WorkflowDefinition.WorkflowKind(childComplexity), true case "WorkflowDefinitionBulkCreatePayload.workflowDefinitions": - if e.complexity.WorkflowDefinitionBulkCreatePayload.WorkflowDefinitions == nil { + if e.ComplexityRoot.WorkflowDefinitionBulkCreatePayload.WorkflowDefinitions == nil { break } - return e.complexity.WorkflowDefinitionBulkCreatePayload.WorkflowDefinitions(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionBulkCreatePayload.WorkflowDefinitions(childComplexity), true case "WorkflowDefinitionConnection.edges": - if e.complexity.WorkflowDefinitionConnection.Edges == nil { + if e.ComplexityRoot.WorkflowDefinitionConnection.Edges == nil { break } - return e.complexity.WorkflowDefinitionConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionConnection.Edges(childComplexity), true case "WorkflowDefinitionConnection.pageInfo": - if e.complexity.WorkflowDefinitionConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowDefinitionConnection.PageInfo == nil { break } - return e.complexity.WorkflowDefinitionConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionConnection.PageInfo(childComplexity), true case "WorkflowDefinitionConnection.totalCount": - if e.complexity.WorkflowDefinitionConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowDefinitionConnection.TotalCount == nil { break } - return e.complexity.WorkflowDefinitionConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionConnection.TotalCount(childComplexity), true case "WorkflowDefinitionCreatePayload.workflowDefinition": - if e.complexity.WorkflowDefinitionCreatePayload.WorkflowDefinition == nil { + if e.ComplexityRoot.WorkflowDefinitionCreatePayload.WorkflowDefinition == nil { break } - return e.complexity.WorkflowDefinitionCreatePayload.WorkflowDefinition(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionCreatePayload.WorkflowDefinition(childComplexity), true case "WorkflowDefinitionDeletePayload.deletedID": - if e.complexity.WorkflowDefinitionDeletePayload.DeletedID == nil { + if e.ComplexityRoot.WorkflowDefinitionDeletePayload.DeletedID == nil { break } - return e.complexity.WorkflowDefinitionDeletePayload.DeletedID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionDeletePayload.DeletedID(childComplexity), true case "WorkflowDefinitionEdge.cursor": - if e.complexity.WorkflowDefinitionEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowDefinitionEdge.Cursor == nil { break } - return e.complexity.WorkflowDefinitionEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionEdge.Cursor(childComplexity), true case "WorkflowDefinitionEdge.node": - if e.complexity.WorkflowDefinitionEdge.Node == nil { + if e.ComplexityRoot.WorkflowDefinitionEdge.Node == nil { break } - return e.complexity.WorkflowDefinitionEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionEdge.Node(childComplexity), true case "WorkflowDefinitionUpdatePayload.workflowDefinition": - if e.complexity.WorkflowDefinitionUpdatePayload.WorkflowDefinition == nil { + if e.ComplexityRoot.WorkflowDefinitionUpdatePayload.WorkflowDefinition == nil { break } - return e.complexity.WorkflowDefinitionUpdatePayload.WorkflowDefinition(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionUpdatePayload.WorkflowDefinition(childComplexity), true case "WorkflowEvent.createdAt": - if e.complexity.WorkflowEvent.CreatedAt == nil { + if e.ComplexityRoot.WorkflowEvent.CreatedAt == nil { break } - return e.complexity.WorkflowEvent.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.CreatedAt(childComplexity), true case "WorkflowEvent.createdBy": - if e.complexity.WorkflowEvent.CreatedBy == nil { + if e.ComplexityRoot.WorkflowEvent.CreatedBy == nil { break } - return e.complexity.WorkflowEvent.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.CreatedBy(childComplexity), true case "WorkflowEvent.displayID": - if e.complexity.WorkflowEvent.DisplayID == nil { + if e.ComplexityRoot.WorkflowEvent.DisplayID == nil { break } - return e.complexity.WorkflowEvent.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.DisplayID(childComplexity), true case "WorkflowEvent.eventType": - if e.complexity.WorkflowEvent.EventType == nil { + if e.ComplexityRoot.WorkflowEvent.EventType == nil { break } - return e.complexity.WorkflowEvent.EventType(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.EventType(childComplexity), true case "WorkflowEvent.id": - if e.complexity.WorkflowEvent.ID == nil { + if e.ComplexityRoot.WorkflowEvent.ID == nil { break } - return e.complexity.WorkflowEvent.ID(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.ID(childComplexity), true case "WorkflowEvent.owner": - if e.complexity.WorkflowEvent.Owner == nil { + if e.ComplexityRoot.WorkflowEvent.Owner == nil { break } - return e.complexity.WorkflowEvent.Owner(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.Owner(childComplexity), true case "WorkflowEvent.ownerID": - if e.complexity.WorkflowEvent.OwnerID == nil { + if e.ComplexityRoot.WorkflowEvent.OwnerID == nil { break } - return e.complexity.WorkflowEvent.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.OwnerID(childComplexity), true case "WorkflowEvent.payload": - if e.complexity.WorkflowEvent.Payload == nil { + if e.ComplexityRoot.WorkflowEvent.Payload == nil { break } - return e.complexity.WorkflowEvent.Payload(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.Payload(childComplexity), true case "WorkflowEvent.tags": - if e.complexity.WorkflowEvent.Tags == nil { + if e.ComplexityRoot.WorkflowEvent.Tags == nil { break } - return e.complexity.WorkflowEvent.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.Tags(childComplexity), true case "WorkflowEvent.updatedAt": - if e.complexity.WorkflowEvent.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowEvent.UpdatedAt == nil { break } - return e.complexity.WorkflowEvent.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.UpdatedAt(childComplexity), true case "WorkflowEvent.updatedBy": - if e.complexity.WorkflowEvent.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowEvent.UpdatedBy == nil { break } - return e.complexity.WorkflowEvent.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.UpdatedBy(childComplexity), true case "WorkflowEvent.workflowInstance": - if e.complexity.WorkflowEvent.WorkflowInstance == nil { + if e.ComplexityRoot.WorkflowEvent.WorkflowInstance == nil { break } - return e.complexity.WorkflowEvent.WorkflowInstance(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.WorkflowInstance(childComplexity), true case "WorkflowEvent.workflowInstanceID": - if e.complexity.WorkflowEvent.WorkflowInstanceID == nil { + if e.ComplexityRoot.WorkflowEvent.WorkflowInstanceID == nil { break } - return e.complexity.WorkflowEvent.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.WorkflowEvent.WorkflowInstanceID(childComplexity), true case "WorkflowEventConnection.edges": - if e.complexity.WorkflowEventConnection.Edges == nil { + if e.ComplexityRoot.WorkflowEventConnection.Edges == nil { break } - return e.complexity.WorkflowEventConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowEventConnection.Edges(childComplexity), true case "WorkflowEventConnection.pageInfo": - if e.complexity.WorkflowEventConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowEventConnection.PageInfo == nil { break } - return e.complexity.WorkflowEventConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowEventConnection.PageInfo(childComplexity), true case "WorkflowEventConnection.totalCount": - if e.complexity.WorkflowEventConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowEventConnection.TotalCount == nil { break } - return e.complexity.WorkflowEventConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowEventConnection.TotalCount(childComplexity), true case "WorkflowEventEdge.cursor": - if e.complexity.WorkflowEventEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowEventEdge.Cursor == nil { break } - return e.complexity.WorkflowEventEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowEventEdge.Cursor(childComplexity), true case "WorkflowEventEdge.node": - if e.complexity.WorkflowEventEdge.Node == nil { + if e.ComplexityRoot.WorkflowEventEdge.Node == nil { break } - return e.complexity.WorkflowEventEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowEventEdge.Node(childComplexity), true case "WorkflowFieldDiff.currentValue": - if e.complexity.WorkflowFieldDiff.CurrentValue == nil { + if e.ComplexityRoot.WorkflowFieldDiff.CurrentValue == nil { break } - return e.complexity.WorkflowFieldDiff.CurrentValue(childComplexity), true + return e.ComplexityRoot.WorkflowFieldDiff.CurrentValue(childComplexity), true case "WorkflowFieldDiff.diff": - if e.complexity.WorkflowFieldDiff.Diff == nil { + if e.ComplexityRoot.WorkflowFieldDiff.Diff == nil { break } - return e.complexity.WorkflowFieldDiff.Diff(childComplexity), true + return e.ComplexityRoot.WorkflowFieldDiff.Diff(childComplexity), true case "WorkflowFieldDiff.field": - if e.complexity.WorkflowFieldDiff.Field == nil { + if e.ComplexityRoot.WorkflowFieldDiff.Field == nil { break } - return e.complexity.WorkflowFieldDiff.Field(childComplexity), true + return e.ComplexityRoot.WorkflowFieldDiff.Field(childComplexity), true case "WorkflowFieldDiff.label": - if e.complexity.WorkflowFieldDiff.Label == nil { + if e.ComplexityRoot.WorkflowFieldDiff.Label == nil { break } - return e.complexity.WorkflowFieldDiff.Label(childComplexity), true + return e.ComplexityRoot.WorkflowFieldDiff.Label(childComplexity), true case "WorkflowFieldDiff.proposedValue": - if e.complexity.WorkflowFieldDiff.ProposedValue == nil { + if e.ComplexityRoot.WorkflowFieldDiff.ProposedValue == nil { break } - return e.complexity.WorkflowFieldDiff.ProposedValue(childComplexity), true + return e.ComplexityRoot.WorkflowFieldDiff.ProposedValue(childComplexity), true case "WorkflowFieldDiff.type": - if e.complexity.WorkflowFieldDiff.Type == nil { + if e.ComplexityRoot.WorkflowFieldDiff.Type == nil { break } - return e.complexity.WorkflowFieldDiff.Type(childComplexity), true + return e.ComplexityRoot.WorkflowFieldDiff.Type(childComplexity), true case "WorkflowFieldMetadata.label": - if e.complexity.WorkflowFieldMetadata.Label == nil { + if e.ComplexityRoot.WorkflowFieldMetadata.Label == nil { break } - return e.complexity.WorkflowFieldMetadata.Label(childComplexity), true + return e.ComplexityRoot.WorkflowFieldMetadata.Label(childComplexity), true case "WorkflowFieldMetadata.name": - if e.complexity.WorkflowFieldMetadata.Name == nil { + if e.ComplexityRoot.WorkflowFieldMetadata.Name == nil { break } - return e.complexity.WorkflowFieldMetadata.Name(childComplexity), true + return e.ComplexityRoot.WorkflowFieldMetadata.Name(childComplexity), true case "WorkflowFieldMetadata.type": - if e.complexity.WorkflowFieldMetadata.Type == nil { + if e.ComplexityRoot.WorkflowFieldMetadata.Type == nil { break } - return e.complexity.WorkflowFieldMetadata.Type(childComplexity), true + return e.ComplexityRoot.WorkflowFieldMetadata.Type(childComplexity), true case "WorkflowInstance.actionPlan": - if e.complexity.WorkflowInstance.ActionPlan == nil { + if e.ComplexityRoot.WorkflowInstance.ActionPlan == nil { break } - return e.complexity.WorkflowInstance.ActionPlan(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.ActionPlan(childComplexity), true case "WorkflowInstance.actionPlanID": - if e.complexity.WorkflowInstance.ActionPlanID == nil { + if e.ComplexityRoot.WorkflowInstance.ActionPlanID == nil { break } - return e.complexity.WorkflowInstance.ActionPlanID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.ActionPlanID(childComplexity), true case "WorkflowInstance.campaign": - if e.complexity.WorkflowInstance.Campaign == nil { + if e.ComplexityRoot.WorkflowInstance.Campaign == nil { break } - return e.complexity.WorkflowInstance.Campaign(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Campaign(childComplexity), true case "WorkflowInstance.campaignID": - if e.complexity.WorkflowInstance.CampaignID == nil { + if e.ComplexityRoot.WorkflowInstance.CampaignID == nil { break } - return e.complexity.WorkflowInstance.CampaignID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.CampaignID(childComplexity), true case "WorkflowInstance.campaignTarget": - if e.complexity.WorkflowInstance.CampaignTarget == nil { + if e.ComplexityRoot.WorkflowInstance.CampaignTarget == nil { break } - return e.complexity.WorkflowInstance.CampaignTarget(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.CampaignTarget(childComplexity), true case "WorkflowInstance.campaignTargetID": - if e.complexity.WorkflowInstance.CampaignTargetID == nil { + if e.ComplexityRoot.WorkflowInstance.CampaignTargetID == nil { break } - return e.complexity.WorkflowInstance.CampaignTargetID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.CampaignTargetID(childComplexity), true case "WorkflowInstance.context": - if e.complexity.WorkflowInstance.Context == nil { + if e.ComplexityRoot.WorkflowInstance.Context == nil { break } - return e.complexity.WorkflowInstance.Context(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Context(childComplexity), true case "WorkflowInstance.control": - if e.complexity.WorkflowInstance.Control == nil { + if e.ComplexityRoot.WorkflowInstance.Control == nil { break } - return e.complexity.WorkflowInstance.Control(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Control(childComplexity), true case "WorkflowInstance.controlID": - if e.complexity.WorkflowInstance.ControlID == nil { + if e.ComplexityRoot.WorkflowInstance.ControlID == nil { break } - return e.complexity.WorkflowInstance.ControlID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.ControlID(childComplexity), true case "WorkflowInstance.createdAt": - if e.complexity.WorkflowInstance.CreatedAt == nil { + if e.ComplexityRoot.WorkflowInstance.CreatedAt == nil { break } - return e.complexity.WorkflowInstance.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.CreatedAt(childComplexity), true case "WorkflowInstance.createdBy": - if e.complexity.WorkflowInstance.CreatedBy == nil { + if e.ComplexityRoot.WorkflowInstance.CreatedBy == nil { break } - return e.complexity.WorkflowInstance.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.CreatedBy(childComplexity), true case "WorkflowInstance.currentActionIndex": - if e.complexity.WorkflowInstance.CurrentActionIndex == nil { + if e.ComplexityRoot.WorkflowInstance.CurrentActionIndex == nil { break } - return e.complexity.WorkflowInstance.CurrentActionIndex(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.CurrentActionIndex(childComplexity), true case "WorkflowInstance.definitionSnapshot": - if e.complexity.WorkflowInstance.DefinitionSnapshot == nil { + if e.ComplexityRoot.WorkflowInstance.DefinitionSnapshot == nil { break } - return e.complexity.WorkflowInstance.DefinitionSnapshot(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.DefinitionSnapshot(childComplexity), true case "WorkflowInstance.displayID": - if e.complexity.WorkflowInstance.DisplayID == nil { + if e.ComplexityRoot.WorkflowInstance.DisplayID == nil { break } - return e.complexity.WorkflowInstance.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.DisplayID(childComplexity), true case "WorkflowInstance.emailTemplates": - if e.complexity.WorkflowInstance.EmailTemplates == nil { + if e.ComplexityRoot.WorkflowInstance.EmailTemplates == nil { break } @@ -47914,157 +47897,157 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowInstance.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true + return e.ComplexityRoot.WorkflowInstance.EmailTemplates(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.EmailTemplateOrder), args["where"].(*generated.EmailTemplateWhereInput)), true case "WorkflowInstance.evidence": - if e.complexity.WorkflowInstance.Evidence == nil { + if e.ComplexityRoot.WorkflowInstance.Evidence == nil { break } - return e.complexity.WorkflowInstance.Evidence(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Evidence(childComplexity), true case "WorkflowInstance.evidenceID": - if e.complexity.WorkflowInstance.EvidenceID == nil { + if e.ComplexityRoot.WorkflowInstance.EvidenceID == nil { break } - return e.complexity.WorkflowInstance.EvidenceID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.EvidenceID(childComplexity), true case "WorkflowInstance.id": - if e.complexity.WorkflowInstance.ID == nil { + if e.ComplexityRoot.WorkflowInstance.ID == nil { break } - return e.complexity.WorkflowInstance.ID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.ID(childComplexity), true case "WorkflowInstance.identityHolder": - if e.complexity.WorkflowInstance.IdentityHolder == nil { + if e.ComplexityRoot.WorkflowInstance.IdentityHolder == nil { break } - return e.complexity.WorkflowInstance.IdentityHolder(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.IdentityHolder(childComplexity), true case "WorkflowInstance.identityHolderID": - if e.complexity.WorkflowInstance.IdentityHolderID == nil { + if e.ComplexityRoot.WorkflowInstance.IdentityHolderID == nil { break } - return e.complexity.WorkflowInstance.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.IdentityHolderID(childComplexity), true case "WorkflowInstance.internalPolicy": - if e.complexity.WorkflowInstance.InternalPolicy == nil { + if e.ComplexityRoot.WorkflowInstance.InternalPolicy == nil { break } - return e.complexity.WorkflowInstance.InternalPolicy(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.InternalPolicy(childComplexity), true case "WorkflowInstance.internalPolicyID": - if e.complexity.WorkflowInstance.InternalPolicyID == nil { + if e.ComplexityRoot.WorkflowInstance.InternalPolicyID == nil { break } - return e.complexity.WorkflowInstance.InternalPolicyID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.InternalPolicyID(childComplexity), true case "WorkflowInstance.lastEvaluatedAt": - if e.complexity.WorkflowInstance.LastEvaluatedAt == nil { + if e.ComplexityRoot.WorkflowInstance.LastEvaluatedAt == nil { break } - return e.complexity.WorkflowInstance.LastEvaluatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.LastEvaluatedAt(childComplexity), true case "WorkflowInstance.owner": - if e.complexity.WorkflowInstance.Owner == nil { + if e.ComplexityRoot.WorkflowInstance.Owner == nil { break } - return e.complexity.WorkflowInstance.Owner(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Owner(childComplexity), true case "WorkflowInstance.ownerID": - if e.complexity.WorkflowInstance.OwnerID == nil { + if e.ComplexityRoot.WorkflowInstance.OwnerID == nil { break } - return e.complexity.WorkflowInstance.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.OwnerID(childComplexity), true case "WorkflowInstance.platform": - if e.complexity.WorkflowInstance.Platform == nil { + if e.ComplexityRoot.WorkflowInstance.Platform == nil { break } - return e.complexity.WorkflowInstance.Platform(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Platform(childComplexity), true case "WorkflowInstance.platformID": - if e.complexity.WorkflowInstance.PlatformID == nil { + if e.ComplexityRoot.WorkflowInstance.PlatformID == nil { break } - return e.complexity.WorkflowInstance.PlatformID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.PlatformID(childComplexity), true case "WorkflowInstance.procedure": - if e.complexity.WorkflowInstance.Procedure == nil { + if e.ComplexityRoot.WorkflowInstance.Procedure == nil { break } - return e.complexity.WorkflowInstance.Procedure(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Procedure(childComplexity), true case "WorkflowInstance.procedureID": - if e.complexity.WorkflowInstance.ProcedureID == nil { + if e.ComplexityRoot.WorkflowInstance.ProcedureID == nil { break } - return e.complexity.WorkflowInstance.ProcedureID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.ProcedureID(childComplexity), true case "WorkflowInstance.proposalPreview": - if e.complexity.WorkflowInstance.ProposalPreview == nil { + if e.ComplexityRoot.WorkflowInstance.ProposalPreview == nil { break } - return e.complexity.WorkflowInstance.ProposalPreview(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.ProposalPreview(childComplexity), true case "WorkflowInstance.state": - if e.complexity.WorkflowInstance.State == nil { + if e.ComplexityRoot.WorkflowInstance.State == nil { break } - return e.complexity.WorkflowInstance.State(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.State(childComplexity), true case "WorkflowInstance.subcontrol": - if e.complexity.WorkflowInstance.Subcontrol == nil { + if e.ComplexityRoot.WorkflowInstance.Subcontrol == nil { break } - return e.complexity.WorkflowInstance.Subcontrol(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Subcontrol(childComplexity), true case "WorkflowInstance.subcontrolID": - if e.complexity.WorkflowInstance.SubcontrolID == nil { + if e.ComplexityRoot.WorkflowInstance.SubcontrolID == nil { break } - return e.complexity.WorkflowInstance.SubcontrolID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.SubcontrolID(childComplexity), true case "WorkflowInstance.tags": - if e.complexity.WorkflowInstance.Tags == nil { + if e.ComplexityRoot.WorkflowInstance.Tags == nil { break } - return e.complexity.WorkflowInstance.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.Tags(childComplexity), true case "WorkflowInstance.updatedAt": - if e.complexity.WorkflowInstance.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowInstance.UpdatedAt == nil { break } - return e.complexity.WorkflowInstance.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.UpdatedAt(childComplexity), true case "WorkflowInstance.updatedBy": - if e.complexity.WorkflowInstance.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowInstance.UpdatedBy == nil { break } - return e.complexity.WorkflowInstance.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.UpdatedBy(childComplexity), true case "WorkflowInstance.workflowAssignments": - if e.complexity.WorkflowInstance.WorkflowAssignments == nil { + if e.ComplexityRoot.WorkflowInstance.WorkflowAssignments == nil { break } @@ -48073,24 +48056,24 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowInstance.WorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true + return e.ComplexityRoot.WorkflowInstance.WorkflowAssignments(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowAssignmentOrder), args["where"].(*generated.WorkflowAssignmentWhereInput)), true case "WorkflowInstance.workflowDefinition": - if e.complexity.WorkflowInstance.WorkflowDefinition == nil { + if e.ComplexityRoot.WorkflowInstance.WorkflowDefinition == nil { break } - return e.complexity.WorkflowInstance.WorkflowDefinition(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.WorkflowDefinition(childComplexity), true case "WorkflowInstance.workflowDefinitionID": - if e.complexity.WorkflowInstance.WorkflowDefinitionID == nil { + if e.ComplexityRoot.WorkflowInstance.WorkflowDefinitionID == nil { break } - return e.complexity.WorkflowInstance.WorkflowDefinitionID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.WorkflowDefinitionID(childComplexity), true case "WorkflowInstance.workflowEvents": - if e.complexity.WorkflowInstance.WorkflowEvents == nil { + if e.ComplexityRoot.WorkflowInstance.WorkflowEvents == nil { break } @@ -48099,10 +48082,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowInstance.WorkflowEvents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput)), true + return e.ComplexityRoot.WorkflowInstance.WorkflowEvents(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowEventOrder), args["where"].(*generated.WorkflowEventWhereInput)), true case "WorkflowInstance.workflowObjectRefs": - if e.complexity.WorkflowInstance.WorkflowObjectRefs == nil { + if e.ComplexityRoot.WorkflowInstance.WorkflowObjectRefs == nil { break } @@ -48111,630 +48094,630 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.WorkflowInstance.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true + return e.ComplexityRoot.WorkflowInstance.WorkflowObjectRefs(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].([]*generated.WorkflowObjectRefOrder), args["where"].(*generated.WorkflowObjectRefWhereInput)), true case "WorkflowInstance.workflowProposalID": - if e.complexity.WorkflowInstance.WorkflowProposalID == nil { + if e.ComplexityRoot.WorkflowInstance.WorkflowProposalID == nil { break } - return e.complexity.WorkflowInstance.WorkflowProposalID(childComplexity), true + return e.ComplexityRoot.WorkflowInstance.WorkflowProposalID(childComplexity), true case "WorkflowInstanceAdminPayload.workflowInstance": - if e.complexity.WorkflowInstanceAdminPayload.WorkflowInstance == nil { + if e.ComplexityRoot.WorkflowInstanceAdminPayload.WorkflowInstance == nil { break } - return e.complexity.WorkflowInstanceAdminPayload.WorkflowInstance(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceAdminPayload.WorkflowInstance(childComplexity), true case "WorkflowInstanceBulkAdminPayload.updatedIDs": - if e.complexity.WorkflowInstanceBulkAdminPayload.UpdatedIDs == nil { + if e.ComplexityRoot.WorkflowInstanceBulkAdminPayload.UpdatedIDs == nil { break } - return e.complexity.WorkflowInstanceBulkAdminPayload.UpdatedIDs(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceBulkAdminPayload.UpdatedIDs(childComplexity), true case "WorkflowInstanceConnection.edges": - if e.complexity.WorkflowInstanceConnection.Edges == nil { + if e.ComplexityRoot.WorkflowInstanceConnection.Edges == nil { break } - return e.complexity.WorkflowInstanceConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceConnection.Edges(childComplexity), true case "WorkflowInstanceConnection.pageInfo": - if e.complexity.WorkflowInstanceConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowInstanceConnection.PageInfo == nil { break } - return e.complexity.WorkflowInstanceConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceConnection.PageInfo(childComplexity), true case "WorkflowInstanceConnection.totalCount": - if e.complexity.WorkflowInstanceConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowInstanceConnection.TotalCount == nil { break } - return e.complexity.WorkflowInstanceConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceConnection.TotalCount(childComplexity), true case "WorkflowInstanceEdge.cursor": - if e.complexity.WorkflowInstanceEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowInstanceEdge.Cursor == nil { break } - return e.complexity.WorkflowInstanceEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceEdge.Cursor(childComplexity), true case "WorkflowInstanceEdge.node": - if e.complexity.WorkflowInstanceEdge.Node == nil { + if e.ComplexityRoot.WorkflowInstanceEdge.Node == nil { break } - return e.complexity.WorkflowInstanceEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceEdge.Node(childComplexity), true case "WorkflowMetadata.objectTypes": - if e.complexity.WorkflowMetadata.ObjectTypes == nil { + if e.ComplexityRoot.WorkflowMetadata.ObjectTypes == nil { break } - return e.complexity.WorkflowMetadata.ObjectTypes(childComplexity), true + return e.ComplexityRoot.WorkflowMetadata.ObjectTypes(childComplexity), true case "WorkflowObjectRef.actionPlan": - if e.complexity.WorkflowObjectRef.ActionPlan == nil { + if e.ComplexityRoot.WorkflowObjectRef.ActionPlan == nil { break } - return e.complexity.WorkflowObjectRef.ActionPlan(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.ActionPlan(childComplexity), true case "WorkflowObjectRef.actionPlanID": - if e.complexity.WorkflowObjectRef.ActionPlanID == nil { + if e.ComplexityRoot.WorkflowObjectRef.ActionPlanID == nil { break } - return e.complexity.WorkflowObjectRef.ActionPlanID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.ActionPlanID(childComplexity), true case "WorkflowObjectRef.campaign": - if e.complexity.WorkflowObjectRef.Campaign == nil { + if e.ComplexityRoot.WorkflowObjectRef.Campaign == nil { break } - return e.complexity.WorkflowObjectRef.Campaign(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Campaign(childComplexity), true case "WorkflowObjectRef.campaignID": - if e.complexity.WorkflowObjectRef.CampaignID == nil { + if e.ComplexityRoot.WorkflowObjectRef.CampaignID == nil { break } - return e.complexity.WorkflowObjectRef.CampaignID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.CampaignID(childComplexity), true case "WorkflowObjectRef.campaignTarget": - if e.complexity.WorkflowObjectRef.CampaignTarget == nil { + if e.ComplexityRoot.WorkflowObjectRef.CampaignTarget == nil { break } - return e.complexity.WorkflowObjectRef.CampaignTarget(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.CampaignTarget(childComplexity), true case "WorkflowObjectRef.campaignTargetID": - if e.complexity.WorkflowObjectRef.CampaignTargetID == nil { + if e.ComplexityRoot.WorkflowObjectRef.CampaignTargetID == nil { break } - return e.complexity.WorkflowObjectRef.CampaignTargetID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.CampaignTargetID(childComplexity), true case "WorkflowObjectRef.control": - if e.complexity.WorkflowObjectRef.Control == nil { + if e.ComplexityRoot.WorkflowObjectRef.Control == nil { break } - return e.complexity.WorkflowObjectRef.Control(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Control(childComplexity), true case "WorkflowObjectRef.controlID": - if e.complexity.WorkflowObjectRef.ControlID == nil { + if e.ComplexityRoot.WorkflowObjectRef.ControlID == nil { break } - return e.complexity.WorkflowObjectRef.ControlID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.ControlID(childComplexity), true case "WorkflowObjectRef.createdAt": - if e.complexity.WorkflowObjectRef.CreatedAt == nil { + if e.ComplexityRoot.WorkflowObjectRef.CreatedAt == nil { break } - return e.complexity.WorkflowObjectRef.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.CreatedAt(childComplexity), true case "WorkflowObjectRef.createdBy": - if e.complexity.WorkflowObjectRef.CreatedBy == nil { + if e.ComplexityRoot.WorkflowObjectRef.CreatedBy == nil { break } - return e.complexity.WorkflowObjectRef.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.CreatedBy(childComplexity), true case "WorkflowObjectRef.directoryAccount": - if e.complexity.WorkflowObjectRef.DirectoryAccount == nil { + if e.ComplexityRoot.WorkflowObjectRef.DirectoryAccount == nil { break } - return e.complexity.WorkflowObjectRef.DirectoryAccount(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.DirectoryAccount(childComplexity), true case "WorkflowObjectRef.directoryAccountID": - if e.complexity.WorkflowObjectRef.DirectoryAccountID == nil { + if e.ComplexityRoot.WorkflowObjectRef.DirectoryAccountID == nil { break } - return e.complexity.WorkflowObjectRef.DirectoryAccountID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.DirectoryAccountID(childComplexity), true case "WorkflowObjectRef.directoryGroup": - if e.complexity.WorkflowObjectRef.DirectoryGroup == nil { + if e.ComplexityRoot.WorkflowObjectRef.DirectoryGroup == nil { break } - return e.complexity.WorkflowObjectRef.DirectoryGroup(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.DirectoryGroup(childComplexity), true case "WorkflowObjectRef.directoryGroupID": - if e.complexity.WorkflowObjectRef.DirectoryGroupID == nil { + if e.ComplexityRoot.WorkflowObjectRef.DirectoryGroupID == nil { break } - return e.complexity.WorkflowObjectRef.DirectoryGroupID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.DirectoryGroupID(childComplexity), true case "WorkflowObjectRef.directoryMembership": - if e.complexity.WorkflowObjectRef.DirectoryMembership == nil { + if e.ComplexityRoot.WorkflowObjectRef.DirectoryMembership == nil { break } - return e.complexity.WorkflowObjectRef.DirectoryMembership(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.DirectoryMembership(childComplexity), true case "WorkflowObjectRef.directoryMembershipID": - if e.complexity.WorkflowObjectRef.DirectoryMembershipID == nil { + if e.ComplexityRoot.WorkflowObjectRef.DirectoryMembershipID == nil { break } - return e.complexity.WorkflowObjectRef.DirectoryMembershipID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.DirectoryMembershipID(childComplexity), true case "WorkflowObjectRef.displayID": - if e.complexity.WorkflowObjectRef.DisplayID == nil { + if e.ComplexityRoot.WorkflowObjectRef.DisplayID == nil { break } - return e.complexity.WorkflowObjectRef.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.DisplayID(childComplexity), true case "WorkflowObjectRef.evidence": - if e.complexity.WorkflowObjectRef.Evidence == nil { + if e.ComplexityRoot.WorkflowObjectRef.Evidence == nil { break } - return e.complexity.WorkflowObjectRef.Evidence(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Evidence(childComplexity), true case "WorkflowObjectRef.evidenceID": - if e.complexity.WorkflowObjectRef.EvidenceID == nil { + if e.ComplexityRoot.WorkflowObjectRef.EvidenceID == nil { break } - return e.complexity.WorkflowObjectRef.EvidenceID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.EvidenceID(childComplexity), true case "WorkflowObjectRef.finding": - if e.complexity.WorkflowObjectRef.Finding == nil { + if e.ComplexityRoot.WorkflowObjectRef.Finding == nil { break } - return e.complexity.WorkflowObjectRef.Finding(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Finding(childComplexity), true case "WorkflowObjectRef.findingID": - if e.complexity.WorkflowObjectRef.FindingID == nil { + if e.ComplexityRoot.WorkflowObjectRef.FindingID == nil { break } - return e.complexity.WorkflowObjectRef.FindingID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.FindingID(childComplexity), true case "WorkflowObjectRef.id": - if e.complexity.WorkflowObjectRef.ID == nil { + if e.ComplexityRoot.WorkflowObjectRef.ID == nil { break } - return e.complexity.WorkflowObjectRef.ID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.ID(childComplexity), true case "WorkflowObjectRef.identityHolder": - if e.complexity.WorkflowObjectRef.IdentityHolder == nil { + if e.ComplexityRoot.WorkflowObjectRef.IdentityHolder == nil { break } - return e.complexity.WorkflowObjectRef.IdentityHolder(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.IdentityHolder(childComplexity), true case "WorkflowObjectRef.identityHolderID": - if e.complexity.WorkflowObjectRef.IdentityHolderID == nil { + if e.ComplexityRoot.WorkflowObjectRef.IdentityHolderID == nil { break } - return e.complexity.WorkflowObjectRef.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.IdentityHolderID(childComplexity), true case "WorkflowObjectRef.internalPolicy": - if e.complexity.WorkflowObjectRef.InternalPolicy == nil { + if e.ComplexityRoot.WorkflowObjectRef.InternalPolicy == nil { break } - return e.complexity.WorkflowObjectRef.InternalPolicy(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.InternalPolicy(childComplexity), true case "WorkflowObjectRef.internalPolicyID": - if e.complexity.WorkflowObjectRef.InternalPolicyID == nil { + if e.ComplexityRoot.WorkflowObjectRef.InternalPolicyID == nil { break } - return e.complexity.WorkflowObjectRef.InternalPolicyID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.InternalPolicyID(childComplexity), true case "WorkflowObjectRef.owner": - if e.complexity.WorkflowObjectRef.Owner == nil { + if e.ComplexityRoot.WorkflowObjectRef.Owner == nil { break } - return e.complexity.WorkflowObjectRef.Owner(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Owner(childComplexity), true case "WorkflowObjectRef.ownerID": - if e.complexity.WorkflowObjectRef.OwnerID == nil { + if e.ComplexityRoot.WorkflowObjectRef.OwnerID == nil { break } - return e.complexity.WorkflowObjectRef.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.OwnerID(childComplexity), true case "WorkflowObjectRef.platform": - if e.complexity.WorkflowObjectRef.Platform == nil { + if e.ComplexityRoot.WorkflowObjectRef.Platform == nil { break } - return e.complexity.WorkflowObjectRef.Platform(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Platform(childComplexity), true case "WorkflowObjectRef.platformID": - if e.complexity.WorkflowObjectRef.PlatformID == nil { + if e.ComplexityRoot.WorkflowObjectRef.PlatformID == nil { break } - return e.complexity.WorkflowObjectRef.PlatformID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.PlatformID(childComplexity), true case "WorkflowObjectRef.procedure": - if e.complexity.WorkflowObjectRef.Procedure == nil { + if e.ComplexityRoot.WorkflowObjectRef.Procedure == nil { break } - return e.complexity.WorkflowObjectRef.Procedure(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Procedure(childComplexity), true case "WorkflowObjectRef.procedureID": - if e.complexity.WorkflowObjectRef.ProcedureID == nil { + if e.ComplexityRoot.WorkflowObjectRef.ProcedureID == nil { break } - return e.complexity.WorkflowObjectRef.ProcedureID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.ProcedureID(childComplexity), true case "WorkflowObjectRef.subcontrol": - if e.complexity.WorkflowObjectRef.Subcontrol == nil { + if e.ComplexityRoot.WorkflowObjectRef.Subcontrol == nil { break } - return e.complexity.WorkflowObjectRef.Subcontrol(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Subcontrol(childComplexity), true case "WorkflowObjectRef.subcontrolID": - if e.complexity.WorkflowObjectRef.SubcontrolID == nil { + if e.ComplexityRoot.WorkflowObjectRef.SubcontrolID == nil { break } - return e.complexity.WorkflowObjectRef.SubcontrolID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.SubcontrolID(childComplexity), true case "WorkflowObjectRef.task": - if e.complexity.WorkflowObjectRef.Task == nil { + if e.ComplexityRoot.WorkflowObjectRef.Task == nil { break } - return e.complexity.WorkflowObjectRef.Task(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.Task(childComplexity), true case "WorkflowObjectRef.taskID": - if e.complexity.WorkflowObjectRef.TaskID == nil { + if e.ComplexityRoot.WorkflowObjectRef.TaskID == nil { break } - return e.complexity.WorkflowObjectRef.TaskID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.TaskID(childComplexity), true case "WorkflowObjectRef.updatedAt": - if e.complexity.WorkflowObjectRef.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowObjectRef.UpdatedAt == nil { break } - return e.complexity.WorkflowObjectRef.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.UpdatedAt(childComplexity), true case "WorkflowObjectRef.updatedBy": - if e.complexity.WorkflowObjectRef.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowObjectRef.UpdatedBy == nil { break } - return e.complexity.WorkflowObjectRef.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.UpdatedBy(childComplexity), true case "WorkflowObjectRef.workflowInstance": - if e.complexity.WorkflowObjectRef.WorkflowInstance == nil { + if e.ComplexityRoot.WorkflowObjectRef.WorkflowInstance == nil { break } - return e.complexity.WorkflowObjectRef.WorkflowInstance(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.WorkflowInstance(childComplexity), true case "WorkflowObjectRef.workflowInstanceID": - if e.complexity.WorkflowObjectRef.WorkflowInstanceID == nil { + if e.ComplexityRoot.WorkflowObjectRef.WorkflowInstanceID == nil { break } - return e.complexity.WorkflowObjectRef.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRef.WorkflowInstanceID(childComplexity), true case "WorkflowObjectRefConnection.edges": - if e.complexity.WorkflowObjectRefConnection.Edges == nil { + if e.ComplexityRoot.WorkflowObjectRefConnection.Edges == nil { break } - return e.complexity.WorkflowObjectRefConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefConnection.Edges(childComplexity), true case "WorkflowObjectRefConnection.pageInfo": - if e.complexity.WorkflowObjectRefConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowObjectRefConnection.PageInfo == nil { break } - return e.complexity.WorkflowObjectRefConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefConnection.PageInfo(childComplexity), true case "WorkflowObjectRefConnection.totalCount": - if e.complexity.WorkflowObjectRefConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowObjectRefConnection.TotalCount == nil { break } - return e.complexity.WorkflowObjectRefConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefConnection.TotalCount(childComplexity), true case "WorkflowObjectRefEdge.cursor": - if e.complexity.WorkflowObjectRefEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowObjectRefEdge.Cursor == nil { break } - return e.complexity.WorkflowObjectRefEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefEdge.Cursor(childComplexity), true case "WorkflowObjectRefEdge.node": - if e.complexity.WorkflowObjectRefEdge.Node == nil { + if e.ComplexityRoot.WorkflowObjectRefEdge.Node == nil { break } - return e.complexity.WorkflowObjectRefEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefEdge.Node(childComplexity), true case "WorkflowObjectTypeMetadata.description": - if e.complexity.WorkflowObjectTypeMetadata.Description == nil { + if e.ComplexityRoot.WorkflowObjectTypeMetadata.Description == nil { break } - return e.complexity.WorkflowObjectTypeMetadata.Description(childComplexity), true + return e.ComplexityRoot.WorkflowObjectTypeMetadata.Description(childComplexity), true case "WorkflowObjectTypeMetadata.eligibleEdges": - if e.complexity.WorkflowObjectTypeMetadata.EligibleEdges == nil { + if e.ComplexityRoot.WorkflowObjectTypeMetadata.EligibleEdges == nil { break } - return e.complexity.WorkflowObjectTypeMetadata.EligibleEdges(childComplexity), true + return e.ComplexityRoot.WorkflowObjectTypeMetadata.EligibleEdges(childComplexity), true case "WorkflowObjectTypeMetadata.eligibleFields": - if e.complexity.WorkflowObjectTypeMetadata.EligibleFields == nil { + if e.ComplexityRoot.WorkflowObjectTypeMetadata.EligibleFields == nil { break } - return e.complexity.WorkflowObjectTypeMetadata.EligibleFields(childComplexity), true + return e.ComplexityRoot.WorkflowObjectTypeMetadata.EligibleFields(childComplexity), true case "WorkflowObjectTypeMetadata.label": - if e.complexity.WorkflowObjectTypeMetadata.Label == nil { + if e.ComplexityRoot.WorkflowObjectTypeMetadata.Label == nil { break } - return e.complexity.WorkflowObjectTypeMetadata.Label(childComplexity), true + return e.ComplexityRoot.WorkflowObjectTypeMetadata.Label(childComplexity), true case "WorkflowObjectTypeMetadata.resolverKeys": - if e.complexity.WorkflowObjectTypeMetadata.ResolverKeys == nil { + if e.ComplexityRoot.WorkflowObjectTypeMetadata.ResolverKeys == nil { break } - return e.complexity.WorkflowObjectTypeMetadata.ResolverKeys(childComplexity), true + return e.ComplexityRoot.WorkflowObjectTypeMetadata.ResolverKeys(childComplexity), true case "WorkflowObjectTypeMetadata.type": - if e.complexity.WorkflowObjectTypeMetadata.Type == nil { + if e.ComplexityRoot.WorkflowObjectTypeMetadata.Type == nil { break } - return e.complexity.WorkflowObjectTypeMetadata.Type(childComplexity), true + return e.ComplexityRoot.WorkflowObjectTypeMetadata.Type(childComplexity), true case "WorkflowProposal.approvedHash": - if e.complexity.WorkflowProposal.ApprovedHash == nil { + if e.ComplexityRoot.WorkflowProposal.ApprovedHash == nil { break } - return e.complexity.WorkflowProposal.ApprovedHash(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.ApprovedHash(childComplexity), true case "WorkflowProposal.changes": - if e.complexity.WorkflowProposal.Changes == nil { + if e.ComplexityRoot.WorkflowProposal.Changes == nil { break } - return e.complexity.WorkflowProposal.Changes(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.Changes(childComplexity), true case "WorkflowProposal.createdAt": - if e.complexity.WorkflowProposal.CreatedAt == nil { + if e.ComplexityRoot.WorkflowProposal.CreatedAt == nil { break } - return e.complexity.WorkflowProposal.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.CreatedAt(childComplexity), true case "WorkflowProposal.createdBy": - if e.complexity.WorkflowProposal.CreatedBy == nil { + if e.ComplexityRoot.WorkflowProposal.CreatedBy == nil { break } - return e.complexity.WorkflowProposal.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.CreatedBy(childComplexity), true case "WorkflowProposal.domainKey": - if e.complexity.WorkflowProposal.DomainKey == nil { + if e.ComplexityRoot.WorkflowProposal.DomainKey == nil { break } - return e.complexity.WorkflowProposal.DomainKey(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.DomainKey(childComplexity), true case "WorkflowProposal.id": - if e.complexity.WorkflowProposal.ID == nil { + if e.ComplexityRoot.WorkflowProposal.ID == nil { break } - return e.complexity.WorkflowProposal.ID(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.ID(childComplexity), true case "WorkflowProposal.owner": - if e.complexity.WorkflowProposal.Owner == nil { + if e.ComplexityRoot.WorkflowProposal.Owner == nil { break } - return e.complexity.WorkflowProposal.Owner(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.Owner(childComplexity), true case "WorkflowProposal.ownerID": - if e.complexity.WorkflowProposal.OwnerID == nil { + if e.ComplexityRoot.WorkflowProposal.OwnerID == nil { break } - return e.complexity.WorkflowProposal.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.OwnerID(childComplexity), true case "WorkflowProposal.preview": - if e.complexity.WorkflowProposal.Preview == nil { + if e.ComplexityRoot.WorkflowProposal.Preview == nil { break } - return e.complexity.WorkflowProposal.Preview(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.Preview(childComplexity), true case "WorkflowProposal.proposedHash": - if e.complexity.WorkflowProposal.ProposedHash == nil { + if e.ComplexityRoot.WorkflowProposal.ProposedHash == nil { break } - return e.complexity.WorkflowProposal.ProposedHash(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.ProposedHash(childComplexity), true case "WorkflowProposal.revision": - if e.complexity.WorkflowProposal.Revision == nil { + if e.ComplexityRoot.WorkflowProposal.Revision == nil { break } - return e.complexity.WorkflowProposal.Revision(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.Revision(childComplexity), true case "WorkflowProposal.state": - if e.complexity.WorkflowProposal.State == nil { + if e.ComplexityRoot.WorkflowProposal.State == nil { break } - return e.complexity.WorkflowProposal.State(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.State(childComplexity), true case "WorkflowProposal.submittedAt": - if e.complexity.WorkflowProposal.SubmittedAt == nil { + if e.ComplexityRoot.WorkflowProposal.SubmittedAt == nil { break } - return e.complexity.WorkflowProposal.SubmittedAt(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.SubmittedAt(childComplexity), true case "WorkflowProposal.submittedByUserID": - if e.complexity.WorkflowProposal.SubmittedByUserID == nil { + if e.ComplexityRoot.WorkflowProposal.SubmittedByUserID == nil { break } - return e.complexity.WorkflowProposal.SubmittedByUserID(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.SubmittedByUserID(childComplexity), true case "WorkflowProposal.tags": - if e.complexity.WorkflowProposal.Tags == nil { + if e.ComplexityRoot.WorkflowProposal.Tags == nil { break } - return e.complexity.WorkflowProposal.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.Tags(childComplexity), true case "WorkflowProposal.updatedAt": - if e.complexity.WorkflowProposal.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowProposal.UpdatedAt == nil { break } - return e.complexity.WorkflowProposal.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.UpdatedAt(childComplexity), true case "WorkflowProposal.updatedBy": - if e.complexity.WorkflowProposal.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowProposal.UpdatedBy == nil { break } - return e.complexity.WorkflowProposal.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.UpdatedBy(childComplexity), true case "WorkflowProposal.workflowObjectRefID": - if e.complexity.WorkflowProposal.WorkflowObjectRefID == nil { + if e.ComplexityRoot.WorkflowProposal.WorkflowObjectRefID == nil { break } - return e.complexity.WorkflowProposal.WorkflowObjectRefID(childComplexity), true + return e.ComplexityRoot.WorkflowProposal.WorkflowObjectRefID(childComplexity), true case "WorkflowProposalPreview.currentValues": - if e.complexity.WorkflowProposalPreview.CurrentValues == nil { + if e.ComplexityRoot.WorkflowProposalPreview.CurrentValues == nil { break } - return e.complexity.WorkflowProposalPreview.CurrentValues(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.CurrentValues(childComplexity), true case "WorkflowProposalPreview.diffs": - if e.complexity.WorkflowProposalPreview.Diffs == nil { + if e.ComplexityRoot.WorkflowProposalPreview.Diffs == nil { break } - return e.complexity.WorkflowProposalPreview.Diffs(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.Diffs(childComplexity), true case "WorkflowProposalPreview.domainKey": - if e.complexity.WorkflowProposalPreview.DomainKey == nil { + if e.ComplexityRoot.WorkflowProposalPreview.DomainKey == nil { break } - return e.complexity.WorkflowProposalPreview.DomainKey(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.DomainKey(childComplexity), true case "WorkflowProposalPreview.proposalID": - if e.complexity.WorkflowProposalPreview.ProposalID == nil { + if e.ComplexityRoot.WorkflowProposalPreview.ProposalID == nil { break } - return e.complexity.WorkflowProposalPreview.ProposalID(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.ProposalID(childComplexity), true case "WorkflowProposalPreview.proposedChanges": - if e.complexity.WorkflowProposalPreview.ProposedChanges == nil { + if e.ComplexityRoot.WorkflowProposalPreview.ProposedChanges == nil { break } - return e.complexity.WorkflowProposalPreview.ProposedChanges(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.ProposedChanges(childComplexity), true case "WorkflowProposalPreview.state": - if e.complexity.WorkflowProposalPreview.State == nil { + if e.ComplexityRoot.WorkflowProposalPreview.State == nil { break } - return e.complexity.WorkflowProposalPreview.State(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.State(childComplexity), true case "WorkflowProposalPreview.submittedAt": - if e.complexity.WorkflowProposalPreview.SubmittedAt == nil { + if e.ComplexityRoot.WorkflowProposalPreview.SubmittedAt == nil { break } - return e.complexity.WorkflowProposalPreview.SubmittedAt(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.SubmittedAt(childComplexity), true case "WorkflowProposalPreview.submittedByUserID": - if e.complexity.WorkflowProposalPreview.SubmittedByUserID == nil { + if e.ComplexityRoot.WorkflowProposalPreview.SubmittedByUserID == nil { break } - return e.complexity.WorkflowProposalPreview.SubmittedByUserID(childComplexity), true + return e.ComplexityRoot.WorkflowProposalPreview.SubmittedByUserID(childComplexity), true case "WorkflowProposalSubmitPayload.workflowProposal": - if e.complexity.WorkflowProposalSubmitPayload.WorkflowProposal == nil { + if e.ComplexityRoot.WorkflowProposalSubmitPayload.WorkflowProposal == nil { break } - return e.complexity.WorkflowProposalSubmitPayload.WorkflowProposal(childComplexity), true + return e.ComplexityRoot.WorkflowProposalSubmitPayload.WorkflowProposal(childComplexity), true case "WorkflowProposalUpdatePayload.workflowProposal": - if e.complexity.WorkflowProposalUpdatePayload.WorkflowProposal == nil { + if e.ComplexityRoot.WorkflowProposalUpdatePayload.WorkflowProposal == nil { break } - return e.complexity.WorkflowProposalUpdatePayload.WorkflowProposal(childComplexity), true + return e.ComplexityRoot.WorkflowProposalUpdatePayload.WorkflowProposal(childComplexity), true case "WorkflowProposalWithdrawPayload.workflowProposal": - if e.complexity.WorkflowProposalWithdrawPayload.WorkflowProposal == nil { + if e.ComplexityRoot.WorkflowProposalWithdrawPayload.WorkflowProposal == nil { break } - return e.complexity.WorkflowProposalWithdrawPayload.WorkflowProposal(childComplexity), true + return e.ComplexityRoot.WorkflowProposalWithdrawPayload.WorkflowProposal(childComplexity), true } return 0, false @@ -48742,7 +48725,7 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { opCtx := graphql.GetOperationContext(ctx) - ec := executionContext{opCtx, e, 0, 0, make(chan graphql.DeferredResult)} + ec := newExecutionContext(opCtx, e, make(chan graphql.DeferredResult)) inputUnmarshalMap := graphql.BuildUnmarshalerMap( ec.unmarshalInputAPITokenOrder, ec.unmarshalInputAPITokenWhereInput, @@ -49135,9 +49118,9 @@ func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { ctx = graphql.WithUnmarshalerMap(ctx, inputUnmarshalMap) data = ec._Query(ctx, opCtx.Operation.SelectionSet) } else { - if atomic.LoadInt32(&ec.pendingDeferred) > 0 { - result := <-ec.deferredResults - atomic.AddInt32(&ec.pendingDeferred, -1) + if atomic.LoadInt32(&ec.PendingDeferred) > 0 { + result := <-ec.DeferredResults + atomic.AddInt32(&ec.PendingDeferred, -1) data = result.Result response.Path = result.Path response.Label = result.Label @@ -49149,8 +49132,8 @@ func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { var buf bytes.Buffer data.MarshalGQL(&buf) response.Data = buf.Bytes() - if atomic.LoadInt32(&ec.deferred) > 0 { - hasNext := atomic.LoadInt32(&ec.pendingDeferred) > 0 + if atomic.LoadInt32(&ec.Deferred) > 0 { + hasNext := atomic.LoadInt32(&ec.PendingDeferred) > 0 response.HasNext = &hasNext } @@ -49195,44 +49178,22 @@ func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { } type executionContext struct { - *graphql.OperationContext - *executableSchema - deferred int32 - pendingDeferred int32 - deferredResults chan graphql.DeferredResult -} - -func (ec *executionContext) processDeferredGroup(dg graphql.DeferredGroup) { - atomic.AddInt32(&ec.pendingDeferred, 1) - go func() { - ctx := graphql.WithFreshResponseContext(dg.Context) - dg.FieldSet.Dispatch(ctx) - ds := graphql.DeferredResult{ - Path: dg.Path, - Label: dg.Label, - Result: dg.FieldSet, - Errors: graphql.GetErrors(ctx), - } - // null fields should bubble up - if dg.FieldSet.Invalids > 0 { - ds.Result = graphql.Null - } - ec.deferredResults <- ds - }() -} - -func (ec *executionContext) introspectSchema() (*introspection.Schema, error) { - if ec.DisableIntrospection { - return nil, errors.New("introspection disabled") - } - return introspection.WrapSchema(ec.Schema()), nil -} - -func (ec *executionContext) introspectType(name string) (*introspection.Type, error) { - if ec.DisableIntrospection { - return nil, errors.New("introspection disabled") + *graphql.ExecutionContextState[ResolverRoot, DirectiveRoot, ComplexityRoot] +} + +func newExecutionContext( + opCtx *graphql.OperationContext, + execSchema *executableSchema, + deferredResults chan graphql.DeferredResult, +) executionContext { + return executionContext{ + ExecutionContextState: graphql.NewExecutionContextState[ResolverRoot, DirectiveRoot, ComplexityRoot]( + opCtx, + (*graphql.ExecutableSchemaState[ResolverRoot, DirectiveRoot, ComplexityRoot])(execSchema), + parsedSchema, + deferredResults, + ), } - return introspection.WrapTypeFromDef(ec.Schema(), ec.Schema().Types[name]), nil } var sources = []*ast.Source{ diff --git a/internal/graphapi/generated/scan.generated.go b/internal/graphapi/generated/scan.generated.go index cf60e04eab..f443279a6b 100644 --- a/internal/graphapi/generated/scan.generated.go +++ b/internal/graphapi/generated/scan.generated.go @@ -689,10 +689,10 @@ func (ec *executionContext) _ScanBulkCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -728,10 +728,10 @@ func (ec *executionContext) _ScanBulkDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -766,10 +766,10 @@ func (ec *executionContext) _ScanBulkUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -805,10 +805,10 @@ func (ec *executionContext) _ScanCreatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -844,10 +844,10 @@ func (ec *executionContext) _ScanDeletePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -883,10 +883,10 @@ func (ec *executionContext) _ScanUpdatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/scheduledjob.generated.go b/internal/graphapi/generated/scheduledjob.generated.go index bd0b2af4de..80aca5ec30 100644 --- a/internal/graphapi/generated/scheduledjob.generated.go +++ b/internal/graphapi/generated/scheduledjob.generated.go @@ -409,10 +409,10 @@ func (ec *executionContext) _ScheduledJobBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448,10 +448,10 @@ func (ec *executionContext) _ScheduledJobBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -486,10 +486,10 @@ func (ec *executionContext) _ScheduledJobBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -525,10 +525,10 @@ func (ec *executionContext) _ScheduledJobCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -564,10 +564,10 @@ func (ec *executionContext) _ScheduledJobDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -603,10 +603,10 @@ func (ec *executionContext) _ScheduledJobUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/scheduledjobrun.generated.go b/internal/graphapi/generated/scheduledjobrun.generated.go index 380f2fe6e4..42bd63742e 100644 --- a/internal/graphapi/generated/scheduledjobrun.generated.go +++ b/internal/graphapi/generated/scheduledjobrun.generated.go @@ -212,10 +212,10 @@ func (ec *executionContext) _ScheduledJobRunCreatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -251,10 +251,10 @@ func (ec *executionContext) _ScheduledJobRunDeletePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -290,10 +290,10 @@ func (ec *executionContext) _ScheduledJobRunUpdatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/search.generated.go b/internal/graphapi/generated/search.generated.go index e3e44ae3a8..c1e5c7d6cf 100644 --- a/internal/graphapi/generated/search.generated.go +++ b/internal/graphapi/generated/search.generated.go @@ -1778,10 +1778,10 @@ func (ec *executionContext) _SearchResults(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/search_ext.generated.go b/internal/graphapi/generated/search_ext.generated.go index 4552fdf17c..fa6d2370ca 100644 --- a/internal/graphapi/generated/search_ext.generated.go +++ b/internal/graphapi/generated/search_ext.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -258,10 +257,10 @@ func (ec *executionContext) _SearchContext(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -302,10 +301,10 @@ func (ec *executionContext) _SearchSnippet(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -344,39 +343,11 @@ func (ec *executionContext) marshalOSearchContext2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSearchContext2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋmodelsᚐSearchContext(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSearchContext2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋmodelsᚐSearchContext(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -391,39 +362,11 @@ func (ec *executionContext) marshalOSearchSnippet2ᚕᚖgithubᚗcomᚋtheopenla if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSearchSnippet2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋmodelsᚐSearchSnippet(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSearchSnippet2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋmodelsᚐSearchSnippet(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/generated/standard.generated.go b/internal/graphapi/generated/standard.generated.go index e6847f4290..bfce70981a 100644 --- a/internal/graphapi/generated/standard.generated.go +++ b/internal/graphapi/generated/standard.generated.go @@ -370,10 +370,10 @@ func (ec *executionContext) _StandardBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -409,10 +409,10 @@ func (ec *executionContext) _StandardCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -448,10 +448,10 @@ func (ec *executionContext) _StandardDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -487,10 +487,10 @@ func (ec *executionContext) _StandardUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/subcontrol.generated.go b/internal/graphapi/generated/subcontrol.generated.go index 1b50f05710..00719685ed 100644 --- a/internal/graphapi/generated/subcontrol.generated.go +++ b/internal/graphapi/generated/subcontrol.generated.go @@ -785,10 +785,10 @@ func (ec *executionContext) _SubcontrolBulkCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -824,10 +824,10 @@ func (ec *executionContext) _SubcontrolBulkDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -862,10 +862,10 @@ func (ec *executionContext) _SubcontrolBulkUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -901,10 +901,10 @@ func (ec *executionContext) _SubcontrolCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -940,10 +940,10 @@ func (ec *executionContext) _SubcontrolDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -979,10 +979,10 @@ func (ec *executionContext) _SubcontrolUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/subprocessor.generated.go b/internal/graphapi/generated/subprocessor.generated.go index d99b0d2d00..416aa657ac 100644 --- a/internal/graphapi/generated/subprocessor.generated.go +++ b/internal/graphapi/generated/subprocessor.generated.go @@ -417,10 +417,10 @@ func (ec *executionContext) _SubprocessorBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -456,10 +456,10 @@ func (ec *executionContext) _SubprocessorBulkDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -494,10 +494,10 @@ func (ec *executionContext) _SubprocessorBulkUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -533,10 +533,10 @@ func (ec *executionContext) _SubprocessorCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -572,10 +572,10 @@ func (ec *executionContext) _SubprocessorDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -611,10 +611,10 @@ func (ec *executionContext) _SubprocessorUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/subscriber.generated.go b/internal/graphapi/generated/subscriber.generated.go index 29aefb4301..b499aaefef 100644 --- a/internal/graphapi/generated/subscriber.generated.go +++ b/internal/graphapi/generated/subscriber.generated.go @@ -280,10 +280,10 @@ func (ec *executionContext) _SubscriberBulkCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -319,10 +319,10 @@ func (ec *executionContext) _SubscriberCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -358,10 +358,10 @@ func (ec *executionContext) _SubscriberDeletePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -397,10 +397,10 @@ func (ec *executionContext) _SubscriberUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/subscription.generated.go b/internal/graphapi/generated/subscription.generated.go index 1034602002..d891a8300f 100644 --- a/internal/graphapi/generated/subscription.generated.go +++ b/internal/graphapi/generated/subscription.generated.go @@ -37,7 +37,7 @@ func (ec *executionContext) _Subscription_notificationCreated(ctx context.Contex field, ec.fieldContext_Subscription_notificationCreated, func(ctx context.Context) (any, error) { - return ec.resolvers.Subscription().NotificationCreated(ctx) + return ec.Resolvers.Subscription().NotificationCreated(ctx) }, nil, ec.marshalNNotification2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋgeneratedᚐNotification, diff --git a/internal/graphapi/generated/tagdefinition.generated.go b/internal/graphapi/generated/tagdefinition.generated.go index efde032393..2bde3ce548 100644 --- a/internal/graphapi/generated/tagdefinition.generated.go +++ b/internal/graphapi/generated/tagdefinition.generated.go @@ -274,10 +274,10 @@ func (ec *executionContext) _TagDefinitionBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -313,10 +313,10 @@ func (ec *executionContext) _TagDefinitionCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -352,10 +352,10 @@ func (ec *executionContext) _TagDefinitionDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -391,10 +391,10 @@ func (ec *executionContext) _TagDefinitionUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/task.generated.go b/internal/graphapi/generated/task.generated.go index 0e3b452515..ca15737f77 100644 --- a/internal/graphapi/generated/task.generated.go +++ b/internal/graphapi/generated/task.generated.go @@ -673,10 +673,10 @@ func (ec *executionContext) _TaskBulkCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -712,10 +712,10 @@ func (ec *executionContext) _TaskBulkDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -750,10 +750,10 @@ func (ec *executionContext) _TaskBulkUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -789,10 +789,10 @@ func (ec *executionContext) _TaskCreatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -828,10 +828,10 @@ func (ec *executionContext) _TaskDeletePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -867,10 +867,10 @@ func (ec *executionContext) _TaskUpdatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/template.generated.go b/internal/graphapi/generated/template.generated.go index 8e2b0c9284..267d034fc0 100644 --- a/internal/graphapi/generated/template.generated.go +++ b/internal/graphapi/generated/template.generated.go @@ -513,10 +513,10 @@ func (ec *executionContext) _TemplateBulkCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -552,10 +552,10 @@ func (ec *executionContext) _TemplateBulkDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -590,10 +590,10 @@ func (ec *executionContext) _TemplateBulkUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -629,10 +629,10 @@ func (ec *executionContext) _TemplateCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -668,10 +668,10 @@ func (ec *executionContext) _TemplateDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -707,10 +707,10 @@ func (ec *executionContext) _TemplateUpdatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/tfasetting.generated.go b/internal/graphapi/generated/tfasetting.generated.go index 23559d5887..67496101ff 100644 --- a/internal/graphapi/generated/tfasetting.generated.go +++ b/internal/graphapi/generated/tfasetting.generated.go @@ -308,10 +308,10 @@ func (ec *executionContext) _TFASettingCreatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -353,10 +353,10 @@ func (ec *executionContext) _TFASettingUpdatePayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenter.generated.go b/internal/graphapi/generated/trustcenter.generated.go index 4bb904328e..941f33cfdb 100644 --- a/internal/graphapi/generated/trustcenter.generated.go +++ b/internal/graphapi/generated/trustcenter.generated.go @@ -280,10 +280,10 @@ func (ec *executionContext) _TrustCenterCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -319,10 +319,10 @@ func (ec *executionContext) _TrustCenterDeletePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -358,10 +358,10 @@ func (ec *executionContext) _TrustCenterUpdatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcentercompliance.generated.go b/internal/graphapi/generated/trustcentercompliance.generated.go index a58f7f9506..f05b44d288 100644 --- a/internal/graphapi/generated/trustcentercompliance.generated.go +++ b/internal/graphapi/generated/trustcentercompliance.generated.go @@ -369,10 +369,10 @@ func (ec *executionContext) _TrustCenterComplianceBulkCreatePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -408,10 +408,10 @@ func (ec *executionContext) _TrustCenterComplianceBulkDeletePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -446,10 +446,10 @@ func (ec *executionContext) _TrustCenterComplianceBulkUpdatePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -485,10 +485,10 @@ func (ec *executionContext) _TrustCenterComplianceCreatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -524,10 +524,10 @@ func (ec *executionContext) _TrustCenterComplianceDeletePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -563,10 +563,10 @@ func (ec *executionContext) _TrustCenterComplianceUpdatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenterdoc.generated.go b/internal/graphapi/generated/trustcenterdoc.generated.go index c8560da9ab..31ffe10e96 100644 --- a/internal/graphapi/generated/trustcenterdoc.generated.go +++ b/internal/graphapi/generated/trustcenterdoc.generated.go @@ -457,10 +457,10 @@ func (ec *executionContext) _TrustCenterDocBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -496,10 +496,10 @@ func (ec *executionContext) _TrustCenterDocBulkDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -534,10 +534,10 @@ func (ec *executionContext) _TrustCenterDocBulkUpdatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -573,10 +573,10 @@ func (ec *executionContext) _TrustCenterDocCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -612,10 +612,10 @@ func (ec *executionContext) _TrustCenterDocDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -651,10 +651,10 @@ func (ec *executionContext) _TrustCenterDocUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenterdomain.generated.go b/internal/graphapi/generated/trustcenterdomain.generated.go index c97d062b1d..cca72a10e5 100644 --- a/internal/graphapi/generated/trustcenterdomain.generated.go +++ b/internal/graphapi/generated/trustcenterdomain.generated.go @@ -126,7 +126,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterDomainInput(ctx conte it.TrustCenterID = data } } - return it, nil } @@ -163,10 +162,10 @@ func (ec *executionContext) _TrustCenterDomainCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenterentity.generated.go b/internal/graphapi/generated/trustcenterentity.generated.go index 05813210ec..4ffa96cff8 100644 --- a/internal/graphapi/generated/trustcenterentity.generated.go +++ b/internal/graphapi/generated/trustcenterentity.generated.go @@ -274,10 +274,10 @@ func (ec *executionContext) _TrustCenterEntityBulkCreatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -313,10 +313,10 @@ func (ec *executionContext) _TrustCenterEntityCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -352,10 +352,10 @@ func (ec *executionContext) _TrustCenterEntityDeletePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -391,10 +391,10 @@ func (ec *executionContext) _TrustCenterEntityUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenterfaq.generated.go b/internal/graphapi/generated/trustcenterfaq.generated.go index 0203709a8e..45d366da7f 100644 --- a/internal/graphapi/generated/trustcenterfaq.generated.go +++ b/internal/graphapi/generated/trustcenterfaq.generated.go @@ -401,10 +401,10 @@ func (ec *executionContext) _TrustCenterFAQBulkCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -440,10 +440,10 @@ func (ec *executionContext) _TrustCenterFAQBulkDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -478,10 +478,10 @@ func (ec *executionContext) _TrustCenterFAQBulkUpdatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -517,10 +517,10 @@ func (ec *executionContext) _TrustCenterFAQCreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -556,10 +556,10 @@ func (ec *executionContext) _TrustCenterFAQDeletePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -595,10 +595,10 @@ func (ec *executionContext) _TrustCenterFAQUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenternda.generated.go b/internal/graphapi/generated/trustcenternda.generated.go index c51fe97ef9..e8dada4582 100644 --- a/internal/graphapi/generated/trustcenternda.generated.go +++ b/internal/graphapi/generated/trustcenternda.generated.go @@ -305,7 +305,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterNDAInput(ctx context. it.TrustCenterID = data } } - return it, nil } @@ -339,7 +338,6 @@ func (ec *executionContext) unmarshalInputSubmitTrustCenterNDAResponseInput(ctx it.Response = data } } - return it, nil } @@ -376,10 +374,10 @@ func (ec *executionContext) _SubmitTrustCenterNDAResponsePayload(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -415,10 +413,10 @@ func (ec *executionContext) _TrustCenterNDACreatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454,10 +452,10 @@ func (ec *executionContext) _TrustCenterNDAUpdatePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenterndarequest.generated.go b/internal/graphapi/generated/trustcenterndarequest.generated.go index 6b9c083c69..449e79fd1a 100644 --- a/internal/graphapi/generated/trustcenterndarequest.generated.go +++ b/internal/graphapi/generated/trustcenterndarequest.generated.go @@ -424,10 +424,10 @@ func (ec *executionContext) _BulkUpdateStatusPayload(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -463,10 +463,10 @@ func (ec *executionContext) _TrustCenterAccessTokenPayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -499,10 +499,10 @@ func (ec *executionContext) _TrustCenterNDARequestBulkCreatePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -538,10 +538,10 @@ func (ec *executionContext) _TrustCenterNDARequestBulkDeletePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -577,10 +577,10 @@ func (ec *executionContext) _TrustCenterNDARequestCreatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -616,10 +616,10 @@ func (ec *executionContext) _TrustCenterNDARequestDeletePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -655,10 +655,10 @@ func (ec *executionContext) _TrustCenterNDARequestUpdatePayload(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenterpreviewsetting.generated.go b/internal/graphapi/generated/trustcenterpreviewsetting.generated.go index 95cef18dd3..a8bbf57cc5 100644 --- a/internal/graphapi/generated/trustcenterpreviewsetting.generated.go +++ b/internal/graphapi/generated/trustcenterpreviewsetting.generated.go @@ -233,7 +233,6 @@ func (ec *executionContext) unmarshalInputCreateTrustCenterPreviewSettingInput(c it.AccentColor = data } } - return it, nil } @@ -270,10 +269,10 @@ func (ec *executionContext) _TrustCenterPreviewSettingCreatePayload(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcentersetting.generated.go b/internal/graphapi/generated/trustcentersetting.generated.go index b666fb65e4..2cd27bbaef 100644 --- a/internal/graphapi/generated/trustcentersetting.generated.go +++ b/internal/graphapi/generated/trustcentersetting.generated.go @@ -376,10 +376,10 @@ func (ec *executionContext) _TrustCenterSettingBulkCreatePayload(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -415,10 +415,10 @@ func (ec *executionContext) _TrustCenterSettingCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -454,10 +454,10 @@ func (ec *executionContext) _TrustCenterSettingDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -493,10 +493,10 @@ func (ec *executionContext) _TrustCenterSettingUpdatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcentersubprocessor.generated.go b/internal/graphapi/generated/trustcentersubprocessor.generated.go index 9e1f409659..1c49a14e27 100644 --- a/internal/graphapi/generated/trustcentersubprocessor.generated.go +++ b/internal/graphapi/generated/trustcentersubprocessor.generated.go @@ -393,10 +393,10 @@ func (ec *executionContext) _TrustCenterSubprocessorBulkCreatePayload(ctx contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -432,10 +432,10 @@ func (ec *executionContext) _TrustCenterSubprocessorBulkDeletePayload(ctx contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -470,10 +470,10 @@ func (ec *executionContext) _TrustCenterSubprocessorBulkUpdatePayload(ctx contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -509,10 +509,10 @@ func (ec *executionContext) _TrustCenterSubprocessorCreatePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -548,10 +548,10 @@ func (ec *executionContext) _TrustCenterSubprocessorDeletePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -587,10 +587,10 @@ func (ec *executionContext) _TrustCenterSubprocessorUpdatePayload(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/trustcenterwatermarkconfig.generated.go b/internal/graphapi/generated/trustcenterwatermarkconfig.generated.go index e094d73ae0..50052702af 100644 --- a/internal/graphapi/generated/trustcenterwatermarkconfig.generated.go +++ b/internal/graphapi/generated/trustcenterwatermarkconfig.generated.go @@ -304,10 +304,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigBulkCreatePayload(ctx con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -343,10 +343,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigCreatePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -382,10 +382,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigDeletePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -421,10 +421,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigUpdatePayload(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/user.generated.go b/internal/graphapi/generated/user.generated.go index fcad0467b3..c6ccadecba 100644 --- a/internal/graphapi/generated/user.generated.go +++ b/internal/graphapi/generated/user.generated.go @@ -454,10 +454,10 @@ func (ec *executionContext) _UserBulkCreatePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -493,10 +493,10 @@ func (ec *executionContext) _UserCreatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -532,10 +532,10 @@ func (ec *executionContext) _UserDeletePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -571,10 +571,10 @@ func (ec *executionContext) _UserUpdatePayload(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/usersetting.generated.go b/internal/graphapi/generated/usersetting.generated.go index 8d17e9034f..7b86a212f9 100644 --- a/internal/graphapi/generated/usersetting.generated.go +++ b/internal/graphapi/generated/usersetting.generated.go @@ -396,10 +396,10 @@ func (ec *executionContext) _UserSettingBulkCreatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -435,10 +435,10 @@ func (ec *executionContext) _UserSettingBulkDeletePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -473,10 +473,10 @@ func (ec *executionContext) _UserSettingBulkUpdatePayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -512,10 +512,10 @@ func (ec *executionContext) _UserSettingCreatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -551,10 +551,10 @@ func (ec *executionContext) _UserSettingUpdatePayload(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/vulnerability.generated.go b/internal/graphapi/generated/vulnerability.generated.go index 8159263fa1..e024393924 100644 --- a/internal/graphapi/generated/vulnerability.generated.go +++ b/internal/graphapi/generated/vulnerability.generated.go @@ -574,10 +574,10 @@ func (ec *executionContext) _VulnerabilityBulkCreatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -613,10 +613,10 @@ func (ec *executionContext) _VulnerabilityCreatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -652,10 +652,10 @@ func (ec *executionContext) _VulnerabilityDeletePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -691,10 +691,10 @@ func (ec *executionContext) _VulnerabilityUpdatePayload(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/vulnerability_extended.generated.go b/internal/graphapi/generated/vulnerability_extended.generated.go index 228e778115..752355d440 100644 --- a/internal/graphapi/generated/vulnerability_extended.generated.go +++ b/internal/graphapi/generated/vulnerability_extended.generated.go @@ -398,7 +398,6 @@ func (ec *executionContext) unmarshalInputResolveVulnerabilityInput(ctx context. it.ReviewState = data } } - return it, nil } @@ -437,10 +436,10 @@ func (ec *executionContext) _VulnerabilityResolvePayload(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/vulnerability_summary.generated.go b/internal/graphapi/generated/vulnerability_summary.generated.go index 26189c7f68..f5a7e4d478 100644 --- a/internal/graphapi/generated/vulnerability_summary.generated.go +++ b/internal/graphapi/generated/vulnerability_summary.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -273,10 +272,10 @@ func (ec *executionContext) _VulnerabilitySummary(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -317,10 +316,10 @@ func (ec *executionContext) _VulnerabilitySummaryBucket(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -350,39 +349,11 @@ func (ec *executionContext) marshalNVulnerabilitySummary2ᚖgithubᚗcomᚋtheop } func (ec *executionContext) marshalNVulnerabilitySummaryBucket2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilitySummaryBucketᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.VulnerabilitySummaryBucket) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNVulnerabilitySummaryBucket2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilitySummaryBucket(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNVulnerabilitySummaryBucket2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐVulnerabilitySummaryBucket(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/generated/webauthn.generated.go b/internal/graphapi/generated/webauthn.generated.go index 2b8404e828..c347e2ede1 100644 --- a/internal/graphapi/generated/webauthn.generated.go +++ b/internal/graphapi/generated/webauthn.generated.go @@ -93,10 +93,10 @@ func (ec *executionContext) _WebauthnDeletePayload(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/workflowadmin.generated.go b/internal/graphapi/generated/workflowadmin.generated.go index 41fa14b482..581eb8f5f9 100644 --- a/internal/graphapi/generated/workflowadmin.generated.go +++ b/internal/graphapi/generated/workflowadmin.generated.go @@ -293,7 +293,6 @@ func (ec *executionContext) unmarshalInputReassignWorkflowAssignmentInput(ctx co it.Targets = data } } - return it, nil } @@ -334,7 +333,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentTargetInput(ctx cont it.ResolverKey = data } } - return it, nil } @@ -371,10 +369,10 @@ func (ec *executionContext) _WorkflowAssignmentReassignPayload(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -410,10 +408,10 @@ func (ec *executionContext) _WorkflowInstanceAdminPayload(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -449,10 +447,10 @@ func (ec *executionContext) _WorkflowInstanceBulkAdminPayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/workflowassignmentextended.generated.go b/internal/graphapi/generated/workflowassignmentextended.generated.go index a735a0d4f2..ba583b1d00 100644 --- a/internal/graphapi/generated/workflowassignmentextended.generated.go +++ b/internal/graphapi/generated/workflowassignmentextended.generated.go @@ -238,10 +238,10 @@ func (ec *executionContext) _WorkflowAssignmentApprovePayload(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -277,10 +277,10 @@ func (ec *executionContext) _WorkflowAssignmentRejectPayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/workflowdefinition.generated.go b/internal/graphapi/generated/workflowdefinition.generated.go index 2b13fdcf58..90b0ad420f 100644 --- a/internal/graphapi/generated/workflowdefinition.generated.go +++ b/internal/graphapi/generated/workflowdefinition.generated.go @@ -352,10 +352,10 @@ func (ec *executionContext) _WorkflowDefinitionBulkCreatePayload(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -391,10 +391,10 @@ func (ec *executionContext) _WorkflowDefinitionCreatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -430,10 +430,10 @@ func (ec *executionContext) _WorkflowDefinitionDeletePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -469,10 +469,10 @@ func (ec *executionContext) _WorkflowDefinitionUpdatePayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/generated/workflowdefinitionextended.generated.go b/internal/graphapi/generated/workflowdefinitionextended.generated.go index bd6eae0219..c8bb9cda86 100644 --- a/internal/graphapi/generated/workflowdefinitionextended.generated.go +++ b/internal/graphapi/generated/workflowdefinitionextended.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -388,10 +387,10 @@ func (ec *executionContext) _WorkflowFieldMetadata(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -427,10 +426,10 @@ func (ec *executionContext) _WorkflowMetadata(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -491,10 +490,10 @@ func (ec *executionContext) _WorkflowObjectTypeMetadata(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -510,39 +509,11 @@ func (ec *executionContext) _WorkflowObjectTypeMetadata(ctx context.Context, sel // region ***************************** type.gotpl ***************************** func (ec *executionContext) marshalNWorkflowFieldMetadata2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowFieldMetadataᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.WorkflowFieldMetadata) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowFieldMetadata2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowFieldMetadata(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowFieldMetadata2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowFieldMetadata(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -578,39 +549,11 @@ func (ec *executionContext) marshalNWorkflowMetadata2ᚖgithubᚗcomᚋtheopenla } func (ec *executionContext) marshalNWorkflowObjectTypeMetadata2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowObjectTypeMetadataᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.WorkflowObjectTypeMetadata) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowObjectTypeMetadata2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowObjectTypeMetadata(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowObjectTypeMetadata2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowObjectTypeMetadata(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/generated/workflowinstanceextended.generated.go b/internal/graphapi/generated/workflowinstanceextended.generated.go index 65f5f7287c..6cc62c7787 100644 --- a/internal/graphapi/generated/workflowinstanceextended.generated.go +++ b/internal/graphapi/generated/workflowinstanceextended.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -497,10 +496,10 @@ func (ec *executionContext) _WorkflowFieldDiff(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -559,10 +558,10 @@ func (ec *executionContext) _WorkflowProposalPreview(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -578,39 +577,11 @@ func (ec *executionContext) _WorkflowProposalPreview(ctx context.Context, sel as // region ***************************** type.gotpl ***************************** func (ec *executionContext) marshalNWorkflowFieldDiff2ᚕᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowFieldDiffᚄ(ctx context.Context, sel ast.SelectionSet, v []*model.WorkflowFieldDiff) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowFieldDiff2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowFieldDiff(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowFieldDiff2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋgraphapiᚋmodelᚐWorkflowFieldDiff(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -670,39 +641,11 @@ func (ec *executionContext) marshalOWorkflowProposalState2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowProposalState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowProposalState(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowProposalState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowProposalState(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/generated/workflowproposalextended.generated.go b/internal/graphapi/generated/workflowproposalextended.generated.go index e4ad73052e..d233e2964e 100644 --- a/internal/graphapi/generated/workflowproposalextended.generated.go +++ b/internal/graphapi/generated/workflowproposalextended.generated.go @@ -262,7 +262,6 @@ func (ec *executionContext) unmarshalInputUpdateWorkflowProposalChangesInput(ctx it.Changes = data } } - return it, nil } @@ -299,10 +298,10 @@ func (ec *executionContext) _WorkflowProposalSubmitPayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -338,10 +337,10 @@ func (ec *executionContext) _WorkflowProposalUpdatePayload(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -377,10 +376,10 @@ func (ec *executionContext) _WorkflowProposalWithdrawPayload(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, diff --git a/internal/graphapi/historygenerated/ent.generated.go b/internal/graphapi/historygenerated/ent.generated.go index d0d7f6d801..ee162d2e34 100644 --- a/internal/graphapi/historygenerated/ent.generated.go +++ b/internal/graphapi/historygenerated/ent.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "time" @@ -3734,11 +3733,11 @@ func (ec *executionContext) _ActionPlanHistory_internalNotes(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -3781,11 +3780,11 @@ func (ec *executionContext) _ActionPlanHistory_systemInternalID(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -7111,11 +7110,11 @@ func (ec *executionContext) _AssetHistory_internalNotes(ctx context.Context, fie var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -7158,11 +7157,11 @@ func (ec *executionContext) _AssetHistory_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -11156,11 +11155,11 @@ func (ec *executionContext) _ControlHistory_title(ctx context.Context, field gra var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -11203,11 +11202,11 @@ func (ec *executionContext) _ControlHistory_description(ctx context.Context, fie var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -11424,11 +11423,11 @@ func (ec *executionContext) _ControlHistory_source(ctx context.Context, field gr var zeroVal enums.ControlSource return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal enums.ControlSource return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -11471,11 +11470,11 @@ func (ec *executionContext) _ControlHistory_referenceFramework(ctx context.Conte var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -11518,11 +11517,11 @@ func (ec *executionContext) _ControlHistory_referenceFrameworkRevision(ctx conte var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -11565,11 +11564,11 @@ func (ec *executionContext) _ControlHistory_category(ctx context.Context, field var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -11612,11 +11611,11 @@ func (ec *executionContext) _ControlHistory_categoryID(ctx context.Context, fiel var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -11659,11 +11658,11 @@ func (ec *executionContext) _ControlHistory_subcategory(ctx context.Context, fie var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -12083,11 +12082,11 @@ func (ec *executionContext) _ControlHistory_internalNotes(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -12130,11 +12129,11 @@ func (ec *executionContext) _ControlHistory_systemInternalID(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -12380,11 +12379,11 @@ func (ec *executionContext) _ControlHistory_refCode(ctx context.Context, field g var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -13096,11 +13095,11 @@ func (ec *executionContext) _ControlImplementationHistory_internalNotes(ctx cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -13143,11 +13142,11 @@ func (ec *executionContext) _ControlImplementationHistory_systemInternalID(ctx c var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -13942,11 +13941,11 @@ func (ec *executionContext) _ControlObjectiveHistory_internalNotes(ctx context.C var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -13989,11 +13988,11 @@ func (ec *executionContext) _ControlObjectiveHistory_systemInternalID(ctx contex var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -14796,11 +14795,11 @@ func (ec *executionContext) _CustomDomainHistory_internalNotes(ctx context.Conte var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -14843,11 +14842,11 @@ func (ec *executionContext) _CustomDomainHistory_systemInternalID(ctx context.Co var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -21811,11 +21810,11 @@ func (ec *executionContext) _EmailTemplateHistory_internalNotes(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -21858,11 +21857,11 @@ func (ec *executionContext) _EmailTemplateHistory_systemInternalID(ctx context.C var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -23172,11 +23171,11 @@ func (ec *executionContext) _EntityHistory_internalNotes(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -23219,11 +23218,11 @@ func (ec *executionContext) _EntityHistory_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -25059,11 +25058,11 @@ func (ec *executionContext) _EntityTypeHistory_internalNotes(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -25106,11 +25105,11 @@ func (ec *executionContext) _EntityTypeHistory_systemInternalID(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -26601,11 +26600,11 @@ func (ec *executionContext) _FileHistory_internalNotes(ctx context.Context, fiel var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -26648,11 +26647,11 @@ func (ec *executionContext) _FileHistory_systemInternalID(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -28571,11 +28570,11 @@ func (ec *executionContext) _FindingHistory_internalNotes(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -28618,11 +28617,11 @@ func (ec *executionContext) _FindingHistory_systemInternalID(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -32301,11 +32300,11 @@ func (ec *executionContext) _HushHistory_internalNotes(ctx context.Context, fiel var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -32348,11 +32347,11 @@ func (ec *executionContext) _HushHistory_systemInternalID(ctx context.Context, f var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -34490,11 +34489,11 @@ func (ec *executionContext) _IntegrationHistory_internalNotes(ctx context.Contex var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -34537,11 +34536,11 @@ func (ec *executionContext) _IntegrationHistory_systemInternalID(ctx context.Con var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -35460,11 +35459,11 @@ func (ec *executionContext) _InternalPolicyHistory_internalNotes(ctx context.Con var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -35507,11 +35506,11 @@ func (ec *executionContext) _InternalPolicyHistory_systemInternalID(ctx context. var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -36870,11 +36869,11 @@ func (ec *executionContext) _JobTemplateHistory_internalNotes(ctx context.Contex var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -36917,11 +36916,11 @@ func (ec *executionContext) _JobTemplateHistory_systemInternalID(ctx context.Con var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -38135,11 +38134,11 @@ func (ec *executionContext) _MappedControlHistory_internalNotes(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -38182,11 +38181,11 @@ func (ec *executionContext) _MappedControlHistory_systemInternalID(ctx context.C var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -38919,11 +38918,11 @@ func (ec *executionContext) _NarrativeHistory_internalNotes(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -38966,11 +38965,11 @@ func (ec *executionContext) _NarrativeHistory_systemInternalID(ctx context.Conte var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -41370,11 +41369,11 @@ func (ec *executionContext) _NotificationTemplateHistory_internalNotes(ctx conte var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -41417,11 +41416,11 @@ func (ec *executionContext) _NotificationTemplateHistory_systemInternalID(ctx co var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -48317,11 +48316,11 @@ func (ec *executionContext) _ProcedureHistory_internalNotes(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -48364,11 +48363,11 @@ func (ec *executionContext) _ProcedureHistory_systemInternalID(ctx context.Conte var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -50320,7 +50319,7 @@ func (ec *executionContext) _Query_node(ctx context.Context, field graphql.Colle ec.fieldContext_Query_node, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Node(ctx, fc.Args["id"].(string)) + return ec.Resolvers.Query().Node(ctx, fc.Args["id"].(string)) }, nil, ec.marshalONode2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoder, @@ -50361,7 +50360,7 @@ func (ec *executionContext) _Query_nodes(ctx context.Context, field graphql.Coll ec.fieldContext_Query_nodes, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().Nodes(ctx, fc.Args["ids"].([]string)) + return ec.Resolvers.Query().Nodes(ctx, fc.Args["ids"].([]string)) }, nil, ec.marshalNNode2ᚕgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoder, @@ -50402,7 +50401,7 @@ func (ec *executionContext) _Query_actionPlanHistories(ctx context.Context, fiel ec.fieldContext_Query_actionPlanHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ActionPlanHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ActionPlanHistoryOrder), fc.Args["where"].(*historygenerated.ActionPlanHistoryWhereInput)) + return ec.Resolvers.Query().ActionPlanHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ActionPlanHistoryOrder), fc.Args["where"].(*historygenerated.ActionPlanHistoryWhereInput)) }, nil, ec.marshalNActionPlanHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐActionPlanHistoryConnection, @@ -50451,7 +50450,7 @@ func (ec *executionContext) _Query_assessmentHistories(ctx context.Context, fiel ec.fieldContext_Query_assessmentHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssessmentHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.AssessmentHistoryOrder), fc.Args["where"].(*historygenerated.AssessmentHistoryWhereInput)) + return ec.Resolvers.Query().AssessmentHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.AssessmentHistoryOrder), fc.Args["where"].(*historygenerated.AssessmentHistoryWhereInput)) }, nil, ec.marshalNAssessmentHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssessmentHistoryConnection, @@ -50500,7 +50499,7 @@ func (ec *executionContext) _Query_assessmentResponseHistories(ctx context.Conte ec.fieldContext_Query_assessmentResponseHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssessmentResponseHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.AssessmentResponseHistoryOrder), fc.Args["where"].(*historygenerated.AssessmentResponseHistoryWhereInput)) + return ec.Resolvers.Query().AssessmentResponseHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.AssessmentResponseHistoryOrder), fc.Args["where"].(*historygenerated.AssessmentResponseHistoryWhereInput)) }, nil, ec.marshalNAssessmentResponseHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssessmentResponseHistoryConnection, @@ -50549,7 +50548,7 @@ func (ec *executionContext) _Query_assetHistories(ctx context.Context, field gra ec.fieldContext_Query_assetHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().AssetHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.AssetHistoryOrder), fc.Args["where"].(*historygenerated.AssetHistoryWhereInput)) + return ec.Resolvers.Query().AssetHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.AssetHistoryOrder), fc.Args["where"].(*historygenerated.AssetHistoryWhereInput)) }, nil, ec.marshalNAssetHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssetHistoryConnection, @@ -50598,7 +50597,7 @@ func (ec *executionContext) _Query_campaignHistories(ctx context.Context, field ec.fieldContext_Query_campaignHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CampaignHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.CampaignHistoryOrder), fc.Args["where"].(*historygenerated.CampaignHistoryWhereInput)) + return ec.Resolvers.Query().CampaignHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.CampaignHistoryOrder), fc.Args["where"].(*historygenerated.CampaignHistoryWhereInput)) }, nil, ec.marshalNCampaignHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCampaignHistoryConnection, @@ -50647,7 +50646,7 @@ func (ec *executionContext) _Query_campaignTargetHistories(ctx context.Context, ec.fieldContext_Query_campaignTargetHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CampaignTargetHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.CampaignTargetHistoryOrder), fc.Args["where"].(*historygenerated.CampaignTargetHistoryWhereInput)) + return ec.Resolvers.Query().CampaignTargetHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.CampaignTargetHistoryOrder), fc.Args["where"].(*historygenerated.CampaignTargetHistoryWhereInput)) }, nil, ec.marshalNCampaignTargetHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCampaignTargetHistoryConnection, @@ -50696,7 +50695,7 @@ func (ec *executionContext) _Query_contactHistories(ctx context.Context, field g ec.fieldContext_Query_contactHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ContactHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ContactHistoryOrder), fc.Args["where"].(*historygenerated.ContactHistoryWhereInput)) + return ec.Resolvers.Query().ContactHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ContactHistoryOrder), fc.Args["where"].(*historygenerated.ContactHistoryWhereInput)) }, nil, ec.marshalNContactHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐContactHistoryConnection, @@ -50745,7 +50744,7 @@ func (ec *executionContext) _Query_controlHistories(ctx context.Context, field g ec.fieldContext_Query_controlHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ControlHistoryOrder), fc.Args["where"].(*historygenerated.ControlHistoryWhereInput)) + return ec.Resolvers.Query().ControlHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ControlHistoryOrder), fc.Args["where"].(*historygenerated.ControlHistoryWhereInput)) }, nil, ec.marshalNControlHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlHistoryConnection, @@ -50794,7 +50793,7 @@ func (ec *executionContext) _Query_controlImplementationHistories(ctx context.Co ec.fieldContext_Query_controlImplementationHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlImplementationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ControlImplementationHistoryOrder), fc.Args["where"].(*historygenerated.ControlImplementationHistoryWhereInput)) + return ec.Resolvers.Query().ControlImplementationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ControlImplementationHistoryOrder), fc.Args["where"].(*historygenerated.ControlImplementationHistoryWhereInput)) }, nil, ec.marshalNControlImplementationHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlImplementationHistoryConnection, @@ -50843,7 +50842,7 @@ func (ec *executionContext) _Query_controlObjectiveHistories(ctx context.Context ec.fieldContext_Query_controlObjectiveHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ControlObjectiveHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ControlObjectiveHistoryOrder), fc.Args["where"].(*historygenerated.ControlObjectiveHistoryWhereInput)) + return ec.Resolvers.Query().ControlObjectiveHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ControlObjectiveHistoryOrder), fc.Args["where"].(*historygenerated.ControlObjectiveHistoryWhereInput)) }, nil, ec.marshalNControlObjectiveHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlObjectiveHistoryConnection, @@ -50892,7 +50891,7 @@ func (ec *executionContext) _Query_customDomainHistories(ctx context.Context, fi ec.fieldContext_Query_customDomainHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().CustomDomainHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.CustomDomainHistoryOrder), fc.Args["where"].(*historygenerated.CustomDomainHistoryWhereInput)) + return ec.Resolvers.Query().CustomDomainHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.CustomDomainHistoryOrder), fc.Args["where"].(*historygenerated.CustomDomainHistoryWhereInput)) }, nil, ec.marshalNCustomDomainHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCustomDomainHistoryConnection, @@ -50941,7 +50940,7 @@ func (ec *executionContext) _Query_dnsVerificationHistories(ctx context.Context, ec.fieldContext_Query_dnsVerificationHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DNSVerificationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DNSVerificationHistoryOrder), fc.Args["where"].(*historygenerated.DNSVerificationHistoryWhereInput)) + return ec.Resolvers.Query().DNSVerificationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DNSVerificationHistoryOrder), fc.Args["where"].(*historygenerated.DNSVerificationHistoryWhereInput)) }, nil, ec.marshalNDNSVerificationHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDNSVerificationHistoryConnection, @@ -50990,7 +50989,7 @@ func (ec *executionContext) _Query_directoryAccountHistories(ctx context.Context ec.fieldContext_Query_directoryAccountHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryAccountHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DirectoryAccountHistoryOrder), fc.Args["where"].(*historygenerated.DirectoryAccountHistoryWhereInput)) + return ec.Resolvers.Query().DirectoryAccountHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DirectoryAccountHistoryOrder), fc.Args["where"].(*historygenerated.DirectoryAccountHistoryWhereInput)) }, nil, ec.marshalNDirectoryAccountHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryAccountHistoryConnection, @@ -51039,7 +51038,7 @@ func (ec *executionContext) _Query_directoryGroupHistories(ctx context.Context, ec.fieldContext_Query_directoryGroupHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryGroupHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DirectoryGroupHistoryOrder), fc.Args["where"].(*historygenerated.DirectoryGroupHistoryWhereInput)) + return ec.Resolvers.Query().DirectoryGroupHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DirectoryGroupHistoryOrder), fc.Args["where"].(*historygenerated.DirectoryGroupHistoryWhereInput)) }, nil, ec.marshalNDirectoryGroupHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryGroupHistoryConnection, @@ -51088,7 +51087,7 @@ func (ec *executionContext) _Query_directoryMembershipHistories(ctx context.Cont ec.fieldContext_Query_directoryMembershipHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DirectoryMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DirectoryMembershipHistoryOrder), fc.Args["where"].(*historygenerated.DirectoryMembershipHistoryWhereInput)) + return ec.Resolvers.Query().DirectoryMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DirectoryMembershipHistoryOrder), fc.Args["where"].(*historygenerated.DirectoryMembershipHistoryWhereInput)) }, nil, ec.marshalNDirectoryMembershipHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryMembershipHistoryConnection, @@ -51137,7 +51136,7 @@ func (ec *executionContext) _Query_discussionHistories(ctx context.Context, fiel ec.fieldContext_Query_discussionHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DiscussionHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DiscussionHistoryOrder), fc.Args["where"].(*historygenerated.DiscussionHistoryWhereInput)) + return ec.Resolvers.Query().DiscussionHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DiscussionHistoryOrder), fc.Args["where"].(*historygenerated.DiscussionHistoryWhereInput)) }, nil, ec.marshalNDiscussionHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDiscussionHistoryConnection, @@ -51186,7 +51185,7 @@ func (ec *executionContext) _Query_documentDataHistories(ctx context.Context, fi ec.fieldContext_Query_documentDataHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().DocumentDataHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DocumentDataHistoryOrder), fc.Args["where"].(*historygenerated.DocumentDataHistoryWhereInput)) + return ec.Resolvers.Query().DocumentDataHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.DocumentDataHistoryOrder), fc.Args["where"].(*historygenerated.DocumentDataHistoryWhereInput)) }, nil, ec.marshalNDocumentDataHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDocumentDataHistoryConnection, @@ -51235,7 +51234,7 @@ func (ec *executionContext) _Query_emailBrandingHistories(ctx context.Context, f ec.fieldContext_Query_emailBrandingHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailBrandingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EmailBrandingHistoryOrder), fc.Args["where"].(*historygenerated.EmailBrandingHistoryWhereInput)) + return ec.Resolvers.Query().EmailBrandingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EmailBrandingHistoryOrder), fc.Args["where"].(*historygenerated.EmailBrandingHistoryWhereInput)) }, nil, ec.marshalNEmailBrandingHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEmailBrandingHistoryConnection, @@ -51284,7 +51283,7 @@ func (ec *executionContext) _Query_emailTemplateHistories(ctx context.Context, f ec.fieldContext_Query_emailTemplateHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EmailTemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EmailTemplateHistoryOrder), fc.Args["where"].(*historygenerated.EmailTemplateHistoryWhereInput)) + return ec.Resolvers.Query().EmailTemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EmailTemplateHistoryOrder), fc.Args["where"].(*historygenerated.EmailTemplateHistoryWhereInput)) }, nil, ec.marshalNEmailTemplateHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEmailTemplateHistoryConnection, @@ -51333,7 +51332,7 @@ func (ec *executionContext) _Query_entityHistories(ctx context.Context, field gr ec.fieldContext_Query_entityHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EntityHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EntityHistoryOrder), fc.Args["where"].(*historygenerated.EntityHistoryWhereInput)) + return ec.Resolvers.Query().EntityHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EntityHistoryOrder), fc.Args["where"].(*historygenerated.EntityHistoryWhereInput)) }, nil, ec.marshalNEntityHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEntityHistoryConnection, @@ -51382,7 +51381,7 @@ func (ec *executionContext) _Query_entityTypeHistories(ctx context.Context, fiel ec.fieldContext_Query_entityTypeHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EntityTypeHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EntityTypeHistoryOrder), fc.Args["where"].(*historygenerated.EntityTypeHistoryWhereInput)) + return ec.Resolvers.Query().EntityTypeHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EntityTypeHistoryOrder), fc.Args["where"].(*historygenerated.EntityTypeHistoryWhereInput)) }, nil, ec.marshalNEntityTypeHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEntityTypeHistoryConnection, @@ -51431,7 +51430,7 @@ func (ec *executionContext) _Query_evidenceHistories(ctx context.Context, field ec.fieldContext_Query_evidenceHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().EvidenceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EvidenceHistoryOrder), fc.Args["where"].(*historygenerated.EvidenceHistoryWhereInput)) + return ec.Resolvers.Query().EvidenceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.EvidenceHistoryOrder), fc.Args["where"].(*historygenerated.EvidenceHistoryWhereInput)) }, nil, ec.marshalNEvidenceHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEvidenceHistoryConnection, @@ -51480,7 +51479,7 @@ func (ec *executionContext) _Query_fileHistories(ctx context.Context, field grap ec.fieldContext_Query_fileHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().FileHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.FileHistoryOrder), fc.Args["where"].(*historygenerated.FileHistoryWhereInput)) + return ec.Resolvers.Query().FileHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.FileHistoryOrder), fc.Args["where"].(*historygenerated.FileHistoryWhereInput)) }, nil, ec.marshalNFileHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFileHistoryConnection, @@ -51529,7 +51528,7 @@ func (ec *executionContext) _Query_findingControlHistories(ctx context.Context, ec.fieldContext_Query_findingControlHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().FindingControlHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.FindingControlHistoryOrder), fc.Args["where"].(*historygenerated.FindingControlHistoryWhereInput)) + return ec.Resolvers.Query().FindingControlHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.FindingControlHistoryOrder), fc.Args["where"].(*historygenerated.FindingControlHistoryWhereInput)) }, nil, ec.marshalNFindingControlHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFindingControlHistoryConnection, @@ -51578,7 +51577,7 @@ func (ec *executionContext) _Query_findingHistories(ctx context.Context, field g ec.fieldContext_Query_findingHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().FindingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.FindingHistoryOrder), fc.Args["where"].(*historygenerated.FindingHistoryWhereInput)) + return ec.Resolvers.Query().FindingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.FindingHistoryOrder), fc.Args["where"].(*historygenerated.FindingHistoryWhereInput)) }, nil, ec.marshalNFindingHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFindingHistoryConnection, @@ -51627,7 +51626,7 @@ func (ec *executionContext) _Query_groupHistories(ctx context.Context, field gra ec.fieldContext_Query_groupHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.GroupHistoryOrder), fc.Args["where"].(*historygenerated.GroupHistoryWhereInput)) + return ec.Resolvers.Query().GroupHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.GroupHistoryOrder), fc.Args["where"].(*historygenerated.GroupHistoryWhereInput)) }, nil, ec.marshalNGroupHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupHistoryConnection, @@ -51676,7 +51675,7 @@ func (ec *executionContext) _Query_groupMembershipHistories(ctx context.Context, ec.fieldContext_Query_groupMembershipHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.GroupMembershipHistoryOrder), fc.Args["where"].(*historygenerated.GroupMembershipHistoryWhereInput)) + return ec.Resolvers.Query().GroupMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.GroupMembershipHistoryOrder), fc.Args["where"].(*historygenerated.GroupMembershipHistoryWhereInput)) }, nil, ec.marshalNGroupMembershipHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupMembershipHistoryConnection, @@ -51725,7 +51724,7 @@ func (ec *executionContext) _Query_groupSettingHistories(ctx context.Context, fi ec.fieldContext_Query_groupSettingHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().GroupSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.GroupSettingHistoryOrder), fc.Args["where"].(*historygenerated.GroupSettingHistoryWhereInput)) + return ec.Resolvers.Query().GroupSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.GroupSettingHistoryOrder), fc.Args["where"].(*historygenerated.GroupSettingHistoryWhereInput)) }, nil, ec.marshalNGroupSettingHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupSettingHistoryConnection, @@ -51774,7 +51773,7 @@ func (ec *executionContext) _Query_hushHistories(ctx context.Context, field grap ec.fieldContext_Query_hushHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().HushHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.HushHistoryOrder), fc.Args["where"].(*historygenerated.HushHistoryWhereInput)) + return ec.Resolvers.Query().HushHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.HushHistoryOrder), fc.Args["where"].(*historygenerated.HushHistoryWhereInput)) }, nil, ec.marshalNHushHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐHushHistoryConnection, @@ -51823,7 +51822,7 @@ func (ec *executionContext) _Query_identityHolderHistories(ctx context.Context, ec.fieldContext_Query_identityHolderHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().IdentityHolderHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.IdentityHolderHistoryOrder), fc.Args["where"].(*historygenerated.IdentityHolderHistoryWhereInput)) + return ec.Resolvers.Query().IdentityHolderHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.IdentityHolderHistoryOrder), fc.Args["where"].(*historygenerated.IdentityHolderHistoryWhereInput)) }, nil, ec.marshalNIdentityHolderHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐIdentityHolderHistoryConnection, @@ -51872,7 +51871,7 @@ func (ec *executionContext) _Query_integrationHistories(ctx context.Context, fie ec.fieldContext_Query_integrationHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().IntegrationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.IntegrationHistoryOrder), fc.Args["where"].(*historygenerated.IntegrationHistoryWhereInput)) + return ec.Resolvers.Query().IntegrationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.IntegrationHistoryOrder), fc.Args["where"].(*historygenerated.IntegrationHistoryWhereInput)) }, nil, ec.marshalNIntegrationHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐIntegrationHistoryConnection, @@ -51921,7 +51920,7 @@ func (ec *executionContext) _Query_internalPolicyHistories(ctx context.Context, ec.fieldContext_Query_internalPolicyHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().InternalPolicyHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.InternalPolicyHistoryOrder), fc.Args["where"].(*historygenerated.InternalPolicyHistoryWhereInput)) + return ec.Resolvers.Query().InternalPolicyHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.InternalPolicyHistoryOrder), fc.Args["where"].(*historygenerated.InternalPolicyHistoryWhereInput)) }, nil, ec.marshalNInternalPolicyHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐInternalPolicyHistoryConnection, @@ -51970,7 +51969,7 @@ func (ec *executionContext) _Query_jobTemplateHistories(ctx context.Context, fie ec.fieldContext_Query_jobTemplateHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().JobTemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.JobTemplateHistoryOrder), fc.Args["where"].(*historygenerated.JobTemplateHistoryWhereInput)) + return ec.Resolvers.Query().JobTemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.JobTemplateHistoryOrder), fc.Args["where"].(*historygenerated.JobTemplateHistoryWhereInput)) }, nil, ec.marshalNJobTemplateHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐJobTemplateHistoryConnection, @@ -52019,7 +52018,7 @@ func (ec *executionContext) _Query_mappableDomainHistories(ctx context.Context, ec.fieldContext_Query_mappableDomainHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().MappableDomainHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.MappableDomainHistoryOrder), fc.Args["where"].(*historygenerated.MappableDomainHistoryWhereInput)) + return ec.Resolvers.Query().MappableDomainHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.MappableDomainHistoryOrder), fc.Args["where"].(*historygenerated.MappableDomainHistoryWhereInput)) }, nil, ec.marshalNMappableDomainHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐMappableDomainHistoryConnection, @@ -52068,7 +52067,7 @@ func (ec *executionContext) _Query_mappedControlHistories(ctx context.Context, f ec.fieldContext_Query_mappedControlHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().MappedControlHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.MappedControlHistoryOrder), fc.Args["where"].(*historygenerated.MappedControlHistoryWhereInput)) + return ec.Resolvers.Query().MappedControlHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.MappedControlHistoryOrder), fc.Args["where"].(*historygenerated.MappedControlHistoryWhereInput)) }, nil, ec.marshalNMappedControlHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐMappedControlHistoryConnection, @@ -52117,7 +52116,7 @@ func (ec *executionContext) _Query_narrativeHistories(ctx context.Context, field ec.fieldContext_Query_narrativeHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NarrativeHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NarrativeHistoryOrder), fc.Args["where"].(*historygenerated.NarrativeHistoryWhereInput)) + return ec.Resolvers.Query().NarrativeHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NarrativeHistoryOrder), fc.Args["where"].(*historygenerated.NarrativeHistoryWhereInput)) }, nil, ec.marshalNNarrativeHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNarrativeHistoryConnection, @@ -52166,7 +52165,7 @@ func (ec *executionContext) _Query_noteHistories(ctx context.Context, field grap ec.fieldContext_Query_noteHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NoteHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NoteHistoryOrder), fc.Args["where"].(*historygenerated.NoteHistoryWhereInput)) + return ec.Resolvers.Query().NoteHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NoteHistoryOrder), fc.Args["where"].(*historygenerated.NoteHistoryWhereInput)) }, nil, ec.marshalNNoteHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoteHistoryConnection, @@ -52215,7 +52214,7 @@ func (ec *executionContext) _Query_notificationPreferenceHistories(ctx context.C ec.fieldContext_Query_notificationPreferenceHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NotificationPreferenceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NotificationPreferenceHistoryOrder), fc.Args["where"].(*historygenerated.NotificationPreferenceHistoryWhereInput)) + return ec.Resolvers.Query().NotificationPreferenceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NotificationPreferenceHistoryOrder), fc.Args["where"].(*historygenerated.NotificationPreferenceHistoryWhereInput)) }, nil, ec.marshalNNotificationPreferenceHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNotificationPreferenceHistoryConnection, @@ -52264,7 +52263,7 @@ func (ec *executionContext) _Query_notificationTemplateHistories(ctx context.Con ec.fieldContext_Query_notificationTemplateHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().NotificationTemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NotificationTemplateHistoryOrder), fc.Args["where"].(*historygenerated.NotificationTemplateHistoryWhereInput)) + return ec.Resolvers.Query().NotificationTemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.NotificationTemplateHistoryOrder), fc.Args["where"].(*historygenerated.NotificationTemplateHistoryWhereInput)) }, nil, ec.marshalNNotificationTemplateHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNotificationTemplateHistoryConnection, @@ -52313,7 +52312,7 @@ func (ec *executionContext) _Query_orgMembershipHistories(ctx context.Context, f ec.fieldContext_Query_orgMembershipHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrgMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrgMembershipHistoryOrder), fc.Args["where"].(*historygenerated.OrgMembershipHistoryWhereInput)) + return ec.Resolvers.Query().OrgMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrgMembershipHistoryOrder), fc.Args["where"].(*historygenerated.OrgMembershipHistoryWhereInput)) }, nil, ec.marshalNOrgMembershipHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrgMembershipHistoryConnection, @@ -52362,7 +52361,7 @@ func (ec *executionContext) _Query_orgSubscriptionHistories(ctx context.Context, ec.fieldContext_Query_orgSubscriptionHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrgSubscriptionHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrgSubscriptionHistoryOrder), fc.Args["where"].(*historygenerated.OrgSubscriptionHistoryWhereInput)) + return ec.Resolvers.Query().OrgSubscriptionHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrgSubscriptionHistoryOrder), fc.Args["where"].(*historygenerated.OrgSubscriptionHistoryWhereInput)) }, nil, ec.marshalNOrgSubscriptionHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrgSubscriptionHistoryConnection, @@ -52411,7 +52410,7 @@ func (ec *executionContext) _Query_organizationHistories(ctx context.Context, fi ec.fieldContext_Query_organizationHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrganizationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrganizationHistoryOrder), fc.Args["where"].(*historygenerated.OrganizationHistoryWhereInput)) + return ec.Resolvers.Query().OrganizationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrganizationHistoryOrder), fc.Args["where"].(*historygenerated.OrganizationHistoryWhereInput)) }, nil, ec.marshalNOrganizationHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrganizationHistoryConnection, @@ -52460,7 +52459,7 @@ func (ec *executionContext) _Query_organizationSettingHistories(ctx context.Cont ec.fieldContext_Query_organizationSettingHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().OrganizationSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrganizationSettingHistoryOrder), fc.Args["where"].(*historygenerated.OrganizationSettingHistoryWhereInput)) + return ec.Resolvers.Query().OrganizationSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.OrganizationSettingHistoryOrder), fc.Args["where"].(*historygenerated.OrganizationSettingHistoryWhereInput)) }, nil, ec.marshalNOrganizationSettingHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrganizationSettingHistoryConnection, @@ -52509,7 +52508,7 @@ func (ec *executionContext) _Query_platformHistories(ctx context.Context, field ec.fieldContext_Query_platformHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().PlatformHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.PlatformHistoryOrder), fc.Args["where"].(*historygenerated.PlatformHistoryWhereInput)) + return ec.Resolvers.Query().PlatformHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.PlatformHistoryOrder), fc.Args["where"].(*historygenerated.PlatformHistoryWhereInput)) }, nil, ec.marshalNPlatformHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐPlatformHistoryConnection, @@ -52558,7 +52557,7 @@ func (ec *executionContext) _Query_procedureHistories(ctx context.Context, field ec.fieldContext_Query_procedureHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ProcedureHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ProcedureHistoryOrder), fc.Args["where"].(*historygenerated.ProcedureHistoryWhereInput)) + return ec.Resolvers.Query().ProcedureHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ProcedureHistoryOrder), fc.Args["where"].(*historygenerated.ProcedureHistoryWhereInput)) }, nil, ec.marshalNProcedureHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProcedureHistoryConnection, @@ -52607,7 +52606,7 @@ func (ec *executionContext) _Query_programHistories(ctx context.Context, field g ec.fieldContext_Query_programHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ProgramHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ProgramHistoryOrder), fc.Args["where"].(*historygenerated.ProgramHistoryWhereInput)) + return ec.Resolvers.Query().ProgramHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ProgramHistoryOrder), fc.Args["where"].(*historygenerated.ProgramHistoryWhereInput)) }, nil, ec.marshalNProgramHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProgramHistoryConnection, @@ -52656,7 +52655,7 @@ func (ec *executionContext) _Query_programMembershipHistories(ctx context.Contex ec.fieldContext_Query_programMembershipHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ProgramMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ProgramMembershipHistoryOrder), fc.Args["where"].(*historygenerated.ProgramMembershipHistoryWhereInput)) + return ec.Resolvers.Query().ProgramMembershipHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ProgramMembershipHistoryOrder), fc.Args["where"].(*historygenerated.ProgramMembershipHistoryWhereInput)) }, nil, ec.marshalNProgramMembershipHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProgramMembershipHistoryConnection, @@ -52705,7 +52704,7 @@ func (ec *executionContext) _Query_remediationHistories(ctx context.Context, fie ec.fieldContext_Query_remediationHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().RemediationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.RemediationHistoryOrder), fc.Args["where"].(*historygenerated.RemediationHistoryWhereInput)) + return ec.Resolvers.Query().RemediationHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.RemediationHistoryOrder), fc.Args["where"].(*historygenerated.RemediationHistoryWhereInput)) }, nil, ec.marshalNRemediationHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐRemediationHistoryConnection, @@ -52754,7 +52753,7 @@ func (ec *executionContext) _Query_reviewHistories(ctx context.Context, field gr ec.fieldContext_Query_reviewHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ReviewHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ReviewHistoryOrder), fc.Args["where"].(*historygenerated.ReviewHistoryWhereInput)) + return ec.Resolvers.Query().ReviewHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ReviewHistoryOrder), fc.Args["where"].(*historygenerated.ReviewHistoryWhereInput)) }, nil, ec.marshalNReviewHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐReviewHistoryConnection, @@ -52803,7 +52802,7 @@ func (ec *executionContext) _Query_riskHistories(ctx context.Context, field grap ec.fieldContext_Query_riskHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().RiskHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.RiskHistoryOrder), fc.Args["where"].(*historygenerated.RiskHistoryWhereInput)) + return ec.Resolvers.Query().RiskHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.RiskHistoryOrder), fc.Args["where"].(*historygenerated.RiskHistoryWhereInput)) }, nil, ec.marshalNRiskHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐRiskHistoryConnection, @@ -52852,7 +52851,7 @@ func (ec *executionContext) _Query_scanHistories(ctx context.Context, field grap ec.fieldContext_Query_scanHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ScanHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ScanHistoryOrder), fc.Args["where"].(*historygenerated.ScanHistoryWhereInput)) + return ec.Resolvers.Query().ScanHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ScanHistoryOrder), fc.Args["where"].(*historygenerated.ScanHistoryWhereInput)) }, nil, ec.marshalNScanHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐScanHistoryConnection, @@ -52901,7 +52900,7 @@ func (ec *executionContext) _Query_scheduledJobHistories(ctx context.Context, fi ec.fieldContext_Query_scheduledJobHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().ScheduledJobHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ScheduledJobHistoryOrder), fc.Args["where"].(*historygenerated.ScheduledJobHistoryWhereInput)) + return ec.Resolvers.Query().ScheduledJobHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.ScheduledJobHistoryOrder), fc.Args["where"].(*historygenerated.ScheduledJobHistoryWhereInput)) }, nil, ec.marshalNScheduledJobHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐScheduledJobHistoryConnection, @@ -52950,7 +52949,7 @@ func (ec *executionContext) _Query_standardHistories(ctx context.Context, field ec.fieldContext_Query_standardHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().StandardHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.StandardHistoryOrder), fc.Args["where"].(*historygenerated.StandardHistoryWhereInput)) + return ec.Resolvers.Query().StandardHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.StandardHistoryOrder), fc.Args["where"].(*historygenerated.StandardHistoryWhereInput)) }, nil, ec.marshalNStandardHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐStandardHistoryConnection, @@ -52999,7 +52998,7 @@ func (ec *executionContext) _Query_subcontrolHistories(ctx context.Context, fiel ec.fieldContext_Query_subcontrolHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().SubcontrolHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.SubcontrolHistoryOrder), fc.Args["where"].(*historygenerated.SubcontrolHistoryWhereInput)) + return ec.Resolvers.Query().SubcontrolHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.SubcontrolHistoryOrder), fc.Args["where"].(*historygenerated.SubcontrolHistoryWhereInput)) }, nil, ec.marshalNSubcontrolHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐSubcontrolHistoryConnection, @@ -53048,7 +53047,7 @@ func (ec *executionContext) _Query_subprocessorHistories(ctx context.Context, fi ec.fieldContext_Query_subprocessorHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().SubprocessorHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.SubprocessorHistoryOrder), fc.Args["where"].(*historygenerated.SubprocessorHistoryWhereInput)) + return ec.Resolvers.Query().SubprocessorHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.SubprocessorHistoryOrder), fc.Args["where"].(*historygenerated.SubprocessorHistoryWhereInput)) }, nil, ec.marshalNSubprocessorHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐSubprocessorHistoryConnection, @@ -53097,7 +53096,7 @@ func (ec *executionContext) _Query_taskHistories(ctx context.Context, field grap ec.fieldContext_Query_taskHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TaskHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TaskHistoryOrder), fc.Args["where"].(*historygenerated.TaskHistoryWhereInput)) + return ec.Resolvers.Query().TaskHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TaskHistoryOrder), fc.Args["where"].(*historygenerated.TaskHistoryWhereInput)) }, nil, ec.marshalNTaskHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTaskHistoryConnection, @@ -53146,7 +53145,7 @@ func (ec *executionContext) _Query_templateHistories(ctx context.Context, field ec.fieldContext_Query_templateHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TemplateHistoryOrder), fc.Args["where"].(*historygenerated.TemplateHistoryWhereInput)) + return ec.Resolvers.Query().TemplateHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TemplateHistoryOrder), fc.Args["where"].(*historygenerated.TemplateHistoryWhereInput)) }, nil, ec.marshalNTemplateHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTemplateHistoryConnection, @@ -53195,7 +53194,7 @@ func (ec *executionContext) _Query_trustCenterComplianceHistories(ctx context.Co ec.fieldContext_Query_trustCenterComplianceHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterComplianceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterComplianceHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterComplianceHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterComplianceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterComplianceHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterComplianceHistoryWhereInput)) }, nil, ec.marshalNTrustCenterComplianceHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterComplianceHistoryConnection, @@ -53244,7 +53243,7 @@ func (ec *executionContext) _Query_trustCenterDocHistories(ctx context.Context, ec.fieldContext_Query_trustCenterDocHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterDocHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterDocHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterDocHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterDocHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterDocHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterDocHistoryWhereInput)) }, nil, ec.marshalNTrustCenterDocHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterDocHistoryConnection, @@ -53293,7 +53292,7 @@ func (ec *executionContext) _Query_trustCenterEntityHistories(ctx context.Contex ec.fieldContext_Query_trustCenterEntityHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterEntityHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterEntityHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterEntityHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterEntityHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterEntityHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterEntityHistoryWhereInput)) }, nil, ec.marshalNTrustCenterEntityHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterEntityHistoryConnection, @@ -53342,7 +53341,7 @@ func (ec *executionContext) _Query_trustCenterFaqHistories(ctx context.Context, ec.fieldContext_Query_trustCenterFaqHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterFaqHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterFAQHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterFAQHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterFaqHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterFAQHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterFAQHistoryWhereInput)) }, nil, ec.marshalNTrustCenterFAQHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterFAQHistoryConnection, @@ -53391,7 +53390,7 @@ func (ec *executionContext) _Query_trustCenterHistories(ctx context.Context, fie ec.fieldContext_Query_trustCenterHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterHistoryWhereInput)) }, nil, ec.marshalNTrustCenterHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterHistoryConnection, @@ -53440,7 +53439,7 @@ func (ec *executionContext) _Query_trustCenterNdaRequestHistories(ctx context.Co ec.fieldContext_Query_trustCenterNdaRequestHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterNdaRequestHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterNDARequestHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterNDARequestHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterNdaRequestHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterNDARequestHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterNDARequestHistoryWhereInput)) }, nil, ec.marshalNTrustCenterNDARequestHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterNDARequestHistoryConnection, @@ -53489,7 +53488,7 @@ func (ec *executionContext) _Query_trustCenterSettingHistories(ctx context.Conte ec.fieldContext_Query_trustCenterSettingHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterSettingHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterSettingHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterSettingHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterSettingHistoryWhereInput)) }, nil, ec.marshalNTrustCenterSettingHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterSettingHistoryConnection, @@ -53538,7 +53537,7 @@ func (ec *executionContext) _Query_trustCenterSubprocessorHistories(ctx context. ec.fieldContext_Query_trustCenterSubprocessorHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterSubprocessorHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterSubprocessorHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterSubprocessorHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterSubprocessorHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterSubprocessorHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterSubprocessorHistoryWhereInput)) }, nil, ec.marshalNTrustCenterSubprocessorHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterSubprocessorHistoryConnection, @@ -53587,7 +53586,7 @@ func (ec *executionContext) _Query_trustCenterWatermarkConfigHistories(ctx conte ec.fieldContext_Query_trustCenterWatermarkConfigHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().TrustCenterWatermarkConfigHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterWatermarkConfigHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterWatermarkConfigHistoryWhereInput)) + return ec.Resolvers.Query().TrustCenterWatermarkConfigHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.TrustCenterWatermarkConfigHistoryOrder), fc.Args["where"].(*historygenerated.TrustCenterWatermarkConfigHistoryWhereInput)) }, nil, ec.marshalNTrustCenterWatermarkConfigHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterWatermarkConfigHistoryConnection, @@ -53636,7 +53635,7 @@ func (ec *executionContext) _Query_userHistories(ctx context.Context, field grap ec.fieldContext_Query_userHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().UserHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.UserHistoryOrder), fc.Args["where"].(*historygenerated.UserHistoryWhereInput)) + return ec.Resolvers.Query().UserHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.UserHistoryOrder), fc.Args["where"].(*historygenerated.UserHistoryWhereInput)) }, nil, ec.marshalNUserHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐUserHistoryConnection, @@ -53685,7 +53684,7 @@ func (ec *executionContext) _Query_userSettingHistories(ctx context.Context, fie ec.fieldContext_Query_userSettingHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().UserSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.UserSettingHistoryOrder), fc.Args["where"].(*historygenerated.UserSettingHistoryWhereInput)) + return ec.Resolvers.Query().UserSettingHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.UserSettingHistoryOrder), fc.Args["where"].(*historygenerated.UserSettingHistoryWhereInput)) }, nil, ec.marshalNUserSettingHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐUserSettingHistoryConnection, @@ -53734,7 +53733,7 @@ func (ec *executionContext) _Query_vulnerabilityHistories(ctx context.Context, f ec.fieldContext_Query_vulnerabilityHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().VulnerabilityHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.VulnerabilityHistoryOrder), fc.Args["where"].(*historygenerated.VulnerabilityHistoryWhereInput)) + return ec.Resolvers.Query().VulnerabilityHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.VulnerabilityHistoryOrder), fc.Args["where"].(*historygenerated.VulnerabilityHistoryWhereInput)) }, nil, ec.marshalNVulnerabilityHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐVulnerabilityHistoryConnection, @@ -53783,7 +53782,7 @@ func (ec *executionContext) _Query_workflowAssignmentHistories(ctx context.Conte ec.fieldContext_Query_workflowAssignmentHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowAssignmentHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowAssignmentHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowAssignmentHistoryWhereInput)) + return ec.Resolvers.Query().WorkflowAssignmentHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowAssignmentHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowAssignmentHistoryWhereInput)) }, nil, ec.marshalNWorkflowAssignmentHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowAssignmentHistoryConnection, @@ -53832,7 +53831,7 @@ func (ec *executionContext) _Query_workflowAssignmentTargetHistories(ctx context ec.fieldContext_Query_workflowAssignmentTargetHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowAssignmentTargetHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowAssignmentTargetHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowAssignmentTargetHistoryWhereInput)) + return ec.Resolvers.Query().WorkflowAssignmentTargetHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowAssignmentTargetHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowAssignmentTargetHistoryWhereInput)) }, nil, ec.marshalNWorkflowAssignmentTargetHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowAssignmentTargetHistoryConnection, @@ -53881,7 +53880,7 @@ func (ec *executionContext) _Query_workflowDefinitionHistories(ctx context.Conte ec.fieldContext_Query_workflowDefinitionHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowDefinitionHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowDefinitionHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowDefinitionHistoryWhereInput)) + return ec.Resolvers.Query().WorkflowDefinitionHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowDefinitionHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowDefinitionHistoryWhereInput)) }, nil, ec.marshalNWorkflowDefinitionHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowDefinitionHistoryConnection, @@ -53930,7 +53929,7 @@ func (ec *executionContext) _Query_workflowEventHistories(ctx context.Context, f ec.fieldContext_Query_workflowEventHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowEventHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowEventHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowEventHistoryWhereInput)) + return ec.Resolvers.Query().WorkflowEventHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowEventHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowEventHistoryWhereInput)) }, nil, ec.marshalNWorkflowEventHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowEventHistoryConnection, @@ -53979,7 +53978,7 @@ func (ec *executionContext) _Query_workflowInstanceHistories(ctx context.Context ec.fieldContext_Query_workflowInstanceHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowInstanceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowInstanceHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowInstanceHistoryWhereInput)) + return ec.Resolvers.Query().WorkflowInstanceHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowInstanceHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowInstanceHistoryWhereInput)) }, nil, ec.marshalNWorkflowInstanceHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowInstanceHistoryConnection, @@ -54028,7 +54027,7 @@ func (ec *executionContext) _Query_workflowObjectRefHistories(ctx context.Contex ec.fieldContext_Query_workflowObjectRefHistories, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.resolvers.Query().WorkflowObjectRefHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowObjectRefHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowObjectRefHistoryWhereInput)) + return ec.Resolvers.Query().WorkflowObjectRefHistories(ctx, fc.Args["after"].(*entgql.Cursor[string]), fc.Args["first"].(*int), fc.Args["before"].(*entgql.Cursor[string]), fc.Args["last"].(*int), fc.Args["orderBy"].(*historygenerated.WorkflowObjectRefHistoryOrder), fc.Args["where"].(*historygenerated.WorkflowObjectRefHistoryWhereInput)) }, nil, ec.marshalNWorkflowObjectRefHistoryConnection2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowObjectRefHistoryConnection, @@ -54077,7 +54076,7 @@ func (ec *executionContext) _Query___type(ctx context.Context, field graphql.Col ec.fieldContext_Query___type, func(ctx context.Context) (any, error) { fc := graphql.GetFieldContext(ctx) - return ec.introspectType(fc.Args["name"].(string)) + return ec.IntrospectType(fc.Args["name"].(string)) }, nil, ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType, @@ -54141,7 +54140,7 @@ func (ec *executionContext) _Query___schema(ctx context.Context, field graphql.C field, ec.fieldContext_Query___schema, func(ctx context.Context) (any, error) { - return ec.introspectSchema() + return ec.IntrospectSchema() }, nil, ec.marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐSchema, @@ -54543,11 +54542,11 @@ func (ec *executionContext) _RemediationHistory_internalNotes(ctx context.Contex var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -54590,11 +54589,11 @@ func (ec *executionContext) _RemediationHistory_systemInternalID(ctx context.Con var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -55860,11 +55859,11 @@ func (ec *executionContext) _ReviewHistory_internalNotes(ctx context.Context, fi var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -55907,11 +55906,11 @@ func (ec *executionContext) _ReviewHistory_systemInternalID(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -60111,11 +60110,11 @@ func (ec *executionContext) _StandardHistory_internalNotes(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -60158,11 +60157,11 @@ func (ec *executionContext) _StandardHistory_systemInternalID(ctx context.Contex var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -60466,11 +60465,11 @@ func (ec *executionContext) _StandardHistory_isPublic(ctx context.Context, field var zeroVal bool return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal bool return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -60513,11 +60512,11 @@ func (ec *executionContext) _StandardHistory_freeToUse(ctx context.Context, fiel var zeroVal bool return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal bool return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -61156,11 +61155,11 @@ func (ec *executionContext) _SubcontrolHistory_title(ctx context.Context, field var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -61203,11 +61202,11 @@ func (ec *executionContext) _SubcontrolHistory_description(ctx context.Context, var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -61424,11 +61423,11 @@ func (ec *executionContext) _SubcontrolHistory_source(ctx context.Context, field var zeroVal enums.ControlSource return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal enums.ControlSource return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -61471,11 +61470,11 @@ func (ec *executionContext) _SubcontrolHistory_referenceFramework(ctx context.Co var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -61518,11 +61517,11 @@ func (ec *executionContext) _SubcontrolHistory_referenceFrameworkRevision(ctx co var zeroVal *string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal *string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -61565,11 +61564,11 @@ func (ec *executionContext) _SubcontrolHistory_category(ctx context.Context, fie var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -61612,11 +61611,11 @@ func (ec *executionContext) _SubcontrolHistory_categoryID(ctx context.Context, f var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -61659,11 +61658,11 @@ func (ec *executionContext) _SubcontrolHistory_subcategory(ctx context.Context, var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -62083,11 +62082,11 @@ func (ec *executionContext) _SubcontrolHistory_internalNotes(ctx context.Context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -62130,11 +62129,11 @@ func (ec *executionContext) _SubcontrolHistory_systemInternalID(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -62264,11 +62263,11 @@ func (ec *executionContext) _SubcontrolHistory_refCode(ctx context.Context, fiel var zeroVal string return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal string return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -62910,11 +62909,11 @@ func (ec *executionContext) _SubprocessorHistory_internalNotes(ctx context.Conte var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -62957,11 +62956,11 @@ func (ec *executionContext) _SubprocessorHistory_systemInternalID(ctx context.Co var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -64042,11 +64041,11 @@ func (ec *executionContext) _TaskHistory_systemGenerated(ctx context.Context, fi var zeroVal bool return zeroVal, err } - if ec.directives.ExternalSource == nil { + if ec.Directives.ExternalSource == nil { var zeroVal bool return zeroVal, errors.New("directive externalSource is not implemented") } - return ec.directives.ExternalSource(ctx, obj, directive0, source) + return ec.Directives.ExternalSource(ctx, obj, directive0, source) } next = directive1 @@ -64716,11 +64715,11 @@ func (ec *executionContext) _TemplateHistory_internalNotes(ctx context.Context, var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -64763,11 +64762,11 @@ func (ec *executionContext) _TemplateHistory_systemInternalID(ctx context.Contex var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -73867,11 +73866,11 @@ func (ec *executionContext) _VulnerabilityHistory_internalNotes(ctx context.Cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -73914,11 +73913,11 @@ func (ec *executionContext) _VulnerabilityHistory_systemInternalID(ctx context.C var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -77151,11 +77150,11 @@ func (ec *executionContext) _WorkflowDefinitionHistory_internalNotes(ctx context var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -77198,11 +77197,11 @@ func (ec *executionContext) _WorkflowDefinitionHistory_systemInternalID(ctx cont var zeroVal *string return zeroVal, err } - if ec.directives.Hidden == nil { + if ec.Directives.Hidden == nil { var zeroVal *string return zeroVal, errors.New("directive hidden is not implemented") } - return ec.directives.Hidden(ctx, obj, directive0, ifArg) + return ec.Directives.Hidden(ctx, obj, directive0, ifArg) } next = directive1 @@ -80425,7 +80424,6 @@ func (ec *executionContext) unmarshalInputActionPlanHistoryOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -83175,7 +83173,6 @@ func (ec *executionContext) unmarshalInputActionPlanHistoryWhereInput(ctx contex it.SourceContainsFold = data } } - return it, nil } @@ -83213,7 +83210,6 @@ func (ec *executionContext) unmarshalInputAssessmentHistoryOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -84262,7 +84258,6 @@ func (ec *executionContext) unmarshalInputAssessmentHistoryWhereInput(ctx contex it.ResponseDueDurationNotNil = data } } - return it, nil } @@ -84300,7 +84295,6 @@ func (ec *executionContext) unmarshalInputAssessmentResponseHistoryOrder(ctx con it.Field = data } } - return it, nil } @@ -86336,7 +86330,6 @@ func (ec *executionContext) unmarshalInputAssessmentResponseHistoryWhereInput(ct it.IsDraftNEQ = data } } - return it, nil } @@ -86374,7 +86367,6 @@ func (ec *executionContext) unmarshalInputAssetHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -90622,7 +90614,6 @@ func (ec *executionContext) unmarshalInputAssetHistoryWhereInput(ctx context.Con it.PurchaseDateNotNil = data } } - return it, nil } @@ -90660,7 +90651,6 @@ func (ec *executionContext) unmarshalInputCampaignHistoryOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -93571,7 +93561,6 @@ func (ec *executionContext) unmarshalInputCampaignHistoryWhereInput(ctx context. it.EmailTemplateIDContainsFold = data } } - return it, nil } @@ -93609,7 +93598,6 @@ func (ec *executionContext) unmarshalInputCampaignTargetHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -95162,7 +95150,6 @@ func (ec *executionContext) unmarshalInputCampaignTargetHistoryWhereInput(ctx co it.CompletedAtNotNil = data } } - return it, nil } @@ -95200,7 +95187,6 @@ func (ec *executionContext) unmarshalInputContactHistoryOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -96613,7 +96599,6 @@ func (ec *executionContext) unmarshalInputContactHistoryWhereInput(ctx context.C it.StatusNotIn = data } } - return it, nil } @@ -96651,7 +96636,6 @@ func (ec *executionContext) unmarshalInputControlHistoryOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -100003,7 +99987,6 @@ func (ec *executionContext) unmarshalInputControlHistoryWhereInput(ctx context.C it.IsTrustCenterControlNotNil = data } } - return it, nil } @@ -100041,7 +100024,6 @@ func (ec *executionContext) unmarshalInputControlImplementationHistoryOrder(ctx it.Field = data } } - return it, nil } @@ -101349,7 +101331,6 @@ func (ec *executionContext) unmarshalInputControlImplementationHistoryWhereInput it.DetailsContainsFold = data } } - return it, nil } @@ -101387,7 +101368,6 @@ func (ec *executionContext) unmarshalInputControlObjectiveHistoryOrder(ctx conte it.Field = data } } - return it, nil } @@ -103171,7 +103151,6 @@ func (ec *executionContext) unmarshalInputControlObjectiveHistoryWhereInput(ctx it.SubcategoryContainsFold = data } } - return it, nil } @@ -103209,7 +103188,6 @@ func (ec *executionContext) unmarshalInputCustomDomainHistoryOrder(ctx context.C it.Field = data } } - return it, nil } @@ -104594,7 +104572,6 @@ func (ec *executionContext) unmarshalInputCustomDomainHistoryWhereInput(ctx cont it.TrustCenterIDContainsFold = data } } - return it, nil } @@ -104632,7 +104609,6 @@ func (ec *executionContext) unmarshalInputDNSVerificationHistoryOrder(ctx contex it.Field = data } } - return it, nil } @@ -106136,7 +106112,6 @@ func (ec *executionContext) unmarshalInputDNSVerificationHistoryWhereInput(ctx c it.AcmeChallengeStatusReasonContainsFold = data } } - return it, nil } @@ -106174,7 +106149,6 @@ func (ec *executionContext) unmarshalInputDirectoryAccountHistoryOrder(ctx conte it.Field = data } } - return it, nil } @@ -109701,7 +109675,6 @@ func (ec *executionContext) unmarshalInputDirectoryAccountHistoryWhereInput(ctx it.SourceVersionContainsFold = data } } - return it, nil } @@ -109739,7 +109712,6 @@ func (ec *executionContext) unmarshalInputDirectoryGroupHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -111999,7 +111971,6 @@ func (ec *executionContext) unmarshalInputDirectoryGroupHistoryWhereInput(ctx co it.SourceVersionContainsFold = data } } - return it, nil } @@ -112037,7 +112008,6 @@ func (ec *executionContext) unmarshalInputDirectoryMembershipHistoryOrder(ctx co it.Field = data } } - return it, nil } @@ -114220,7 +114190,6 @@ func (ec *executionContext) unmarshalInputDirectoryMembershipHistoryWhereInput(c it.LastConfirmedRunIDContainsFold = data } } - return it, nil } @@ -114258,7 +114227,6 @@ func (ec *executionContext) unmarshalInputDiscussionHistoryOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -115132,7 +115100,6 @@ func (ec *executionContext) unmarshalInputDiscussionHistoryWhereInput(ctx contex it.IsResolvedNEQ = data } } - return it, nil } @@ -115170,7 +115137,6 @@ func (ec *executionContext) unmarshalInputDocumentDataHistoryOrder(ctx context.C it.Field = data } } - return it, nil } @@ -116450,7 +116416,6 @@ func (ec *executionContext) unmarshalInputDocumentDataHistoryWhereInput(ctx cont it.TemplateIDContainsFold = data } } - return it, nil } @@ -116488,7 +116453,6 @@ func (ec *executionContext) unmarshalInputEmailBrandingHistoryOrder(ctx context. it.Field = data } } - return it, nil } @@ -118349,7 +118313,6 @@ func (ec *executionContext) unmarshalInputEmailBrandingHistoryWhereInput(ctx con it.IsDefaultNotNil = data } } - return it, nil } @@ -118387,7 +118350,6 @@ func (ec *executionContext) unmarshalInputEmailTemplateHistoryOrder(ctx context. it.Field = data } } - return it, nil } @@ -120696,7 +120658,6 @@ func (ec *executionContext) unmarshalInputEmailTemplateHistoryWhereInput(ctx con it.WorkflowInstanceIDContainsFold = data } } - return it, nil } @@ -120734,7 +120695,6 @@ func (ec *executionContext) unmarshalInputEntityHistoryOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -125234,7 +125194,6 @@ func (ec *executionContext) unmarshalInputEntityHistoryWhereInput(ctx context.Co it.ContractRenewalAtNotNil = data } } - return it, nil } @@ -125272,7 +125231,6 @@ func (ec *executionContext) unmarshalInputEntityTypeHistoryOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -126356,7 +126314,6 @@ func (ec *executionContext) unmarshalInputEntityTypeHistoryWhereInput(ctx contex it.NameContainsFold = data } } - return it, nil } @@ -126394,7 +126351,6 @@ func (ec *executionContext) unmarshalInputEvidenceHistoryOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -128395,7 +128351,6 @@ func (ec *executionContext) unmarshalInputEvidenceHistoryWhereInput(ctx context. it.StatusNotNil = data } } - return it, nil } @@ -128433,7 +128388,6 @@ func (ec *executionContext) unmarshalInputFileHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -131274,7 +131228,6 @@ func (ec *executionContext) unmarshalInputFileHistoryWhereInput(ctx context.Cont it.LastAccessedAtNotNil = data } } - return it, nil } @@ -131312,7 +131265,6 @@ func (ec *executionContext) unmarshalInputFindingControlHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -132739,7 +132691,6 @@ func (ec *executionContext) unmarshalInputFindingControlHistoryWhereInput(ctx co it.DiscoveredAtNotNil = data } } - return it, nil } @@ -132777,7 +132728,6 @@ func (ec *executionContext) unmarshalInputFindingHistoryOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -136766,7 +136716,6 @@ func (ec *executionContext) unmarshalInputFindingHistoryWhereInput(ctx context.C it.ExternalURIContainsFold = data } } - return it, nil } @@ -136804,7 +136753,6 @@ func (ec *executionContext) unmarshalInputGroupHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -138203,7 +138151,6 @@ func (ec *executionContext) unmarshalInputGroupHistoryWhereInput(ctx context.Con it.ScimGroupMailingContainsFold = data } } - return it, nil } @@ -138241,7 +138188,6 @@ func (ec *executionContext) unmarshalInputGroupMembershipHistoryOrder(ctx contex it.Field = data } } - return it, nil } @@ -139101,7 +139047,6 @@ func (ec *executionContext) unmarshalInputGroupMembershipHistoryWhereInput(ctx c it.UserIDContainsFold = data } } - return it, nil } @@ -139139,7 +139084,6 @@ func (ec *executionContext) unmarshalInputGroupSettingHistoryOrder(ctx context.C it.Field = data } } - return it, nil } @@ -140006,7 +139950,6 @@ func (ec *executionContext) unmarshalInputGroupSettingHistoryWhereInput(ctx cont it.GroupIDContainsFold = data } } - return it, nil } @@ -140044,7 +139987,6 @@ func (ec *executionContext) unmarshalInputHushHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -141478,7 +141420,6 @@ func (ec *executionContext) unmarshalInputHushHistoryWhereInput(ctx context.Cont it.ExpiresAtNotNil = data } } - return it, nil } @@ -141516,7 +141457,6 @@ func (ec *executionContext) unmarshalInputIdentityHolderHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -144595,7 +144535,6 @@ func (ec *executionContext) unmarshalInputIdentityHolderHistoryWhereInput(ctx co it.ExternalReferenceIDContainsFold = data } } - return it, nil } @@ -144633,7 +144572,6 @@ func (ec *executionContext) unmarshalInputIntegrationHistoryOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -146452,7 +146390,6 @@ func (ec *executionContext) unmarshalInputIntegrationHistoryWhereInput(ctx conte it.PlatformIDContainsFold = data } } - return it, nil } @@ -146490,7 +146427,6 @@ func (ec *executionContext) unmarshalInputInternalPolicyHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -149135,7 +149071,6 @@ func (ec *executionContext) unmarshalInputInternalPolicyHistoryWhereInput(ctx co it.WorkflowEligibleMarkerNotNil = data } } - return it, nil } @@ -149173,7 +149108,6 @@ func (ec *executionContext) unmarshalInputJobTemplateHistoryOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -150481,7 +150415,6 @@ func (ec *executionContext) unmarshalInputJobTemplateHistoryWhereInput(ctx conte it.PlatformNotIn = data } } - return it, nil } @@ -150519,7 +150452,6 @@ func (ec *executionContext) unmarshalInputMappableDomainHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -151351,7 +151283,6 @@ func (ec *executionContext) unmarshalInputMappableDomainHistoryWhereInput(ctx co it.ZoneIDContainsFold = data } } - return it, nil } @@ -151389,7 +151320,6 @@ func (ec *executionContext) unmarshalInputMappedControlHistoryOrder(ctx context. it.Field = data } } - return it, nil } @@ -152627,7 +152557,6 @@ func (ec *executionContext) unmarshalInputMappedControlHistoryWhereInput(ctx con it.SourceNotNil = data } } - return it, nil } @@ -152665,7 +152594,6 @@ func (ec *executionContext) unmarshalInputNarrativeHistoryOrder(ctx context.Cont it.Field = data } } - return it, nil } @@ -154050,7 +153978,6 @@ func (ec *executionContext) unmarshalInputNarrativeHistoryWhereInput(ctx context it.DetailsContainsFold = data } } - return it, nil } @@ -154088,7 +154015,6 @@ func (ec *executionContext) unmarshalInputNoteHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -155459,7 +155385,6 @@ func (ec *executionContext) unmarshalInputNoteHistoryWhereInput(ctx context.Cont it.TrustCenterIDContainsFold = data } } - return it, nil } @@ -155497,7 +155422,6 @@ func (ec *executionContext) unmarshalInputNotificationPreferenceHistoryOrder(ctx it.Field = data } } - return it, nil } @@ -157442,7 +157366,6 @@ func (ec *executionContext) unmarshalInputNotificationPreferenceHistoryWhereInpu it.LastErrorContainsFold = data } } - return it, nil } @@ -157480,7 +157403,6 @@ func (ec *executionContext) unmarshalInputNotificationTemplateHistoryOrder(ctx c it.Field = data } } - return it, nil } @@ -159698,7 +159620,6 @@ func (ec *executionContext) unmarshalInputNotificationTemplateHistoryWhereInput( it.VersionLTE = data } } - return it, nil } @@ -159736,7 +159657,6 @@ func (ec *executionContext) unmarshalInputOrgMembershipHistoryOrder(ctx context. it.Field = data } } - return it, nil } @@ -160596,7 +160516,6 @@ func (ec *executionContext) unmarshalInputOrgMembershipHistoryWhereInput(ctx con it.UserIDContainsFold = data } } - return it, nil } @@ -160634,7 +160553,6 @@ func (ec *executionContext) unmarshalInputOrgSubscriptionHistoryOrder(ctx contex it.Field = data } } - return it, nil } @@ -161858,7 +161776,6 @@ func (ec *executionContext) unmarshalInputOrgSubscriptionHistoryWhereInput(ctx c it.DaysUntilDueContainsFold = data } } - return it, nil } @@ -161896,7 +161813,6 @@ func (ec *executionContext) unmarshalInputOrganizationHistoryOrder(ctx context.C it.Field = data } } - return it, nil } @@ -163050,7 +162966,6 @@ func (ec *executionContext) unmarshalInputOrganizationHistoryWhereInput(ctx cont it.AvatarUpdatedAtNotNil = data } } - return it, nil } @@ -163088,7 +163003,6 @@ func (ec *executionContext) unmarshalInputOrganizationSettingHistoryOrder(ctx co it.Field = data } } - return it, nil } @@ -165390,7 +165304,6 @@ func (ec *executionContext) unmarshalInputOrganizationSettingHistoryWhereInput(c it.ComplianceWebhookTokenContainsFold = data } } - return it, nil } @@ -165428,7 +165341,6 @@ func (ec *executionContext) unmarshalInputPlatformHistoryOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -170397,7 +170309,6 @@ func (ec *executionContext) unmarshalInputPlatformHistoryWhereInput(ctx context. it.ExternalReferenceIDContainsFold = data } } - return it, nil } @@ -170435,7 +170346,6 @@ func (ec *executionContext) unmarshalInputProcedureHistoryOrder(ctx context.Cont it.Field = data } } - return it, nil } @@ -173080,7 +172990,6 @@ func (ec *executionContext) unmarshalInputProcedureHistoryWhereInput(ctx context it.WorkflowEligibleMarkerNotNil = data } } - return it, nil } @@ -173118,7 +173027,6 @@ func (ec *executionContext) unmarshalInputProgramHistoryOrder(ctx context.Contex it.Field = data } } - return it, nil } @@ -175105,7 +175013,6 @@ func (ec *executionContext) unmarshalInputProgramHistoryWhereInput(ctx context.C it.ProgramOwnerIDContainsFold = data } } - return it, nil } @@ -175143,7 +175050,6 @@ func (ec *executionContext) unmarshalInputProgramMembershipHistoryOrder(ctx cont it.Field = data } } - return it, nil } @@ -176003,7 +175909,6 @@ func (ec *executionContext) unmarshalInputProgramMembershipHistoryWhereInput(ctx it.UserIDContainsFold = data } } - return it, nil } @@ -176041,7 +175946,6 @@ func (ec *executionContext) unmarshalInputRemediationHistoryOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -179330,7 +179234,6 @@ func (ec *executionContext) unmarshalInputRemediationHistoryWhereInput(ctx conte it.ExternalURIContainsFold = data } } - return it, nil } @@ -179368,7 +179271,6 @@ func (ec *executionContext) unmarshalInputReviewHistoryOrder(ctx context.Context it.Field = data } } - return it, nil } @@ -182265,7 +182167,6 @@ func (ec *executionContext) unmarshalInputReviewHistoryWhereInput(ctx context.Co it.ExternalURIContainsFold = data } } - return it, nil } @@ -182303,7 +182204,6 @@ func (ec *executionContext) unmarshalInputRiskHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -184801,7 +184701,6 @@ func (ec *executionContext) unmarshalInputRiskHistoryWhereInput(ctx context.Cont it.DelegateIDContainsFold = data } } - return it, nil } @@ -184839,7 +184738,6 @@ func (ec *executionContext) unmarshalInputScanHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -187351,7 +187249,6 @@ func (ec *executionContext) unmarshalInputScanHistoryWhereInput(ctx context.Cont it.StatusNotIn = data } } - return it, nil } @@ -187389,7 +187286,6 @@ func (ec *executionContext) unmarshalInputScheduledJobHistoryOrder(ctx context.C it.Field = data } } - return it, nil } @@ -188445,7 +188341,6 @@ func (ec *executionContext) unmarshalInputScheduledJobHistoryWhereInput(ctx cont it.JobRunnerIDContainsFold = data } } - return it, nil } @@ -188483,7 +188378,6 @@ func (ec *executionContext) unmarshalInputStandardHistoryOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -190715,7 +190609,6 @@ func (ec *executionContext) unmarshalInputStandardHistoryWhereInput(ctx context. it.LogoFileIDContainsFold = data } } - return it, nil } @@ -190753,7 +190646,6 @@ func (ec *executionContext) unmarshalInputSubcontrolHistoryOrder(ctx context.Con it.Field = data } } - return it, nil } @@ -193601,7 +193493,6 @@ func (ec *executionContext) unmarshalInputSubcontrolHistoryWhereInput(ctx contex it.ControlIDContainsFold = data } } - return it, nil } @@ -193639,7 +193530,6 @@ func (ec *executionContext) unmarshalInputSubprocessorHistoryOrder(ctx context.C it.Field = data } } - return it, nil } @@ -195038,7 +194928,6 @@ func (ec *executionContext) unmarshalInputSubprocessorHistoryWhereInput(ctx cont it.LogoFileIDContainsFold = data } } - return it, nil } @@ -195076,7 +194965,6 @@ func (ec *executionContext) unmarshalInputTaskHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -197350,7 +197238,6 @@ func (ec *executionContext) unmarshalInputTaskHistoryWhereInput(ctx context.Cont it.ParentTaskIDContainsFold = data } } - return it, nil } @@ -197388,7 +197275,6 @@ func (ec *executionContext) unmarshalInputTemplateHistoryOrder(ctx context.Conte it.Field = data } } - return it, nil } @@ -199172,7 +199058,6 @@ func (ec *executionContext) unmarshalInputTemplateHistoryWhereInput(ctx context. it.TrustCenterIDContainsFold = data } } - return it, nil } @@ -199210,7 +199095,6 @@ func (ec *executionContext) unmarshalInputTrustCenterComplianceHistoryOrder(ctx it.Field = data } } - return it, nil } @@ -200056,7 +199940,6 @@ func (ec *executionContext) unmarshalInputTrustCenterComplianceHistoryWhereInput it.TrustCenterIDContainsFold = data } } - return it, nil } @@ -200094,7 +199977,6 @@ func (ec *executionContext) unmarshalInputTrustCenterDocHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -201577,7 +201459,6 @@ func (ec *executionContext) unmarshalInputTrustCenterDocHistoryWhereInput(ctx co it.StandardIDContainsFold = data } } - return it, nil } @@ -201615,7 +201496,6 @@ func (ec *executionContext) unmarshalInputTrustCenterEntityHistoryOrder(ctx cont it.Field = data } } - return it, nil } @@ -202671,7 +202551,6 @@ func (ec *executionContext) unmarshalInputTrustCenterEntityHistoryWhereInput(ctx it.NameContainsFold = data } } - return it, nil } @@ -202709,7 +202588,6 @@ func (ec *executionContext) unmarshalInputTrustCenterFAQHistoryOrder(ctx context it.Field = data } } - return it, nil } @@ -203940,7 +203818,6 @@ func (ec *executionContext) unmarshalInputTrustCenterFAQHistoryWhereInput(ctx co it.DisplayOrderNotNil = data } } - return it, nil } @@ -203978,7 +203855,6 @@ func (ec *executionContext) unmarshalInputTrustCenterHistoryOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -205510,7 +205386,6 @@ func (ec *executionContext) unmarshalInputTrustCenterHistoryWhereInput(ctx conte it.SubprocessorURLContainsFold = data } } - return it, nil } @@ -205548,7 +205423,6 @@ func (ec *executionContext) unmarshalInputTrustCenterNDARequestHistoryOrder(ctx it.Field = data } } - return it, nil } @@ -207325,7 +207199,6 @@ func (ec *executionContext) unmarshalInputTrustCenterNDARequestHistoryWhereInput it.FileIDContainsFold = data } } - return it, nil } @@ -207363,7 +207236,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSettingHistoryOrder(ctx con it.Field = data } } - return it, nil } @@ -210148,7 +210020,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSettingHistoryWhereInput(ct it.StatusPageURLContainsFold = data } } - return it, nil } @@ -210186,7 +210057,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSubprocessorHistoryOrder(ct it.Field = data } } - return it, nil } @@ -211242,7 +211112,6 @@ func (ec *executionContext) unmarshalInputTrustCenterSubprocessorHistoryWhereInp it.TrustCenterIDContainsFold = data } } - return it, nil } @@ -211280,7 +211149,6 @@ func (ec *executionContext) unmarshalInputTrustCenterWatermarkConfigHistoryOrder it.Field = data } } - return it, nil } @@ -212735,7 +212603,6 @@ func (ec *executionContext) unmarshalInputTrustCenterWatermarkConfigHistoryWhere it.FontNotNil = data } } - return it, nil } @@ -212773,7 +212640,6 @@ func (ec *executionContext) unmarshalInputUserHistoryOrder(ctx context.Context, it.Field = data } } - return it, nil } @@ -214921,7 +214787,6 @@ func (ec *executionContext) unmarshalInputUserHistoryWhereInput(ctx context.Cont it.ScimLocaleContainsFold = data } } - return it, nil } @@ -214959,7 +214824,6 @@ func (ec *executionContext) unmarshalInputUserSettingHistoryOrder(ctx context.Co it.Field = data } } - return it, nil } @@ -216183,7 +216047,6 @@ func (ec *executionContext) unmarshalInputUserSettingHistoryWhereInput(ctx conte it.IsTfaEnabledNotNil = data } } - return it, nil } @@ -216221,7 +216084,6 @@ func (ec *executionContext) unmarshalInputVulnerabilityHistoryOrder(ctx context. it.Field = data } } - return it, nil } @@ -219706,7 +219568,6 @@ func (ec *executionContext) unmarshalInputVulnerabilityHistoryWhereInput(ctx con it.ExternalURIContainsFold = data } } - return it, nil } @@ -219744,7 +219605,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentHistoryOrder(ctx con it.Field = data } } - return it, nil } @@ -221465,7 +221325,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentHistoryWhereInput(ct it.DueAtNotNil = data } } - return it, nil } @@ -221503,7 +221362,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentTargetHistoryOrder(c it.Field = data } } - return it, nil } @@ -222783,7 +222641,6 @@ func (ec *executionContext) unmarshalInputWorkflowAssignmentTargetHistoryWhereIn it.ResolverKeyContainsFold = data } } - return it, nil } @@ -222821,7 +222678,6 @@ func (ec *executionContext) unmarshalInputWorkflowDefinitionHistoryOrder(ctx con it.Field = data } } - return it, nil } @@ -224444,7 +224300,6 @@ func (ec *executionContext) unmarshalInputWorkflowDefinitionHistoryWhereInput(ct it.ActiveNEQ = data } } - return it, nil } @@ -224482,7 +224337,6 @@ func (ec *executionContext) unmarshalInputWorkflowEventHistoryOrder(ctx context. it.Field = data } } - return it, nil } @@ -225447,7 +225301,6 @@ func (ec *executionContext) unmarshalInputWorkflowEventHistoryWhereInput(ctx con it.EventTypeNotIn = data } } - return it, nil } @@ -225485,7 +225338,6 @@ func (ec *executionContext) unmarshalInputWorkflowInstanceHistoryOrder(ctx conte it.Field = data } } - return it, nil } @@ -227731,7 +227583,6 @@ func (ec *executionContext) unmarshalInputWorkflowInstanceHistoryWhereInput(ctx it.PlatformIDContainsFold = data } } - return it, nil } @@ -227769,7 +227620,6 @@ func (ec *executionContext) unmarshalInputWorkflowObjectRefHistoryOrder(ctx cont it.Field = data } } - return it, nil } @@ -230281,7 +230131,6 @@ func (ec *executionContext) unmarshalInputWorkflowObjectRefHistoryWhereInput(ctx it.PlatformIDContainsFold = data } } - return it, nil } @@ -230814,10 +230663,10 @@ func (ec *executionContext) _ActionPlanHistory(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -230860,10 +230709,10 @@ func (ec *executionContext) _ActionPlanHistoryConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -230901,10 +230750,10 @@ func (ec *executionContext) _ActionPlanHistoryEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -230982,10 +230831,10 @@ func (ec *executionContext) _AssessmentHistory(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231028,10 +230877,10 @@ func (ec *executionContext) _AssessmentHistoryConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231069,10 +230918,10 @@ func (ec *executionContext) _AssessmentHistoryEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231196,10 +231045,10 @@ func (ec *executionContext) _AssessmentResponseHistory(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231242,10 +231091,10 @@ func (ec *executionContext) _AssessmentResponseHistoryConnection(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231283,10 +231132,10 @@ func (ec *executionContext) _AssessmentResponseHistoryEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231433,10 +231282,10 @@ func (ec *executionContext) _AssetHistory(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231479,10 +231328,10 @@ func (ec *executionContext) _AssetHistoryConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231520,10 +231369,10 @@ func (ec *executionContext) _AssetHistoryEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231663,10 +231512,10 @@ func (ec *executionContext) _CampaignHistory(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231709,10 +231558,10 @@ func (ec *executionContext) _CampaignHistoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231750,10 +231599,10 @@ func (ec *executionContext) _CampaignHistoryEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231842,10 +231691,10 @@ func (ec *executionContext) _CampaignTargetHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231888,10 +231737,10 @@ func (ec *executionContext) _CampaignTargetHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -231929,10 +231778,10 @@ func (ec *executionContext) _CampaignTargetHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232009,10 +231858,10 @@ func (ec *executionContext) _ContactHistory(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232055,10 +231904,10 @@ func (ec *executionContext) _ContactHistoryConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232096,10 +231945,10 @@ func (ec *executionContext) _ContactHistoryEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232245,10 +232094,10 @@ func (ec *executionContext) _ControlHistory(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232291,10 +232140,10 @@ func (ec *executionContext) _ControlHistoryConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232332,10 +232181,10 @@ func (ec *executionContext) _ControlHistoryEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232413,10 +232262,10 @@ func (ec *executionContext) _ControlImplementationHistory(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232459,10 +232308,10 @@ func (ec *executionContext) _ControlImplementationHistoryConnection(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232500,10 +232349,10 @@ func (ec *executionContext) _ControlImplementationHistoryEdge(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232595,10 +232444,10 @@ func (ec *executionContext) _ControlObjectiveHistory(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232641,10 +232490,10 @@ func (ec *executionContext) _ControlObjectiveHistoryConnection(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232682,10 +232531,10 @@ func (ec *executionContext) _ControlObjectiveHistoryEdge(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232765,10 +232614,10 @@ func (ec *executionContext) _CustomDomainHistory(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232811,10 +232660,10 @@ func (ec *executionContext) _CustomDomainHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232852,10 +232701,10 @@ func (ec *executionContext) _CustomDomainHistoryEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232948,10 +232797,10 @@ func (ec *executionContext) _DNSVerificationHistory(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -232994,10 +232843,10 @@ func (ec *executionContext) _DNSVerificationHistoryConnection(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233035,10 +232884,10 @@ func (ec *executionContext) _DNSVerificationHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233180,10 +233029,10 @@ func (ec *executionContext) _DirectoryAccountHistory(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233226,10 +233075,10 @@ func (ec *executionContext) _DirectoryAccountHistoryConnection(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233267,10 +233116,10 @@ func (ec *executionContext) _DirectoryAccountHistoryEdge(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233396,10 +233245,10 @@ func (ec *executionContext) _DirectoryGroupHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233442,10 +233291,10 @@ func (ec *executionContext) _DirectoryGroupHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233483,10 +233332,10 @@ func (ec *executionContext) _DirectoryGroupHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233596,10 +233445,10 @@ func (ec *executionContext) _DirectoryMembershipHistory(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233642,10 +233491,10 @@ func (ec *executionContext) _DirectoryMembershipHistoryConnection(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233683,10 +233532,10 @@ func (ec *executionContext) _DirectoryMembershipHistoryEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233751,10 +233600,10 @@ func (ec *executionContext) _DiscussionHistory(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233797,10 +233646,10 @@ func (ec *executionContext) _DiscussionHistoryConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233838,10 +233687,10 @@ func (ec *executionContext) _DiscussionHistoryEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233916,10 +233765,10 @@ func (ec *executionContext) _DocumentDataHistory(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -233962,10 +233811,10 @@ func (ec *executionContext) _DocumentDataHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234003,10 +233852,10 @@ func (ec *executionContext) _DocumentDataHistoryEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234093,10 +233942,10 @@ func (ec *executionContext) _EmailBrandingHistory(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234139,10 +233988,10 @@ func (ec *executionContext) _EmailBrandingHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234180,10 +234029,10 @@ func (ec *executionContext) _EmailBrandingHistoryEdge(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234301,10 +234150,10 @@ func (ec *executionContext) _EmailTemplateHistory(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234347,10 +234196,10 @@ func (ec *executionContext) _EmailTemplateHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234388,10 +234237,10 @@ func (ec *executionContext) _EmailTemplateHistoryEdge(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234553,10 +234402,10 @@ func (ec *executionContext) _EntityHistory(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234599,10 +234448,10 @@ func (ec *executionContext) _EntityHistoryConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234640,10 +234489,10 @@ func (ec *executionContext) _EntityHistoryEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234714,10 +234563,10 @@ func (ec *executionContext) _EntityTypeHistory(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234760,10 +234609,10 @@ func (ec *executionContext) _EntityTypeHistoryConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234801,10 +234650,10 @@ func (ec *executionContext) _EntityTypeHistoryEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234903,10 +234752,10 @@ func (ec *executionContext) _EvidenceHistory(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234949,10 +234798,10 @@ func (ec *executionContext) _EvidenceHistoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -234990,10 +234839,10 @@ func (ec *executionContext) _EvidenceHistoryEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235108,10 +234957,10 @@ func (ec *executionContext) _FileHistory(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235154,10 +235003,10 @@ func (ec *executionContext) _FileHistoryConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235195,10 +235044,10 @@ func (ec *executionContext) _FileHistoryEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235278,10 +235127,10 @@ func (ec *executionContext) _FindingControlHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235324,10 +235173,10 @@ func (ec *executionContext) _FindingControlHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235365,10 +235214,10 @@ func (ec *executionContext) _FindingControlHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235521,10 +235370,10 @@ func (ec *executionContext) _FindingHistory(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235567,10 +235416,10 @@ func (ec *executionContext) _FindingHistoryConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235608,10 +235457,10 @@ func (ec *executionContext) _FindingHistoryEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235702,10 +235551,10 @@ func (ec *executionContext) _GroupHistory(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235748,10 +235597,10 @@ func (ec *executionContext) _GroupHistoryConnection(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235789,10 +235638,10 @@ func (ec *executionContext) _GroupHistoryEdge(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235863,10 +235712,10 @@ func (ec *executionContext) _GroupMembershipHistory(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235909,10 +235758,10 @@ func (ec *executionContext) _GroupMembershipHistoryConnection(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -235950,10 +235799,10 @@ func (ec *executionContext) _GroupMembershipHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236025,10 +235874,10 @@ func (ec *executionContext) _GroupSettingHistory(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236071,10 +235920,10 @@ func (ec *executionContext) _GroupSettingHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236112,10 +235961,10 @@ func (ec *executionContext) _GroupSettingHistoryEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236198,10 +236047,10 @@ func (ec *executionContext) _HushHistory(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236244,10 +236093,10 @@ func (ec *executionContext) _HushHistoryConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236285,10 +236134,10 @@ func (ec *executionContext) _HushHistoryEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236422,10 +236271,10 @@ func (ec *executionContext) _IdentityHolderHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236468,10 +236317,10 @@ func (ec *executionContext) _IdentityHolderHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236509,10 +236358,10 @@ func (ec *executionContext) _IdentityHolderHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236601,10 +236450,10 @@ func (ec *executionContext) _IntegrationHistory(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236647,10 +236496,10 @@ func (ec *executionContext) _IntegrationHistoryConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236688,10 +236537,10 @@ func (ec *executionContext) _IntegrationHistoryEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236817,10 +236666,10 @@ func (ec *executionContext) _InternalPolicyHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236863,10 +236712,10 @@ func (ec *executionContext) _InternalPolicyHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236904,10 +236753,10 @@ func (ec *executionContext) _InternalPolicyHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -236999,10 +236848,10 @@ func (ec *executionContext) _JobTemplateHistory(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237045,10 +236894,10 @@ func (ec *executionContext) _JobTemplateHistoryConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237086,10 +236935,10 @@ func (ec *executionContext) _JobTemplateHistoryEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237157,10 +237006,10 @@ func (ec *executionContext) _MappableDomainHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237203,10 +237052,10 @@ func (ec *executionContext) _MappableDomainHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237244,10 +237093,10 @@ func (ec *executionContext) _MappableDomainHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237324,10 +237173,10 @@ func (ec *executionContext) _MappedControlHistory(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237370,10 +237219,10 @@ func (ec *executionContext) _MappedControlHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237411,10 +237260,10 @@ func (ec *executionContext) _MappedControlHistoryEdge(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237494,10 +237343,10 @@ func (ec *executionContext) _NarrativeHistory(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237540,10 +237389,10 @@ func (ec *executionContext) _NarrativeHistoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237581,10 +237430,10 @@ func (ec *executionContext) _NarrativeHistoryEdge(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237667,10 +237516,10 @@ func (ec *executionContext) _NoteHistory(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237713,10 +237562,10 @@ func (ec *executionContext) _NoteHistoryConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237754,10 +237603,10 @@ func (ec *executionContext) _NoteHistoryEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237875,10 +237724,10 @@ func (ec *executionContext) _NotificationPreferenceHistory(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237921,10 +237770,10 @@ func (ec *executionContext) _NotificationPreferenceHistoryConnection(ctx context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -237962,10 +237811,10 @@ func (ec *executionContext) _NotificationPreferenceHistoryEdge(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238091,10 +237940,10 @@ func (ec *executionContext) _NotificationTemplateHistory(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238137,10 +237986,10 @@ func (ec *executionContext) _NotificationTemplateHistoryConnection(ctx context.C return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238178,10 +238027,10 @@ func (ec *executionContext) _NotificationTemplateHistoryEdge(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238252,10 +238101,10 @@ func (ec *executionContext) _OrgMembershipHistory(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238298,10 +238147,10 @@ func (ec *executionContext) _OrgMembershipHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238339,10 +238188,10 @@ func (ec *executionContext) _OrgMembershipHistoryEdge(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238417,10 +238266,10 @@ func (ec *executionContext) _OrgSubscriptionHistory(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238463,10 +238312,10 @@ func (ec *executionContext) _OrgSubscriptionHistoryConnection(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238504,10 +238353,10 @@ func (ec *executionContext) _OrgSubscriptionHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238592,10 +238441,10 @@ func (ec *executionContext) _OrganizationHistory(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238638,10 +238487,10 @@ func (ec *executionContext) _OrganizationHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238679,10 +238528,10 @@ func (ec *executionContext) _OrganizationHistoryEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238802,10 +238651,10 @@ func (ec *executionContext) _OrganizationSettingHistory(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238848,10 +238697,10 @@ func (ec *executionContext) _OrganizationSettingHistoryConnection(ctx context.Co return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238889,10 +238738,10 @@ func (ec *executionContext) _OrganizationSettingHistoryEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -238937,10 +238786,10 @@ func (ec *executionContext) _PageInfo(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239108,10 +238957,10 @@ func (ec *executionContext) _PlatformHistory(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239154,10 +239003,10 @@ func (ec *executionContext) _PlatformHistoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239195,10 +239044,10 @@ func (ec *executionContext) _PlatformHistoryEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239324,10 +239173,10 @@ func (ec *executionContext) _ProcedureHistory(ctx context.Context, sel ast.Selec return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239370,10 +239219,10 @@ func (ec *executionContext) _ProcedureHistoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239411,10 +239260,10 @@ func (ec *executionContext) _ProcedureHistoryEdge(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239524,10 +239373,10 @@ func (ec *executionContext) _ProgramHistory(ctx context.Context, sel ast.Selecti return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239570,10 +239419,10 @@ func (ec *executionContext) _ProgramHistoryConnection(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239611,10 +239460,10 @@ func (ec *executionContext) _ProgramHistoryEdge(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239685,10 +239534,10 @@ func (ec *executionContext) _ProgramMembershipHistory(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239731,10 +239580,10 @@ func (ec *executionContext) _ProgramMembershipHistoryConnection(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -239772,10 +239621,10 @@ func (ec *executionContext) _ProgramMembershipHistoryEdge(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -241513,10 +241362,10 @@ func (ec *executionContext) _Query(ctx context.Context, sel ast.SelectionSet) gr return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -241633,10 +241482,10 @@ func (ec *executionContext) _RemediationHistory(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -241679,10 +241528,10 @@ func (ec *executionContext) _RemediationHistoryConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -241720,10 +241569,10 @@ func (ec *executionContext) _RemediationHistoryEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -241836,10 +241685,10 @@ func (ec *executionContext) _ReviewHistory(ctx context.Context, sel ast.Selectio return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -241882,10 +241731,10 @@ func (ec *executionContext) _ReviewHistoryConnection(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -241923,10 +241772,10 @@ func (ec *executionContext) _ReviewHistoryEdge(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242036,10 +241885,10 @@ func (ec *executionContext) _RiskHistory(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242082,10 +241931,10 @@ func (ec *executionContext) _RiskHistoryConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242123,10 +241972,10 @@ func (ec *executionContext) _RiskHistoryEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242239,10 +242088,10 @@ func (ec *executionContext) _ScanHistory(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242285,10 +242134,10 @@ func (ec *executionContext) _ScanHistoryConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242326,10 +242175,10 @@ func (ec *executionContext) _ScanHistoryEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242408,10 +242257,10 @@ func (ec *executionContext) _ScheduledJobHistory(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242454,10 +242303,10 @@ func (ec *executionContext) _ScheduledJobHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242495,10 +242344,10 @@ func (ec *executionContext) _ScheduledJobHistoryEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242597,10 +242446,10 @@ func (ec *executionContext) _StandardHistory(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242643,10 +242492,10 @@ func (ec *executionContext) _StandardHistoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242684,10 +242533,10 @@ func (ec *executionContext) _StandardHistoryEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242824,10 +242673,10 @@ func (ec *executionContext) _SubcontrolHistory(ctx context.Context, sel ast.Sele return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242870,10 +242719,10 @@ func (ec *executionContext) _SubcontrolHistoryConnection(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242911,10 +242760,10 @@ func (ec *executionContext) _SubcontrolHistoryEdge(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -242991,10 +242840,10 @@ func (ec *executionContext) _SubprocessorHistory(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243037,10 +242886,10 @@ func (ec *executionContext) _SubprocessorHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243078,10 +242927,10 @@ func (ec *executionContext) _SubprocessorHistoryEdge(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243191,10 +243040,10 @@ func (ec *executionContext) _TaskHistory(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243237,10 +243086,10 @@ func (ec *executionContext) _TaskHistoryConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243278,10 +243127,10 @@ func (ec *executionContext) _TaskHistoryEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243378,10 +243227,10 @@ func (ec *executionContext) _TemplateHistory(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243424,10 +243273,10 @@ func (ec *executionContext) _TemplateHistoryConnection(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243465,10 +243314,10 @@ func (ec *executionContext) _TemplateHistoryEdge(ctx context.Context, sel ast.Se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243533,10 +243382,10 @@ func (ec *executionContext) _TrustCenterComplianceHistory(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243579,10 +243428,10 @@ func (ec *executionContext) _TrustCenterComplianceHistoryConnection(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243620,10 +243469,10 @@ func (ec *executionContext) _TrustCenterComplianceHistoryEdge(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243704,10 +243553,10 @@ func (ec *executionContext) _TrustCenterDocHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243750,10 +243599,10 @@ func (ec *executionContext) _TrustCenterDocHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243791,10 +243640,10 @@ func (ec *executionContext) _TrustCenterDocHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243863,10 +243712,10 @@ func (ec *executionContext) _TrustCenterEntityHistory(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243909,10 +243758,10 @@ func (ec *executionContext) _TrustCenterEntityHistoryConnection(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -243950,10 +243799,10 @@ func (ec *executionContext) _TrustCenterEntityHistoryEdge(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244024,10 +243873,10 @@ func (ec *executionContext) _TrustCenterFAQHistory(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244070,10 +243919,10 @@ func (ec *executionContext) _TrustCenterFAQHistoryConnection(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244111,10 +243960,10 @@ func (ec *executionContext) _TrustCenterFAQHistoryEdge(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244190,10 +244039,10 @@ func (ec *executionContext) _TrustCenterHistory(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244236,10 +244085,10 @@ func (ec *executionContext) _TrustCenterHistoryConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244277,10 +244126,10 @@ func (ec *executionContext) _TrustCenterHistoryEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244373,10 +244222,10 @@ func (ec *executionContext) _TrustCenterNDARequestHistory(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244419,10 +244268,10 @@ func (ec *executionContext) _TrustCenterNDARequestHistoryConnection(ctx context. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244460,10 +244309,10 @@ func (ec *executionContext) _TrustCenterNDARequestHistoryEdge(ctx context.Contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244565,10 +244414,10 @@ func (ec *executionContext) _TrustCenterSettingHistory(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244611,10 +244460,10 @@ func (ec *executionContext) _TrustCenterSettingHistoryConnection(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244652,10 +244501,10 @@ func (ec *executionContext) _TrustCenterSettingHistoryEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244724,10 +244573,10 @@ func (ec *executionContext) _TrustCenterSubprocessorHistory(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244770,10 +244619,10 @@ func (ec *executionContext) _TrustCenterSubprocessorHistoryConnection(ctx contex return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244811,10 +244660,10 @@ func (ec *executionContext) _TrustCenterSubprocessorHistoryEdge(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244890,10 +244739,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigHistory(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244936,10 +244785,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigHistoryConnection(ctx con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -244977,10 +244826,10 @@ func (ec *executionContext) _TrustCenterWatermarkConfigHistoryEdge(ctx context.C return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245086,10 +244935,10 @@ func (ec *executionContext) _UserHistory(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245132,10 +244981,10 @@ func (ec *executionContext) _UserHistoryConnection(ctx context.Context, sel ast. return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245173,10 +245022,10 @@ func (ec *executionContext) _UserHistoryEdge(ctx context.Context, sel ast.Select return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245265,10 +245114,10 @@ func (ec *executionContext) _UserSettingHistory(ctx context.Context, sel ast.Sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245311,10 +245160,10 @@ func (ec *executionContext) _UserSettingHistoryConnection(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245352,10 +245201,10 @@ func (ec *executionContext) _UserSettingHistoryEdge(ctx context.Context, sel ast return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245495,10 +245344,10 @@ func (ec *executionContext) _VulnerabilityHistory(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245541,10 +245390,10 @@ func (ec *executionContext) _VulnerabilityHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245582,10 +245431,10 @@ func (ec *executionContext) _VulnerabilityHistoryEdge(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245695,10 +245544,10 @@ func (ec *executionContext) _WorkflowAssignmentHistory(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245741,10 +245590,10 @@ func (ec *executionContext) _WorkflowAssignmentHistoryConnection(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245782,10 +245631,10 @@ func (ec *executionContext) _WorkflowAssignmentHistoryEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245866,10 +245715,10 @@ func (ec *executionContext) _WorkflowAssignmentTargetHistory(ctx context.Context return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245912,10 +245761,10 @@ func (ec *executionContext) _WorkflowAssignmentTargetHistoryConnection(ctx conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -245953,10 +245802,10 @@ func (ec *executionContext) _WorkflowAssignmentTargetHistoryEdge(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246075,10 +245924,10 @@ func (ec *executionContext) _WorkflowDefinitionHistory(ctx context.Context, sel return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246121,10 +245970,10 @@ func (ec *executionContext) _WorkflowDefinitionHistoryConnection(ctx context.Con return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246162,10 +246011,10 @@ func (ec *executionContext) _WorkflowDefinitionHistoryEdge(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246242,10 +246091,10 @@ func (ec *executionContext) _WorkflowEventHistory(ctx context.Context, sel ast.S return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246288,10 +246137,10 @@ func (ec *executionContext) _WorkflowEventHistoryConnection(ctx context.Context, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246329,10 +246178,10 @@ func (ec *executionContext) _WorkflowEventHistoryEdge(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246440,10 +246289,10 @@ func (ec *executionContext) _WorkflowInstanceHistory(ctx context.Context, sel as return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246486,10 +246335,10 @@ func (ec *executionContext) _WorkflowInstanceHistoryConnection(ctx context.Conte return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246527,10 +246376,10 @@ func (ec *executionContext) _WorkflowInstanceHistoryEdge(ctx context.Context, se return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246628,10 +246477,10 @@ func (ec *executionContext) _WorkflowObjectRefHistory(ctx context.Context, sel a return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246674,10 +246523,10 @@ func (ec *executionContext) _WorkflowObjectRefHistoryConnection(ctx context.Cont return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -246715,10 +246564,10 @@ func (ec *executionContext) _WorkflowObjectRefHistoryEdge(ctx context.Context, s return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -248796,39 +248645,11 @@ func (ec *executionContext) unmarshalNNarrativeHistoryWhereInput2ᚖgithubᚗcom } func (ec *executionContext) marshalNNode2ᚕgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoder(ctx context.Context, sel ast.SelectionSet, v []historygenerated.Noder) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONode2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoder(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONode2githubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoder(ctx, sel, v[i]) + }) return ret } @@ -251077,39 +250898,11 @@ func (ec *executionContext) marshalOActionPlanHistoryDocumentStatus2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlanHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlanHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -251140,39 +250933,11 @@ func (ec *executionContext) marshalOActionPlanHistoryEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOActionPlanHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐActionPlanHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOActionPlanHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐActionPlanHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -251216,39 +250981,11 @@ func (ec *executionContext) marshalOActionPlanHistoryFrequency2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlanHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlanHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -251297,39 +251034,11 @@ func (ec *executionContext) marshalOActionPlanHistoryOpType2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlanHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlanHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -251396,39 +251105,11 @@ func (ec *executionContext) marshalOActionPlanHistoryPriority2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNActionPlanHistoryPriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNActionPlanHistoryPriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -251510,39 +251191,11 @@ func (ec *executionContext) marshalOAssessmentHistoryAssessmentType2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssessmentHistoryAssessmentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssessmentHistoryAssessmentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -251573,39 +251226,11 @@ func (ec *executionContext) marshalOAssessmentHistoryEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOAssessmentHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssessmentHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOAssessmentHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssessmentHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -251639,39 +251264,11 @@ func (ec *executionContext) marshalOAssessmentHistoryOpType2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssessmentHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssessmentHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -251761,39 +251358,11 @@ func (ec *executionContext) marshalOAssessmentResponseHistoryAssessmentResponseS if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssessmentResponseHistoryAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssessmentResponseHistoryAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -251824,39 +251393,11 @@ func (ec *executionContext) marshalOAssessmentResponseHistoryEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOAssessmentResponseHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssessmentResponseHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOAssessmentResponseHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssessmentResponseHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -251890,39 +251431,11 @@ func (ec *executionContext) marshalOAssessmentResponseHistoryOpType2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssessmentResponseHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssessmentResponseHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252012,39 +251525,11 @@ func (ec *executionContext) marshalOAssetHistoryAssetType2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssetHistoryAssetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssetType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssetHistoryAssetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssetType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252075,39 +251560,11 @@ func (ec *executionContext) marshalOAssetHistoryEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOAssetHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssetHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOAssetHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐAssetHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -252141,39 +251598,11 @@ func (ec *executionContext) marshalOAssetHistoryOpType2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssetHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssetHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252230,39 +251659,11 @@ func (ec *executionContext) marshalOAssetHistorySourceType2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNAssetHistorySourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNAssetHistorySourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252344,39 +251745,11 @@ func (ec *executionContext) marshalOCampaignHistoryCampaignStatus2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignHistoryCampaignStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignHistoryCampaignStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252425,39 +251798,11 @@ func (ec *executionContext) marshalOCampaignHistoryCampaignType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignHistoryCampaignType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignHistoryCampaignType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐCampaignType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252488,39 +251833,11 @@ func (ec *executionContext) marshalOCampaignHistoryEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOCampaignHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCampaignHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOCampaignHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCampaignHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -252564,39 +251881,11 @@ func (ec *executionContext) marshalOCampaignHistoryFrequency2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252645,39 +251934,11 @@ func (ec *executionContext) marshalOCampaignHistoryOpType2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252767,39 +252028,11 @@ func (ec *executionContext) marshalOCampaignTargetHistoryAssessmentResponseStatu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignTargetHistoryAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignTargetHistoryAssessmentResponseStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAssessmentResponseStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -252830,39 +252063,11 @@ func (ec *executionContext) marshalOCampaignTargetHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOCampaignTargetHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCampaignTargetHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOCampaignTargetHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCampaignTargetHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -252896,39 +252101,11 @@ func (ec *executionContext) marshalOCampaignTargetHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCampaignTargetHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCampaignTargetHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253000,39 +252177,11 @@ func (ec *executionContext) marshalOContactHistoryEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOContactHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐContactHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOContactHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐContactHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -253066,39 +252215,11 @@ func (ec *executionContext) marshalOContactHistoryOpType2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNContactHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNContactHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253155,39 +252276,11 @@ func (ec *executionContext) marshalOContactHistoryUserStatus2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNContactHistoryUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNContactHistoryUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253279,39 +252372,11 @@ func (ec *executionContext) marshalOControlHistoryControlSource2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlHistoryControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlHistoryControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253370,39 +252435,11 @@ func (ec *executionContext) marshalOControlHistoryControlStatus2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlHistoryControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlHistoryControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253433,39 +252470,11 @@ func (ec *executionContext) marshalOControlHistoryEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOControlHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOControlHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -253499,39 +252508,11 @@ func (ec *executionContext) marshalOControlHistoryOpType2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253598,39 +252579,11 @@ func (ec *executionContext) marshalOControlHistoryTrustCenterControlVisibility2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlHistoryTrustCenterControlVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterControlVisibility(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlHistoryTrustCenterControlVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterControlVisibility(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253722,39 +252675,11 @@ func (ec *executionContext) marshalOControlImplementationHistoryDocumentStatus2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlImplementationHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlImplementationHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253785,39 +252710,11 @@ func (ec *executionContext) marshalOControlImplementationHistoryEdge2ᚕᚖgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOControlImplementationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlImplementationHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOControlImplementationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlImplementationHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -253851,39 +252748,11 @@ func (ec *executionContext) marshalOControlImplementationHistoryOpType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlImplementationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlImplementationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -253983,39 +252852,11 @@ func (ec *executionContext) marshalOControlObjectiveHistoryControlSource2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlObjectiveHistoryControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlObjectiveHistoryControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254046,39 +252887,11 @@ func (ec *executionContext) marshalOControlObjectiveHistoryEdge2ᚕᚖgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOControlObjectiveHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlObjectiveHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOControlObjectiveHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐControlObjectiveHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -254122,39 +252935,11 @@ func (ec *executionContext) marshalOControlObjectiveHistoryObjectiveStatus2ᚕgi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlObjectiveHistoryObjectiveStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐObjectiveStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlObjectiveHistoryObjectiveStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐObjectiveStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254203,39 +252988,11 @@ func (ec *executionContext) marshalOControlObjectiveHistoryOpType2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNControlObjectiveHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNControlObjectiveHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254323,39 +253080,11 @@ func (ec *executionContext) marshalOCustomDomainHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOCustomDomainHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCustomDomainHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOCustomDomainHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐCustomDomainHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -254389,39 +253118,11 @@ func (ec *executionContext) marshalOCustomDomainHistoryOpType2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNCustomDomainHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNCustomDomainHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254511,39 +253212,11 @@ func (ec *executionContext) marshalODNSVerificationHistoryDNSVerificationStatus2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDNSVerificationHistoryDNSVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDNSVerificationStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDNSVerificationHistoryDNSVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDNSVerificationStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254574,39 +253247,11 @@ func (ec *executionContext) marshalODNSVerificationHistoryEdge2ᚕᚖgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODNSVerificationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDNSVerificationHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODNSVerificationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDNSVerificationHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -254640,39 +253285,11 @@ func (ec *executionContext) marshalODNSVerificationHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDNSVerificationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDNSVerificationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254729,39 +253346,11 @@ func (ec *executionContext) marshalODNSVerificationHistorySSLVerificationStatus2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDNSVerificationHistorySSLVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSLVerificationStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDNSVerificationHistorySSLVerificationStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSLVerificationStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254843,39 +253432,11 @@ func (ec *executionContext) marshalODirectoryAccountHistoryDirectoryAccountMFASt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccountHistoryDirectoryAccountMFAState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountMFAState(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccountHistoryDirectoryAccountMFAState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountMFAState(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -254924,39 +253485,11 @@ func (ec *executionContext) marshalODirectoryAccountHistoryDirectoryAccountStatu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccountHistoryDirectoryAccountStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccountHistoryDirectoryAccountStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255015,39 +253548,11 @@ func (ec *executionContext) marshalODirectoryAccountHistoryDirectoryAccountType2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccountHistoryDirectoryAccountType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccountHistoryDirectoryAccountType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryAccountType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255078,39 +253583,11 @@ func (ec *executionContext) marshalODirectoryAccountHistoryEdge2ᚕᚖgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODirectoryAccountHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryAccountHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODirectoryAccountHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryAccountHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -255144,39 +253621,11 @@ func (ec *executionContext) marshalODirectoryAccountHistoryOpType2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryAccountHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryAccountHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255266,39 +253715,11 @@ func (ec *executionContext) marshalODirectoryGroupHistoryDirectoryGroupClassific if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryGroupHistoryDirectoryGroupClassification2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupClassification(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryGroupHistoryDirectoryGroupClassification2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupClassification(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255347,39 +253768,11 @@ func (ec *executionContext) marshalODirectoryGroupHistoryDirectoryGroupStatus2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryGroupHistoryDirectoryGroupStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryGroupHistoryDirectoryGroupStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryGroupStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255410,39 +253803,11 @@ func (ec *executionContext) marshalODirectoryGroupHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODirectoryGroupHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryGroupHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODirectoryGroupHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryGroupHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -255476,39 +253841,11 @@ func (ec *executionContext) marshalODirectoryGroupHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryGroupHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryGroupHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255608,39 +253945,11 @@ func (ec *executionContext) marshalODirectoryMembershipHistoryDirectoryMembershi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryMembershipHistoryDirectoryMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryMembershipRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryMembershipHistoryDirectoryMembershipRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDirectoryMembershipRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255671,39 +253980,11 @@ func (ec *executionContext) marshalODirectoryMembershipHistoryEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODirectoryMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryMembershipHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODirectoryMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDirectoryMembershipHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -255737,39 +254018,11 @@ func (ec *executionContext) marshalODirectoryMembershipHistoryOpType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDirectoryMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDirectoryMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -255841,39 +254094,11 @@ func (ec *executionContext) marshalODiscussionHistoryEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODiscussionHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDiscussionHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODiscussionHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDiscussionHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -255907,39 +254132,11 @@ func (ec *executionContext) marshalODiscussionHistoryOpType2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDiscussionHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDiscussionHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256011,39 +254208,11 @@ func (ec *executionContext) marshalODocumentDataHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalODocumentDataHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDocumentDataHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalODocumentDataHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐDocumentDataHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -256077,39 +254246,11 @@ func (ec *executionContext) marshalODocumentDataHistoryOpType2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNDocumentDataHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNDocumentDataHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256181,39 +254322,11 @@ func (ec *executionContext) marshalOEmailBrandingHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEmailBrandingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEmailBrandingHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEmailBrandingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEmailBrandingHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -256257,39 +254370,11 @@ func (ec *executionContext) marshalOEmailBrandingHistoryFont2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailBrandingHistoryFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailBrandingHistoryFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256338,39 +254423,11 @@ func (ec *executionContext) marshalOEmailBrandingHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailBrandingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailBrandingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256442,39 +254499,11 @@ func (ec *executionContext) marshalOEmailTemplateHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEmailTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEmailTemplateHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEmailTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEmailTemplateHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -256508,39 +254537,11 @@ func (ec *executionContext) marshalOEmailTemplateHistoryNotificationTemplateForm if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailTemplateHistoryNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailTemplateHistoryNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256589,39 +254590,11 @@ func (ec *executionContext) marshalOEmailTemplateHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEmailTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEmailTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256693,39 +254666,11 @@ func (ec *executionContext) marshalOEntityHistoryEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEntityHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEntityHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEntityHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEntityHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -256769,39 +254714,11 @@ func (ec *executionContext) marshalOEntityHistoryEntityStatus2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntityHistoryEntityStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEntityStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntityHistoryEntityStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEntityStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256860,39 +254777,11 @@ func (ec *executionContext) marshalOEntityHistoryFrequency2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntityHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntityHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -256941,39 +254830,11 @@ func (ec *executionContext) marshalOEntityHistoryOpType2ᚕgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntityHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntityHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -257045,39 +254906,11 @@ func (ec *executionContext) marshalOEntityTypeHistoryEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEntityTypeHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEntityTypeHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEntityTypeHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEntityTypeHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -257111,39 +254944,11 @@ func (ec *executionContext) marshalOEntityTypeHistoryOpType2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEntityTypeHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEntityTypeHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -257215,39 +255020,11 @@ func (ec *executionContext) marshalOEvidenceHistoryEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOEvidenceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEvidenceHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOEvidenceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐEvidenceHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -257291,39 +255068,11 @@ func (ec *executionContext) marshalOEvidenceHistoryEvidenceStatus2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEvidenceHistoryEvidenceStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEvidenceStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEvidenceHistoryEvidenceStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐEvidenceStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -257372,39 +255121,11 @@ func (ec *executionContext) marshalOEvidenceHistoryOpType2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNEvidenceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNEvidenceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -257476,39 +255197,11 @@ func (ec *executionContext) marshalOFileHistoryEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOFileHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFileHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOFileHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFileHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -257542,39 +255235,11 @@ func (ec *executionContext) marshalOFileHistoryOpType2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNFileHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNFileHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -257646,39 +255311,11 @@ func (ec *executionContext) marshalOFindingControlHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOFindingControlHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFindingControlHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOFindingControlHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFindingControlHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -257712,39 +255349,11 @@ func (ec *executionContext) marshalOFindingControlHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNFindingControlHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNFindingControlHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -257816,39 +255425,11 @@ func (ec *executionContext) marshalOFindingHistoryEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOFindingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFindingHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOFindingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐFindingHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -257882,39 +255463,11 @@ func (ec *executionContext) marshalOFindingHistoryOpType2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNFindingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNFindingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -257986,39 +255539,11 @@ func (ec *executionContext) marshalOGroupHistoryEdge2ᚕᚖgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOGroupHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOGroupHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -258052,39 +255577,11 @@ func (ec *executionContext) marshalOGroupHistoryOpType2ᚕgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -258156,39 +255653,11 @@ func (ec *executionContext) marshalOGroupMembershipHistoryEdge2ᚕᚖgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOGroupMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupMembershipHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOGroupMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupMembershipHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -258222,39 +255691,11 @@ func (ec *executionContext) marshalOGroupMembershipHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -258311,39 +255752,11 @@ func (ec *executionContext) marshalOGroupMembershipHistoryRole2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupMembershipHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupMembershipHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -258407,39 +255820,11 @@ func (ec *executionContext) marshalOGroupSettingHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOGroupSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupSettingHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOGroupSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐGroupSettingHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -258473,39 +255858,11 @@ func (ec *executionContext) marshalOGroupSettingHistoryJoinPolicy2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupSettingHistoryJoinPolicy2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJoinPolicy(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupSettingHistoryJoinPolicy2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJoinPolicy(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -258554,39 +255911,11 @@ func (ec *executionContext) marshalOGroupSettingHistoryOpType2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -258643,39 +255972,11 @@ func (ec *executionContext) marshalOGroupSettingHistoryVisibility2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNGroupSettingHistoryVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐVisibility(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNGroupSettingHistoryVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐVisibility(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -258739,39 +256040,11 @@ func (ec *executionContext) marshalOHushHistoryEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOHushHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐHushHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOHushHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐHushHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -258805,39 +256078,11 @@ func (ec *executionContext) marshalOHushHistoryOpType2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNHushHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNHushHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -258909,39 +256154,11 @@ func (ec *executionContext) marshalOIdentityHolderHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOIdentityHolderHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐIdentityHolderHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOIdentityHolderHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐIdentityHolderHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -258975,39 +256192,11 @@ func (ec *executionContext) marshalOIdentityHolderHistoryIdentityHolderType2ᚕg if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNIdentityHolderHistoryIdentityHolderType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐIdentityHolderType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNIdentityHolderHistoryIdentityHolderType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐIdentityHolderType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259056,39 +256245,11 @@ func (ec *executionContext) marshalOIdentityHolderHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNIdentityHolderHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNIdentityHolderHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259145,39 +256306,11 @@ func (ec *executionContext) marshalOIdentityHolderHistoryUserStatus2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNIdentityHolderHistoryUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNIdentityHolderHistoryUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259241,39 +256374,11 @@ func (ec *executionContext) marshalOIntegrationHistoryEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOIntegrationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐIntegrationHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOIntegrationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐIntegrationHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -259307,39 +256412,11 @@ func (ec *executionContext) marshalOIntegrationHistoryOpType2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNIntegrationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNIntegrationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259439,39 +256516,11 @@ func (ec *executionContext) marshalOInternalPolicyHistoryDocumentStatus2ᚕgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInternalPolicyHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInternalPolicyHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259502,39 +256551,11 @@ func (ec *executionContext) marshalOInternalPolicyHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOInternalPolicyHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐInternalPolicyHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOInternalPolicyHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐInternalPolicyHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -259578,39 +256599,11 @@ func (ec *executionContext) marshalOInternalPolicyHistoryFrequency2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInternalPolicyHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInternalPolicyHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259659,39 +256652,11 @@ func (ec *executionContext) marshalOInternalPolicyHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNInternalPolicyHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNInternalPolicyHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259763,39 +256728,11 @@ func (ec *executionContext) marshalOJobTemplateHistoryEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOJobTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐJobTemplateHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOJobTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐJobTemplateHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -259829,39 +256766,11 @@ func (ec *executionContext) marshalOJobTemplateHistoryJobPlatformType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNJobTemplateHistoryJobPlatformType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobPlatformType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNJobTemplateHistoryJobPlatformType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐJobPlatformType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -259910,39 +256819,11 @@ func (ec *executionContext) marshalOJobTemplateHistoryOpType2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNJobTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNJobTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260032,39 +256913,11 @@ func (ec *executionContext) marshalOMappableDomainHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOMappableDomainHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐMappableDomainHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOMappableDomainHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐMappableDomainHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -260098,39 +256951,11 @@ func (ec *executionContext) marshalOMappableDomainHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappableDomainHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappableDomainHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260202,39 +257027,11 @@ func (ec *executionContext) marshalOMappedControlHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOMappedControlHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐMappedControlHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOMappedControlHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐMappedControlHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -260278,39 +257075,11 @@ func (ec *executionContext) marshalOMappedControlHistoryMappingSource2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappedControlHistoryMappingSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappedControlHistoryMappingSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260359,39 +257128,11 @@ func (ec *executionContext) marshalOMappedControlHistoryMappingType2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappedControlHistoryMappingType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappedControlHistoryMappingType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐMappingType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260440,39 +257181,11 @@ func (ec *executionContext) marshalOMappedControlHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNMappedControlHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNMappedControlHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260544,39 +257257,11 @@ func (ec *executionContext) marshalONarrativeHistoryEdge2ᚕᚖgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONarrativeHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNarrativeHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONarrativeHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNarrativeHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -260610,39 +257295,11 @@ func (ec *executionContext) marshalONarrativeHistoryOpType2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNarrativeHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNarrativeHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260721,39 +257378,11 @@ func (ec *executionContext) marshalONoteHistoryEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONoteHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoteHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONoteHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNoteHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -260787,39 +257416,11 @@ func (ec *executionContext) marshalONoteHistoryOpType2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNoteHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNoteHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260909,39 +257510,11 @@ func (ec *executionContext) marshalONotificationPreferenceHistoryChannel2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceHistoryChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceHistoryChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -260972,39 +257545,11 @@ func (ec *executionContext) marshalONotificationPreferenceHistoryEdge2ᚕᚖgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONotificationPreferenceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNotificationPreferenceHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONotificationPreferenceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNotificationPreferenceHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -261038,39 +257583,11 @@ func (ec *executionContext) marshalONotificationPreferenceHistoryNotificationCad if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceHistoryNotificationCadence2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationCadence(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceHistoryNotificationCadence2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationCadence(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261119,39 +257636,11 @@ func (ec *executionContext) marshalONotificationPreferenceHistoryNotificationCha if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceHistoryNotificationChannelStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationChannelStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceHistoryNotificationChannelStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationChannelStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261200,39 +257689,11 @@ func (ec *executionContext) marshalONotificationPreferenceHistoryOpType2ᚕgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261299,39 +257760,11 @@ func (ec *executionContext) marshalONotificationPreferenceHistoryPriority2ᚕgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationPreferenceHistoryPriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationPreferenceHistoryPriority2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPriority(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261413,39 +257846,11 @@ func (ec *executionContext) marshalONotificationTemplateHistoryChannel2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationTemplateHistoryChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationTemplateHistoryChannel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐChannel(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261476,39 +257881,11 @@ func (ec *executionContext) marshalONotificationTemplateHistoryEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalONotificationTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNotificationTemplateHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalONotificationTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐNotificationTemplateHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -261542,39 +257919,11 @@ func (ec *executionContext) marshalONotificationTemplateHistoryNotificationTempl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationTemplateHistoryNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationTemplateHistoryNotificationTemplateFormat2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐNotificationTemplateFormat(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261623,39 +257972,11 @@ func (ec *executionContext) marshalONotificationTemplateHistoryOpType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNNotificationTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNNotificationTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261727,39 +258048,11 @@ func (ec *executionContext) marshalOOrgMembershipHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrgMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrgMembershipHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrgMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrgMembershipHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -261793,39 +258086,11 @@ func (ec *executionContext) marshalOOrgMembershipHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrgMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrgMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261882,39 +258147,11 @@ func (ec *executionContext) marshalOOrgMembershipHistoryRole2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrgMembershipHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrgMembershipHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -261978,39 +258215,11 @@ func (ec *executionContext) marshalOOrgSubscriptionHistoryEdge2ᚕᚖgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrgSubscriptionHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrgSubscriptionHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrgSubscriptionHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrgSubscriptionHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -262044,39 +258253,11 @@ func (ec *executionContext) marshalOOrgSubscriptionHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrgSubscriptionHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrgSubscriptionHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -262148,39 +258329,11 @@ func (ec *executionContext) marshalOOrganizationHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrganizationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrganizationHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrganizationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrganizationHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -262214,39 +258367,11 @@ func (ec *executionContext) marshalOOrganizationHistoryOpType2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganizationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganizationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -262318,39 +258443,11 @@ func (ec *executionContext) marshalOOrganizationSettingHistoryEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOOrganizationSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrganizationSettingHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOOrganizationSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐOrganizationSettingHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -262384,39 +258481,11 @@ func (ec *executionContext) marshalOOrganizationSettingHistoryOpType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganizationSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganizationSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -262483,39 +258552,11 @@ func (ec *executionContext) marshalOOrganizationSettingHistoryRegion2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganizationSettingHistoryRegion2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRegion(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganizationSettingHistoryRegion2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRegion(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -262574,39 +258615,11 @@ func (ec *executionContext) marshalOOrganizationSettingHistorySSOProvider2ᚕgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNOrganizationSettingHistorySSOProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSOProvider(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNOrganizationSettingHistorySSOProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSSOProvider(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -262670,39 +258683,11 @@ func (ec *executionContext) marshalOPlatformHistoryEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOPlatformHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐPlatformHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOPlatformHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐPlatformHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -262736,39 +258721,11 @@ func (ec *executionContext) marshalOPlatformHistoryOpType2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNPlatformHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNPlatformHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -262825,39 +258782,11 @@ func (ec *executionContext) marshalOPlatformHistoryPlatformStatus2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNPlatformHistoryPlatformStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPlatformStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNPlatformHistoryPlatformStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐPlatformStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -262906,39 +258835,11 @@ func (ec *executionContext) marshalOPlatformHistorySourceType2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNPlatformHistorySourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNPlatformHistorySourceType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐSourceType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263030,39 +258931,11 @@ func (ec *executionContext) marshalOProcedureHistoryDocumentStatus2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProcedureHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProcedureHistoryDocumentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263093,39 +258966,11 @@ func (ec *executionContext) marshalOProcedureHistoryEdge2ᚕᚖgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOProcedureHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProcedureHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOProcedureHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProcedureHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -263169,39 +259014,11 @@ func (ec *executionContext) marshalOProcedureHistoryFrequency2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProcedureHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProcedureHistoryFrequency2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFrequency(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263250,39 +259067,11 @@ func (ec *executionContext) marshalOProcedureHistoryOpType2ᚕgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProcedureHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProcedureHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263354,39 +259143,11 @@ func (ec *executionContext) marshalOProgramHistoryEdge2ᚕᚖgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOProgramHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProgramHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOProgramHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProgramHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -263420,39 +259181,11 @@ func (ec *executionContext) marshalOProgramHistoryOpType2ᚕgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgramHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgramHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263509,39 +259242,11 @@ func (ec *executionContext) marshalOProgramHistoryProgramStatus2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgramHistoryProgramStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐProgramStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgramHistoryProgramStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐProgramStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263605,39 +259310,11 @@ func (ec *executionContext) marshalOProgramMembershipHistoryEdge2ᚕᚖgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOProgramMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProgramMembershipHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOProgramMembershipHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐProgramMembershipHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -263671,39 +259348,11 @@ func (ec *executionContext) marshalOProgramMembershipHistoryOpType2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgramMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgramMembershipHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263760,39 +259409,11 @@ func (ec *executionContext) marshalOProgramMembershipHistoryRole2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNProgramMembershipHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNProgramMembershipHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -263856,39 +259477,11 @@ func (ec *executionContext) marshalORemediationHistoryEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalORemediationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐRemediationHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalORemediationHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐRemediationHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -263922,39 +259515,11 @@ func (ec *executionContext) marshalORemediationHistoryOpType2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRemediationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRemediationHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264026,39 +259591,11 @@ func (ec *executionContext) marshalOReviewHistoryEdge2ᚕᚖgithubᚗcomᚋtheop if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOReviewHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐReviewHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOReviewHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐReviewHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -264092,39 +259629,11 @@ func (ec *executionContext) marshalOReviewHistoryOpType2ᚕgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNReviewHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNReviewHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264196,39 +259705,11 @@ func (ec *executionContext) marshalORiskHistoryEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalORiskHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐRiskHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalORiskHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐRiskHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -264262,39 +259743,11 @@ func (ec *executionContext) marshalORiskHistoryOpType2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRiskHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRiskHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264361,39 +259814,11 @@ func (ec *executionContext) marshalORiskHistoryRiskImpact2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRiskHistoryRiskImpact2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskImpact(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRiskHistoryRiskImpact2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskImpact(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264452,39 +259877,11 @@ func (ec *executionContext) marshalORiskHistoryRiskLikelihood2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRiskHistoryRiskLikelihood2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskLikelihood(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRiskHistoryRiskLikelihood2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskLikelihood(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264543,39 +259940,11 @@ func (ec *executionContext) marshalORiskHistoryRiskStatus2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNRiskHistoryRiskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNRiskHistoryRiskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRiskStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264639,39 +260008,11 @@ func (ec *executionContext) marshalOScanHistoryEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOScanHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐScanHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOScanHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐScanHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -264705,39 +260046,11 @@ func (ec *executionContext) marshalOScanHistoryOpType2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScanHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScanHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264794,39 +260107,11 @@ func (ec *executionContext) marshalOScanHistoryScanStatus2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScanHistoryScanStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScanHistoryScanStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264875,39 +260160,11 @@ func (ec *executionContext) marshalOScanHistoryScanType2ᚕgithubᚗcomᚋtheope if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScanHistoryScanType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScanHistoryScanType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐScanType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -264971,39 +260228,11 @@ func (ec *executionContext) marshalOScheduledJobHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOScheduledJobHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐScheduledJobHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOScheduledJobHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐScheduledJobHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -265037,39 +260266,11 @@ func (ec *executionContext) marshalOScheduledJobHistoryOpType2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNScheduledJobHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNScheduledJobHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -265141,39 +260342,11 @@ func (ec *executionContext) marshalOStandardHistoryEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOStandardHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐStandardHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOStandardHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐStandardHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -265207,39 +260380,11 @@ func (ec *executionContext) marshalOStandardHistoryOpType2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNStandardHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNStandardHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -265306,39 +260451,11 @@ func (ec *executionContext) marshalOStandardHistoryStandardStatus2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNStandardHistoryStandardStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐStandardStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNStandardHistoryStandardStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐStandardStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -265430,39 +260547,11 @@ func (ec *executionContext) marshalOSubcontrolHistoryControlSource2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubcontrolHistoryControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubcontrolHistoryControlSource2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlSource(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -265521,39 +260610,11 @@ func (ec *executionContext) marshalOSubcontrolHistoryControlStatus2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubcontrolHistoryControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubcontrolHistoryControlStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐControlStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -265584,39 +260645,11 @@ func (ec *executionContext) marshalOSubcontrolHistoryEdge2ᚕᚖgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOSubcontrolHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐSubcontrolHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOSubcontrolHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐSubcontrolHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -265650,39 +260683,11 @@ func (ec *executionContext) marshalOSubcontrolHistoryOpType2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubcontrolHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubcontrolHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -265754,39 +260759,11 @@ func (ec *executionContext) marshalOSubprocessorHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOSubprocessorHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐSubprocessorHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOSubprocessorHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐSubprocessorHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -265820,39 +260797,11 @@ func (ec *executionContext) marshalOSubprocessorHistoryOpType2ᚕgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNSubprocessorHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNSubprocessorHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -265924,39 +260873,11 @@ func (ec *executionContext) marshalOTaskHistoryEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTaskHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTaskHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTaskHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTaskHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -265990,39 +260911,11 @@ func (ec *executionContext) marshalOTaskHistoryOpType2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTaskHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTaskHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -266079,39 +260972,11 @@ func (ec *executionContext) marshalOTaskHistoryTaskStatus2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTaskHistoryTaskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTaskStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTaskHistoryTaskStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTaskStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -266193,39 +261058,11 @@ func (ec *executionContext) marshalOTemplateHistoryDocumentType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTemplateHistoryDocumentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTemplateHistoryDocumentType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐDocumentType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -266256,39 +261093,11 @@ func (ec *executionContext) marshalOTemplateHistoryEdge2ᚕᚖgithubᚗcomᚋthe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTemplateHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTemplateHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTemplateHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -266322,39 +261131,11 @@ func (ec *executionContext) marshalOTemplateHistoryOpType2ᚕgithubᚗcomᚋtheo if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTemplateHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -266421,39 +261202,11 @@ func (ec *executionContext) marshalOTemplateHistoryTemplateKind2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTemplateHistoryTemplateKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTemplateKind(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTemplateHistoryTemplateKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTemplateKind(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -266583,39 +261336,11 @@ func (ec *executionContext) marshalOTrustCenterComplianceHistoryEdge2ᚕᚖgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterComplianceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterComplianceHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterComplianceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterComplianceHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -266649,39 +261374,11 @@ func (ec *executionContext) marshalOTrustCenterComplianceHistoryOpType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterComplianceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterComplianceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -266753,39 +261450,11 @@ func (ec *executionContext) marshalOTrustCenterDocHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterDocHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterDocHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterDocHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterDocHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -266819,39 +261488,11 @@ func (ec *executionContext) marshalOTrustCenterDocHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterDocHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterDocHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -266918,39 +261559,11 @@ func (ec *executionContext) marshalOTrustCenterDocHistoryTrustCenterDocumentVisi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterDocHistoryTrustCenterDocumentVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterDocumentVisibility(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterDocHistoryTrustCenterDocumentVisibility2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterDocumentVisibility(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267009,39 +261622,11 @@ func (ec *executionContext) marshalOTrustCenterDocHistoryWatermarkStatus2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterDocHistoryWatermarkStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWatermarkStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterDocHistoryWatermarkStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWatermarkStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267105,39 +261690,11 @@ func (ec *executionContext) marshalOTrustCenterEntityHistoryEdge2ᚕᚖgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterEntityHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterEntityHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterEntityHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterEntityHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -267171,39 +261728,11 @@ func (ec *executionContext) marshalOTrustCenterEntityHistoryOpType2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterEntityHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterEntityHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267275,39 +261804,11 @@ func (ec *executionContext) marshalOTrustCenterFAQHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterFAQHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterFAQHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterFAQHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterFAQHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -267341,39 +261842,11 @@ func (ec *executionContext) marshalOTrustCenterFAQHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterFAQHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterFAQHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267445,39 +261918,11 @@ func (ec *executionContext) marshalOTrustCenterHistoryEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -267511,39 +261956,11 @@ func (ec *executionContext) marshalOTrustCenterHistoryOpType2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267610,39 +262027,11 @@ func (ec *executionContext) marshalOTrustCenterHistoryTrustCenterPreviewStatus2 if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterHistoryTrustCenterPreviewStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterPreviewStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterHistoryTrustCenterPreviewStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterPreviewStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267706,39 +262095,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequestHistoryEdge2ᚕᚖgithu if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterNDARequestHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterNDARequestHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterNDARequestHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterNDARequestHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -267772,39 +262133,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequestHistoryOpType2ᚕgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterNDARequestHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterNDARequestHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267871,39 +262204,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequestHistoryTrustCenterNDARe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterNDARequestHistoryTrustCenterNDARequestAccessLevel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestAccessLevel(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterNDARequestHistoryTrustCenterNDARequestAccessLevel2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestAccessLevel(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -267962,39 +262267,11 @@ func (ec *executionContext) marshalOTrustCenterNDARequestHistoryTrustCenterNDARe if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterNDARequestHistoryTrustCenterNDARequestStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterNDARequestHistoryTrustCenterNDARequestStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterNDARequestStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268058,39 +262335,11 @@ func (ec *executionContext) marshalOTrustCenterSettingHistoryEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterSettingHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterSettingHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -268124,39 +262373,11 @@ func (ec *executionContext) marshalOTrustCenterSettingHistoryOpType2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268223,39 +262444,11 @@ func (ec *executionContext) marshalOTrustCenterSettingHistoryTrustCenterEnvironm if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSettingHistoryTrustCenterEnvironment2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterEnvironment(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSettingHistoryTrustCenterEnvironment2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterEnvironment(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268314,39 +262507,11 @@ func (ec *executionContext) marshalOTrustCenterSettingHistoryTrustCenterThemeMod if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSettingHistoryTrustCenterThemeMode2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterThemeMode(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSettingHistoryTrustCenterThemeMode2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐTrustCenterThemeMode(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268410,39 +262575,11 @@ func (ec *executionContext) marshalOTrustCenterSubprocessorHistoryEdge2ᚕᚖgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterSubprocessorHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterSubprocessorHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterSubprocessorHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterSubprocessorHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -268476,39 +262613,11 @@ func (ec *executionContext) marshalOTrustCenterSubprocessorHistoryOpType2ᚕgith if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterSubprocessorHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterSubprocessorHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268580,39 +262689,11 @@ func (ec *executionContext) marshalOTrustCenterWatermarkConfigHistoryEdge2ᚕᚖ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOTrustCenterWatermarkConfigHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterWatermarkConfigHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOTrustCenterWatermarkConfigHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐTrustCenterWatermarkConfigHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -268656,39 +262737,11 @@ func (ec *executionContext) marshalOTrustCenterWatermarkConfigHistoryFont2ᚕgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterWatermarkConfigHistoryFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterWatermarkConfigHistoryFont2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐFont(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268737,39 +262790,11 @@ func (ec *executionContext) marshalOTrustCenterWatermarkConfigHistoryOpType2ᚕg if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNTrustCenterWatermarkConfigHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNTrustCenterWatermarkConfigHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268869,39 +262894,11 @@ func (ec *executionContext) marshalOUserHistoryAuthProvider2ᚕgithubᚗcomᚋth if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserHistoryAuthProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAuthProvider(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserHistoryAuthProvider2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐAuthProvider(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -268932,39 +262929,11 @@ func (ec *executionContext) marshalOUserHistoryEdge2ᚕᚖgithubᚗcomᚋtheopen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOUserHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐUserHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOUserHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐUserHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -268998,39 +262967,11 @@ func (ec *executionContext) marshalOUserHistoryOpType2ᚕgithubᚗcomᚋtheopenl if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -269097,39 +263038,11 @@ func (ec *executionContext) marshalOUserHistoryRole2ᚕgithubᚗcomᚋtheopenlan if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserHistoryRole2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐRole(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -269193,39 +263106,11 @@ func (ec *executionContext) marshalOUserSettingHistoryEdge2ᚕᚖgithubᚗcomᚋ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOUserSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐUserSettingHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOUserSettingHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐUserSettingHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -269259,39 +263144,11 @@ func (ec *executionContext) marshalOUserSettingHistoryOpType2ᚕgithubᚗcomᚋt if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserSettingHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -269348,39 +263205,11 @@ func (ec *executionContext) marshalOUserSettingHistoryUserStatus2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNUserSettingHistoryUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNUserSettingHistoryUserStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐUserStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -269444,39 +263273,11 @@ func (ec *executionContext) marshalOVulnerabilityHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOVulnerabilityHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐVulnerabilityHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOVulnerabilityHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐVulnerabilityHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -269510,39 +263311,11 @@ func (ec *executionContext) marshalOVulnerabilityHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNVulnerabilityHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNVulnerabilityHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -269614,39 +263387,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentHistoryEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowAssignmentHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowAssignmentHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowAssignmentHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowAssignmentHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -269680,39 +263425,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentHistoryOpType2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowAssignmentHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowAssignmentHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -269795,39 +263512,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentHistoryWorkflowAssignmentS if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowAssignmentHistoryWorkflowAssignmentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowAssignmentStatus(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowAssignmentHistoryWorkflowAssignmentStatus2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowAssignmentStatus(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -269865,39 +263554,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentTargetHistoryEdge2ᚕᚖgi if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowAssignmentTargetHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowAssignmentTargetHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowAssignmentTargetHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowAssignmentTargetHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -269931,39 +263592,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentTargetHistoryOpType2ᚕgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowAssignmentTargetHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowAssignmentTargetHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270046,39 +263679,11 @@ func (ec *executionContext) marshalOWorkflowAssignmentTargetHistoryWorkflowTarge if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowAssignmentTargetHistoryWorkflowTargetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowTargetType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowAssignmentTargetHistoryWorkflowTargetType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowTargetType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270116,39 +263721,11 @@ func (ec *executionContext) marshalOWorkflowDefinitionHistoryEdge2ᚕᚖgithub if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowDefinitionHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowDefinitionHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowDefinitionHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowDefinitionHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -270182,39 +263759,11 @@ func (ec *executionContext) marshalOWorkflowDefinitionHistoryOpType2ᚕgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowDefinitionHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowDefinitionHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270297,39 +263846,11 @@ func (ec *executionContext) marshalOWorkflowDefinitionHistoryWorkflowKind2ᚕgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowDefinitionHistoryWorkflowKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowKind(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowDefinitionHistoryWorkflowKind2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowKind(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270367,39 +263888,11 @@ func (ec *executionContext) marshalOWorkflowEventHistoryEdge2ᚕᚖgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowEventHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowEventHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowEventHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowEventHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -270433,39 +263926,11 @@ func (ec *executionContext) marshalOWorkflowEventHistoryOpType2ᚕgithubᚗcom if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowEventHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowEventHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270548,39 +264013,11 @@ func (ec *executionContext) marshalOWorkflowEventHistoryWorkflowEventType2ᚕgit if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowEventHistoryWorkflowEventType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowEventType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowEventHistoryWorkflowEventType2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowEventType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270618,39 +264055,11 @@ func (ec *executionContext) marshalOWorkflowInstanceHistoryEdge2ᚕᚖgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowInstanceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowInstanceHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowInstanceHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowInstanceHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -270684,39 +264093,11 @@ func (ec *executionContext) marshalOWorkflowInstanceHistoryOpType2ᚕgithubᚗco if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowInstanceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowInstanceHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270799,39 +264180,11 @@ func (ec *executionContext) marshalOWorkflowInstanceHistoryWorkflowInstanceState if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowInstanceHistoryWorkflowInstanceState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowInstanceState(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowInstanceHistoryWorkflowInstanceState2githubᚗcomᚋtheopenlaneᚋcoreᚋcommonᚋenumsᚐWorkflowInstanceState(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -270869,39 +264222,11 @@ func (ec *executionContext) marshalOWorkflowObjectRefHistoryEdge2ᚕᚖgithubᚗ if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalOWorkflowObjectRefHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowObjectRefHistoryEdge(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalOWorkflowObjectRefHistoryEdge2ᚖgithubᚗcomᚋtheopenlaneᚋcoreᚋinternalᚋentᚋhistorygeneratedᚐWorkflowObjectRefHistoryEdge(ctx, sel, v[i]) + }) return ret } @@ -270935,39 +264260,11 @@ func (ec *executionContext) marshalOWorkflowObjectRefHistoryOpType2ᚕgithubᚗc if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalNWorkflowObjectRefHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalNWorkflowObjectRefHistoryOpType2githubᚗcomᚋtheopenlaneᚋentxᚋhistoryᚐOpType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/historygenerated/prelude.generated.go b/internal/graphapi/historygenerated/prelude.generated.go index 78946a484a..4b8346e5b4 100644 --- a/internal/graphapi/historygenerated/prelude.generated.go +++ b/internal/graphapi/historygenerated/prelude.generated.go @@ -7,7 +7,6 @@ import ( "errors" "fmt" "strconv" - "sync" "sync/atomic" "github.com/99designs/gqlgen/graphql" @@ -1586,10 +1585,10 @@ func (ec *executionContext) ___Directive(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1634,10 +1633,10 @@ func (ec *executionContext) ___EnumValue(ctx context.Context, sel ast.SelectionS return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1692,10 +1691,10 @@ func (ec *executionContext) ___Field(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1747,10 +1746,10 @@ func (ec *executionContext) ___InputValue(ctx context.Context, sel ast.Selection return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1802,10 +1801,10 @@ func (ec *executionContext) ___Schema(ctx context.Context, sel ast.SelectionSet, return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -1861,10 +1860,10 @@ func (ec *executionContext) ___Type(ctx context.Context, sel ast.SelectionSet, o return graphql.Null } - atomic.AddInt32(&ec.deferred, int32(len(deferred))) + atomic.AddInt32(&ec.Deferred, int32(len(deferred))) for label, dfs := range deferred { - ec.processDeferredGroup(graphql.DeferredGroup{ + ec.ProcessDeferredGroup(graphql.DeferredGroup{ Label: label, Path: graphql.GetPath(ctx), FieldSet: dfs, @@ -2010,39 +2009,11 @@ func (ec *executionContext) marshalN__Directive2githubᚗcomᚋ99designsᚋgqlge } func (ec *executionContext) marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirectiveᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Directive) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2085,39 +2056,11 @@ func (ec *executionContext) unmarshalN__DirectiveLocation2ᚕstringᚄ(ctx conte } func (ec *executionContext) marshalN__DirectiveLocation2ᚕstringᚄ(ctx context.Context, sel ast.SelectionSet, v []string) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__DirectiveLocation2string(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__DirectiveLocation2string(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2141,39 +2084,11 @@ func (ec *executionContext) marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlg } func (ec *executionContext) marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.InputValue) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2189,39 +2104,11 @@ func (ec *executionContext) marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋg } func (ec *executionContext) marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Type) graphql.Marshaler { - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2624,39 +2511,11 @@ func (ec *executionContext) marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋgq if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2671,39 +2530,11 @@ func (ec *executionContext) marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlgen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2718,39 +2549,11 @@ func (ec *executionContext) marshalO__InputValue2ᚕgithubᚗcomᚋ99designsᚋg if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { @@ -2772,39 +2575,11 @@ func (ec *executionContext) marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgen if v == nil { return graphql.Null } - ret := make(graphql.Array, len(v)) - var wg sync.WaitGroup - isLen1 := len(v) == 1 - if !isLen1 { - wg.Add(len(v)) - } - for i := range v { - i := i - fc := &graphql.FieldContext{ - Index: &i, - Result: &v[i], - } - ctx := graphql.WithFieldContext(ctx, fc) - f := func(i int) { - defer func() { - if r := recover(); r != nil { - ec.Error(ctx, ec.Recover(ctx, r)) - ret = nil - } - }() - if !isLen1 { - defer wg.Done() - } - ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) - } - if isLen1 { - f(i) - } else { - go f(i) - } - - } - wg.Wait() + ret := graphql.MarshalSliceConcurrently(ctx, len(v), 0, false, func(ctx context.Context, i int) graphql.Marshaler { + fc := graphql.GetFieldContext(ctx) + fc.Result = &v[i] + return ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i]) + }) for _, e := range ret { if e == graphql.Null { diff --git a/internal/graphapi/historygenerated/root_.generated.go b/internal/graphapi/historygenerated/root_.generated.go index f63fcb712e..dc65e74fce 100644 --- a/internal/graphapi/historygenerated/root_.generated.go +++ b/internal/graphapi/historygenerated/root_.generated.go @@ -5,12 +5,10 @@ package gqlhistorygenerated import ( "bytes" "context" - "errors" "sync/atomic" "entgo.io/contrib/entgql" "github.com/99designs/gqlgen/graphql" - "github.com/99designs/gqlgen/graphql/introspection" "github.com/theopenlane/core/common/enums" "github.com/theopenlane/core/internal/ent/historygenerated" gqlparser "github.com/vektah/gqlparser/v2" @@ -19,20 +17,10 @@ import ( // NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface. func NewExecutableSchema(cfg Config) graphql.ExecutableSchema { - return &executableSchema{ - schema: cfg.Schema, - resolvers: cfg.Resolvers, - directives: cfg.Directives, - complexity: cfg.Complexity, - } + return &executableSchema{SchemaData: cfg.Schema, Resolvers: cfg.Resolvers, Directives: cfg.Directives, ComplexityRoot: cfg.Complexity} } -type Config struct { - Schema *ast.Schema - Resolvers ResolverRoot - Directives DirectiveRoot - Complexity ComplexityRoot -} +type Config = graphql.Config[ResolverRoot, DirectiveRoot, ComplexityRoot] type ResolverRoot interface { Query() QueryResolver @@ -3119,10471 +3107,10466 @@ type ComplexityRoot struct { } } -type executableSchema struct { - schema *ast.Schema - resolvers ResolverRoot - directives DirectiveRoot - complexity ComplexityRoot -} +type executableSchema graphql.ExecutableSchemaState[ResolverRoot, DirectiveRoot, ComplexityRoot] func (e *executableSchema) Schema() *ast.Schema { - if e.schema != nil { - return e.schema + if e.SchemaData != nil { + return e.SchemaData } return parsedSchema } func (e *executableSchema) Complexity(ctx context.Context, typeName, field string, childComplexity int, rawArgs map[string]any) (int, bool) { - ec := executionContext{nil, e, 0, 0, nil} + ec := newExecutionContext(nil, e, nil) _ = ec switch typeName + "." + field { case "ActionPlanHistory.actionPlanKindID": - if e.complexity.ActionPlanHistory.ActionPlanKindID == nil { + if e.ComplexityRoot.ActionPlanHistory.ActionPlanKindID == nil { break } - return e.complexity.ActionPlanHistory.ActionPlanKindID(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ActionPlanKindID(childComplexity), true case "ActionPlanHistory.actionPlanKindName": - if e.complexity.ActionPlanHistory.ActionPlanKindName == nil { + if e.ComplexityRoot.ActionPlanHistory.ActionPlanKindName == nil { break } - return e.complexity.ActionPlanHistory.ActionPlanKindName(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ActionPlanKindName(childComplexity), true case "ActionPlanHistory.approvalRequired": - if e.complexity.ActionPlanHistory.ApprovalRequired == nil { + if e.ComplexityRoot.ActionPlanHistory.ApprovalRequired == nil { break } - return e.complexity.ActionPlanHistory.ApprovalRequired(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ApprovalRequired(childComplexity), true case "ActionPlanHistory.approverID": - if e.complexity.ActionPlanHistory.ApproverID == nil { + if e.ComplexityRoot.ActionPlanHistory.ApproverID == nil { break } - return e.complexity.ActionPlanHistory.ApproverID(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ApproverID(childComplexity), true case "ActionPlanHistory.blocked": - if e.complexity.ActionPlanHistory.Blocked == nil { + if e.ComplexityRoot.ActionPlanHistory.Blocked == nil { break } - return e.complexity.ActionPlanHistory.Blocked(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Blocked(childComplexity), true case "ActionPlanHistory.blockerReason": - if e.complexity.ActionPlanHistory.BlockerReason == nil { + if e.ComplexityRoot.ActionPlanHistory.BlockerReason == nil { break } - return e.complexity.ActionPlanHistory.BlockerReason(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.BlockerReason(childComplexity), true case "ActionPlanHistory.completedAt": - if e.complexity.ActionPlanHistory.CompletedAt == nil { + if e.ComplexityRoot.ActionPlanHistory.CompletedAt == nil { break } - return e.complexity.ActionPlanHistory.CompletedAt(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.CompletedAt(childComplexity), true case "ActionPlanHistory.controlSuggestions": - if e.complexity.ActionPlanHistory.ControlSuggestions == nil { + if e.ComplexityRoot.ActionPlanHistory.ControlSuggestions == nil { break } - return e.complexity.ActionPlanHistory.ControlSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ControlSuggestions(childComplexity), true case "ActionPlanHistory.createdAt": - if e.complexity.ActionPlanHistory.CreatedAt == nil { + if e.ComplexityRoot.ActionPlanHistory.CreatedAt == nil { break } - return e.complexity.ActionPlanHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.CreatedAt(childComplexity), true case "ActionPlanHistory.createdBy": - if e.complexity.ActionPlanHistory.CreatedBy == nil { + if e.ComplexityRoot.ActionPlanHistory.CreatedBy == nil { break } - return e.complexity.ActionPlanHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.CreatedBy(childComplexity), true case "ActionPlanHistory.delegateID": - if e.complexity.ActionPlanHistory.DelegateID == nil { + if e.ComplexityRoot.ActionPlanHistory.DelegateID == nil { break } - return e.complexity.ActionPlanHistory.DelegateID(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.DelegateID(childComplexity), true case "ActionPlanHistory.description": - if e.complexity.ActionPlanHistory.Description == nil { + if e.ComplexityRoot.ActionPlanHistory.Description == nil { break } - return e.complexity.ActionPlanHistory.Description(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Description(childComplexity), true case "ActionPlanHistory.details": - if e.complexity.ActionPlanHistory.Details == nil { + if e.ComplexityRoot.ActionPlanHistory.Details == nil { break } - return e.complexity.ActionPlanHistory.Details(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Details(childComplexity), true case "ActionPlanHistory.detailsJSON": - if e.complexity.ActionPlanHistory.DetailsJSON == nil { + if e.ComplexityRoot.ActionPlanHistory.DetailsJSON == nil { break } - return e.complexity.ActionPlanHistory.DetailsJSON(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.DetailsJSON(childComplexity), true case "ActionPlanHistory.dismissedControlSuggestions": - if e.complexity.ActionPlanHistory.DismissedControlSuggestions == nil { + if e.ComplexityRoot.ActionPlanHistory.DismissedControlSuggestions == nil { break } - return e.complexity.ActionPlanHistory.DismissedControlSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.DismissedControlSuggestions(childComplexity), true case "ActionPlanHistory.dismissedImprovementSuggestions": - if e.complexity.ActionPlanHistory.DismissedImprovementSuggestions == nil { + if e.ComplexityRoot.ActionPlanHistory.DismissedImprovementSuggestions == nil { break } - return e.complexity.ActionPlanHistory.DismissedImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.DismissedImprovementSuggestions(childComplexity), true case "ActionPlanHistory.dismissedTagSuggestions": - if e.complexity.ActionPlanHistory.DismissedTagSuggestions == nil { + if e.ComplexityRoot.ActionPlanHistory.DismissedTagSuggestions == nil { break } - return e.complexity.ActionPlanHistory.DismissedTagSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.DismissedTagSuggestions(childComplexity), true case "ActionPlanHistory.dueDate": - if e.complexity.ActionPlanHistory.DueDate == nil { + if e.ComplexityRoot.ActionPlanHistory.DueDate == nil { break } - return e.complexity.ActionPlanHistory.DueDate(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.DueDate(childComplexity), true case "ActionPlanHistory.fileID": - if e.complexity.ActionPlanHistory.FileID == nil { + if e.ComplexityRoot.ActionPlanHistory.FileID == nil { break } - return e.complexity.ActionPlanHistory.FileID(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.FileID(childComplexity), true case "ActionPlanHistory.historyTime": - if e.complexity.ActionPlanHistory.HistoryTime == nil { + if e.ComplexityRoot.ActionPlanHistory.HistoryTime == nil { break } - return e.complexity.ActionPlanHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.HistoryTime(childComplexity), true case "ActionPlanHistory.id": - if e.complexity.ActionPlanHistory.ID == nil { + if e.ComplexityRoot.ActionPlanHistory.ID == nil { break } - return e.complexity.ActionPlanHistory.ID(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ID(childComplexity), true case "ActionPlanHistory.improvementSuggestions": - if e.complexity.ActionPlanHistory.ImprovementSuggestions == nil { + if e.ComplexityRoot.ActionPlanHistory.ImprovementSuggestions == nil { break } - return e.complexity.ActionPlanHistory.ImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ImprovementSuggestions(childComplexity), true case "ActionPlanHistory.internalNotes": - if e.complexity.ActionPlanHistory.InternalNotes == nil { + if e.ComplexityRoot.ActionPlanHistory.InternalNotes == nil { break } - return e.complexity.ActionPlanHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.InternalNotes(childComplexity), true case "ActionPlanHistory.metadata": - if e.complexity.ActionPlanHistory.Metadata == nil { + if e.ComplexityRoot.ActionPlanHistory.Metadata == nil { break } - return e.complexity.ActionPlanHistory.Metadata(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Metadata(childComplexity), true case "ActionPlanHistory.name": - if e.complexity.ActionPlanHistory.Name == nil { + if e.ComplexityRoot.ActionPlanHistory.Name == nil { break } - return e.complexity.ActionPlanHistory.Name(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Name(childComplexity), true case "ActionPlanHistory.operation": - if e.complexity.ActionPlanHistory.Operation == nil { + if e.ComplexityRoot.ActionPlanHistory.Operation == nil { break } - return e.complexity.ActionPlanHistory.Operation(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Operation(childComplexity), true case "ActionPlanHistory.ownerID": - if e.complexity.ActionPlanHistory.OwnerID == nil { + if e.ComplexityRoot.ActionPlanHistory.OwnerID == nil { break } - return e.complexity.ActionPlanHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.OwnerID(childComplexity), true case "ActionPlanHistory.priority": - if e.complexity.ActionPlanHistory.Priority == nil { + if e.ComplexityRoot.ActionPlanHistory.Priority == nil { break } - return e.complexity.ActionPlanHistory.Priority(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Priority(childComplexity), true case "ActionPlanHistory.rawPayload": - if e.complexity.ActionPlanHistory.RawPayload == nil { + if e.ComplexityRoot.ActionPlanHistory.RawPayload == nil { break } - return e.complexity.ActionPlanHistory.RawPayload(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.RawPayload(childComplexity), true case "ActionPlanHistory.ref": - if e.complexity.ActionPlanHistory.Ref == nil { + if e.ComplexityRoot.ActionPlanHistory.Ref == nil { break } - return e.complexity.ActionPlanHistory.Ref(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Ref(childComplexity), true case "ActionPlanHistory.requiresApproval": - if e.complexity.ActionPlanHistory.RequiresApproval == nil { + if e.ComplexityRoot.ActionPlanHistory.RequiresApproval == nil { break } - return e.complexity.ActionPlanHistory.RequiresApproval(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.RequiresApproval(childComplexity), true case "ActionPlanHistory.reviewDue": - if e.complexity.ActionPlanHistory.ReviewDue == nil { + if e.ComplexityRoot.ActionPlanHistory.ReviewDue == nil { break } - return e.complexity.ActionPlanHistory.ReviewDue(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ReviewDue(childComplexity), true case "ActionPlanHistory.reviewFrequency": - if e.complexity.ActionPlanHistory.ReviewFrequency == nil { + if e.ComplexityRoot.ActionPlanHistory.ReviewFrequency == nil { break } - return e.complexity.ActionPlanHistory.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.ReviewFrequency(childComplexity), true case "ActionPlanHistory.revision": - if e.complexity.ActionPlanHistory.Revision == nil { + if e.ComplexityRoot.ActionPlanHistory.Revision == nil { break } - return e.complexity.ActionPlanHistory.Revision(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Revision(childComplexity), true case "ActionPlanHistory.source": - if e.complexity.ActionPlanHistory.Source == nil { + if e.ComplexityRoot.ActionPlanHistory.Source == nil { break } - return e.complexity.ActionPlanHistory.Source(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Source(childComplexity), true case "ActionPlanHistory.status": - if e.complexity.ActionPlanHistory.Status == nil { + if e.ComplexityRoot.ActionPlanHistory.Status == nil { break } - return e.complexity.ActionPlanHistory.Status(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Status(childComplexity), true case "ActionPlanHistory.summary": - if e.complexity.ActionPlanHistory.Summary == nil { + if e.ComplexityRoot.ActionPlanHistory.Summary == nil { break } - return e.complexity.ActionPlanHistory.Summary(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Summary(childComplexity), true case "ActionPlanHistory.systemInternalID": - if e.complexity.ActionPlanHistory.SystemInternalID == nil { + if e.ComplexityRoot.ActionPlanHistory.SystemInternalID == nil { break } - return e.complexity.ActionPlanHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.SystemInternalID(childComplexity), true case "ActionPlanHistory.systemOwned": - if e.complexity.ActionPlanHistory.SystemOwned == nil { + if e.ComplexityRoot.ActionPlanHistory.SystemOwned == nil { break } - return e.complexity.ActionPlanHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.SystemOwned(childComplexity), true case "ActionPlanHistory.tagSuggestions": - if e.complexity.ActionPlanHistory.TagSuggestions == nil { + if e.ComplexityRoot.ActionPlanHistory.TagSuggestions == nil { break } - return e.complexity.ActionPlanHistory.TagSuggestions(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.TagSuggestions(childComplexity), true case "ActionPlanHistory.tags": - if e.complexity.ActionPlanHistory.Tags == nil { + if e.ComplexityRoot.ActionPlanHistory.Tags == nil { break } - return e.complexity.ActionPlanHistory.Tags(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Tags(childComplexity), true case "ActionPlanHistory.title": - if e.complexity.ActionPlanHistory.Title == nil { + if e.ComplexityRoot.ActionPlanHistory.Title == nil { break } - return e.complexity.ActionPlanHistory.Title(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.Title(childComplexity), true case "ActionPlanHistory.url": - if e.complexity.ActionPlanHistory.URL == nil { + if e.ComplexityRoot.ActionPlanHistory.URL == nil { break } - return e.complexity.ActionPlanHistory.URL(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.URL(childComplexity), true case "ActionPlanHistory.updatedAt": - if e.complexity.ActionPlanHistory.UpdatedAt == nil { + if e.ComplexityRoot.ActionPlanHistory.UpdatedAt == nil { break } - return e.complexity.ActionPlanHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.UpdatedAt(childComplexity), true case "ActionPlanHistory.updatedBy": - if e.complexity.ActionPlanHistory.UpdatedBy == nil { + if e.ComplexityRoot.ActionPlanHistory.UpdatedBy == nil { break } - return e.complexity.ActionPlanHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.UpdatedBy(childComplexity), true case "ActionPlanHistory.workflowEligibleMarker": - if e.complexity.ActionPlanHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.ActionPlanHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.ActionPlanHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.ActionPlanHistory.WorkflowEligibleMarker(childComplexity), true case "ActionPlanHistoryConnection.edges": - if e.complexity.ActionPlanHistoryConnection.Edges == nil { + if e.ComplexityRoot.ActionPlanHistoryConnection.Edges == nil { break } - return e.complexity.ActionPlanHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ActionPlanHistoryConnection.Edges(childComplexity), true case "ActionPlanHistoryConnection.pageInfo": - if e.complexity.ActionPlanHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ActionPlanHistoryConnection.PageInfo == nil { break } - return e.complexity.ActionPlanHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ActionPlanHistoryConnection.PageInfo(childComplexity), true case "ActionPlanHistoryConnection.totalCount": - if e.complexity.ActionPlanHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ActionPlanHistoryConnection.TotalCount == nil { break } - return e.complexity.ActionPlanHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ActionPlanHistoryConnection.TotalCount(childComplexity), true case "ActionPlanHistoryEdge.cursor": - if e.complexity.ActionPlanHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ActionPlanHistoryEdge.Cursor == nil { break } - return e.complexity.ActionPlanHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ActionPlanHistoryEdge.Cursor(childComplexity), true case "ActionPlanHistoryEdge.node": - if e.complexity.ActionPlanHistoryEdge.Node == nil { + if e.ComplexityRoot.ActionPlanHistoryEdge.Node == nil { break } - return e.complexity.ActionPlanHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ActionPlanHistoryEdge.Node(childComplexity), true case "AssessmentHistory.assessmentType": - if e.complexity.AssessmentHistory.AssessmentType == nil { + if e.ComplexityRoot.AssessmentHistory.AssessmentType == nil { break } - return e.complexity.AssessmentHistory.AssessmentType(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.AssessmentType(childComplexity), true case "AssessmentHistory.createdAt": - if e.complexity.AssessmentHistory.CreatedAt == nil { + if e.ComplexityRoot.AssessmentHistory.CreatedAt == nil { break } - return e.complexity.AssessmentHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.CreatedAt(childComplexity), true case "AssessmentHistory.createdBy": - if e.complexity.AssessmentHistory.CreatedBy == nil { + if e.ComplexityRoot.AssessmentHistory.CreatedBy == nil { break } - return e.complexity.AssessmentHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.CreatedBy(childComplexity), true case "AssessmentHistory.historyTime": - if e.complexity.AssessmentHistory.HistoryTime == nil { + if e.ComplexityRoot.AssessmentHistory.HistoryTime == nil { break } - return e.complexity.AssessmentHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.HistoryTime(childComplexity), true case "AssessmentHistory.id": - if e.complexity.AssessmentHistory.ID == nil { + if e.ComplexityRoot.AssessmentHistory.ID == nil { break } - return e.complexity.AssessmentHistory.ID(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.ID(childComplexity), true case "AssessmentHistory.jsonconfig": - if e.complexity.AssessmentHistory.Jsonconfig == nil { + if e.ComplexityRoot.AssessmentHistory.Jsonconfig == nil { break } - return e.complexity.AssessmentHistory.Jsonconfig(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.Jsonconfig(childComplexity), true case "AssessmentHistory.name": - if e.complexity.AssessmentHistory.Name == nil { + if e.ComplexityRoot.AssessmentHistory.Name == nil { break } - return e.complexity.AssessmentHistory.Name(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.Name(childComplexity), true case "AssessmentHistory.operation": - if e.complexity.AssessmentHistory.Operation == nil { + if e.ComplexityRoot.AssessmentHistory.Operation == nil { break } - return e.complexity.AssessmentHistory.Operation(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.Operation(childComplexity), true case "AssessmentHistory.ownerID": - if e.complexity.AssessmentHistory.OwnerID == nil { + if e.ComplexityRoot.AssessmentHistory.OwnerID == nil { break } - return e.complexity.AssessmentHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.OwnerID(childComplexity), true case "AssessmentHistory.ref": - if e.complexity.AssessmentHistory.Ref == nil { + if e.ComplexityRoot.AssessmentHistory.Ref == nil { break } - return e.complexity.AssessmentHistory.Ref(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.Ref(childComplexity), true case "AssessmentHistory.responseDueDuration": - if e.complexity.AssessmentHistory.ResponseDueDuration == nil { + if e.ComplexityRoot.AssessmentHistory.ResponseDueDuration == nil { break } - return e.complexity.AssessmentHistory.ResponseDueDuration(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.ResponseDueDuration(childComplexity), true case "AssessmentHistory.tags": - if e.complexity.AssessmentHistory.Tags == nil { + if e.ComplexityRoot.AssessmentHistory.Tags == nil { break } - return e.complexity.AssessmentHistory.Tags(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.Tags(childComplexity), true case "AssessmentHistory.templateID": - if e.complexity.AssessmentHistory.TemplateID == nil { + if e.ComplexityRoot.AssessmentHistory.TemplateID == nil { break } - return e.complexity.AssessmentHistory.TemplateID(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.TemplateID(childComplexity), true case "AssessmentHistory.uischema": - if e.complexity.AssessmentHistory.Uischema == nil { + if e.ComplexityRoot.AssessmentHistory.Uischema == nil { break } - return e.complexity.AssessmentHistory.Uischema(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.Uischema(childComplexity), true case "AssessmentHistory.updatedAt": - if e.complexity.AssessmentHistory.UpdatedAt == nil { + if e.ComplexityRoot.AssessmentHistory.UpdatedAt == nil { break } - return e.complexity.AssessmentHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.UpdatedAt(childComplexity), true case "AssessmentHistory.updatedBy": - if e.complexity.AssessmentHistory.UpdatedBy == nil { + if e.ComplexityRoot.AssessmentHistory.UpdatedBy == nil { break } - return e.complexity.AssessmentHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.AssessmentHistory.UpdatedBy(childComplexity), true case "AssessmentHistoryConnection.edges": - if e.complexity.AssessmentHistoryConnection.Edges == nil { + if e.ComplexityRoot.AssessmentHistoryConnection.Edges == nil { break } - return e.complexity.AssessmentHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.AssessmentHistoryConnection.Edges(childComplexity), true case "AssessmentHistoryConnection.pageInfo": - if e.complexity.AssessmentHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.AssessmentHistoryConnection.PageInfo == nil { break } - return e.complexity.AssessmentHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.AssessmentHistoryConnection.PageInfo(childComplexity), true case "AssessmentHistoryConnection.totalCount": - if e.complexity.AssessmentHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.AssessmentHistoryConnection.TotalCount == nil { break } - return e.complexity.AssessmentHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.AssessmentHistoryConnection.TotalCount(childComplexity), true case "AssessmentHistoryEdge.cursor": - if e.complexity.AssessmentHistoryEdge.Cursor == nil { + if e.ComplexityRoot.AssessmentHistoryEdge.Cursor == nil { break } - return e.complexity.AssessmentHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.AssessmentHistoryEdge.Cursor(childComplexity), true case "AssessmentHistoryEdge.node": - if e.complexity.AssessmentHistoryEdge.Node == nil { + if e.ComplexityRoot.AssessmentHistoryEdge.Node == nil { break } - return e.complexity.AssessmentHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.AssessmentHistoryEdge.Node(childComplexity), true case "AssessmentResponseHistory.assessmentID": - if e.complexity.AssessmentResponseHistory.AssessmentID == nil { + if e.ComplexityRoot.AssessmentResponseHistory.AssessmentID == nil { break } - return e.complexity.AssessmentResponseHistory.AssessmentID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.AssessmentID(childComplexity), true case "AssessmentResponseHistory.assignedAt": - if e.complexity.AssessmentResponseHistory.AssignedAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.AssignedAt == nil { break } - return e.complexity.AssessmentResponseHistory.AssignedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.AssignedAt(childComplexity), true case "AssessmentResponseHistory.campaignID": - if e.complexity.AssessmentResponseHistory.CampaignID == nil { + if e.ComplexityRoot.AssessmentResponseHistory.CampaignID == nil { break } - return e.complexity.AssessmentResponseHistory.CampaignID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.CampaignID(childComplexity), true case "AssessmentResponseHistory.completedAt": - if e.complexity.AssessmentResponseHistory.CompletedAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.CompletedAt == nil { break } - return e.complexity.AssessmentResponseHistory.CompletedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.CompletedAt(childComplexity), true case "AssessmentResponseHistory.createdAt": - if e.complexity.AssessmentResponseHistory.CreatedAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.CreatedAt == nil { break } - return e.complexity.AssessmentResponseHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.CreatedAt(childComplexity), true case "AssessmentResponseHistory.createdBy": - if e.complexity.AssessmentResponseHistory.CreatedBy == nil { + if e.ComplexityRoot.AssessmentResponseHistory.CreatedBy == nil { break } - return e.complexity.AssessmentResponseHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.CreatedBy(childComplexity), true case "AssessmentResponseHistory.documentDataID": - if e.complexity.AssessmentResponseHistory.DocumentDataID == nil { + if e.ComplexityRoot.AssessmentResponseHistory.DocumentDataID == nil { break } - return e.complexity.AssessmentResponseHistory.DocumentDataID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.DocumentDataID(childComplexity), true case "AssessmentResponseHistory.dueDate": - if e.complexity.AssessmentResponseHistory.DueDate == nil { + if e.ComplexityRoot.AssessmentResponseHistory.DueDate == nil { break } - return e.complexity.AssessmentResponseHistory.DueDate(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.DueDate(childComplexity), true case "AssessmentResponseHistory.email": - if e.complexity.AssessmentResponseHistory.Email == nil { + if e.ComplexityRoot.AssessmentResponseHistory.Email == nil { break } - return e.complexity.AssessmentResponseHistory.Email(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.Email(childComplexity), true case "AssessmentResponseHistory.emailClickCount": - if e.complexity.AssessmentResponseHistory.EmailClickCount == nil { + if e.ComplexityRoot.AssessmentResponseHistory.EmailClickCount == nil { break } - return e.complexity.AssessmentResponseHistory.EmailClickCount(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.EmailClickCount(childComplexity), true case "AssessmentResponseHistory.emailClickedAt": - if e.complexity.AssessmentResponseHistory.EmailClickedAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.EmailClickedAt == nil { break } - return e.complexity.AssessmentResponseHistory.EmailClickedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.EmailClickedAt(childComplexity), true case "AssessmentResponseHistory.emailDeliveredAt": - if e.complexity.AssessmentResponseHistory.EmailDeliveredAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.EmailDeliveredAt == nil { break } - return e.complexity.AssessmentResponseHistory.EmailDeliveredAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.EmailDeliveredAt(childComplexity), true case "AssessmentResponseHistory.emailMetadata": - if e.complexity.AssessmentResponseHistory.EmailMetadata == nil { + if e.ComplexityRoot.AssessmentResponseHistory.EmailMetadata == nil { break } - return e.complexity.AssessmentResponseHistory.EmailMetadata(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.EmailMetadata(childComplexity), true case "AssessmentResponseHistory.emailOpenCount": - if e.complexity.AssessmentResponseHistory.EmailOpenCount == nil { + if e.ComplexityRoot.AssessmentResponseHistory.EmailOpenCount == nil { break } - return e.complexity.AssessmentResponseHistory.EmailOpenCount(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.EmailOpenCount(childComplexity), true case "AssessmentResponseHistory.emailOpenedAt": - if e.complexity.AssessmentResponseHistory.EmailOpenedAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.EmailOpenedAt == nil { break } - return e.complexity.AssessmentResponseHistory.EmailOpenedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.EmailOpenedAt(childComplexity), true case "AssessmentResponseHistory.entityID": - if e.complexity.AssessmentResponseHistory.EntityID == nil { + if e.ComplexityRoot.AssessmentResponseHistory.EntityID == nil { break } - return e.complexity.AssessmentResponseHistory.EntityID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.EntityID(childComplexity), true case "AssessmentResponseHistory.historyTime": - if e.complexity.AssessmentResponseHistory.HistoryTime == nil { + if e.ComplexityRoot.AssessmentResponseHistory.HistoryTime == nil { break } - return e.complexity.AssessmentResponseHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.HistoryTime(childComplexity), true case "AssessmentResponseHistory.id": - if e.complexity.AssessmentResponseHistory.ID == nil { + if e.ComplexityRoot.AssessmentResponseHistory.ID == nil { break } - return e.complexity.AssessmentResponseHistory.ID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.ID(childComplexity), true case "AssessmentResponseHistory.identityHolderID": - if e.complexity.AssessmentResponseHistory.IdentityHolderID == nil { + if e.ComplexityRoot.AssessmentResponseHistory.IdentityHolderID == nil { break } - return e.complexity.AssessmentResponseHistory.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.IdentityHolderID(childComplexity), true case "AssessmentResponseHistory.isDraft": - if e.complexity.AssessmentResponseHistory.IsDraft == nil { + if e.ComplexityRoot.AssessmentResponseHistory.IsDraft == nil { break } - return e.complexity.AssessmentResponseHistory.IsDraft(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.IsDraft(childComplexity), true case "AssessmentResponseHistory.isTest": - if e.complexity.AssessmentResponseHistory.IsTest == nil { + if e.ComplexityRoot.AssessmentResponseHistory.IsTest == nil { break } - return e.complexity.AssessmentResponseHistory.IsTest(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.IsTest(childComplexity), true case "AssessmentResponseHistory.lastEmailEventAt": - if e.complexity.AssessmentResponseHistory.LastEmailEventAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.LastEmailEventAt == nil { break } - return e.complexity.AssessmentResponseHistory.LastEmailEventAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.LastEmailEventAt(childComplexity), true case "AssessmentResponseHistory.operation": - if e.complexity.AssessmentResponseHistory.Operation == nil { + if e.ComplexityRoot.AssessmentResponseHistory.Operation == nil { break } - return e.complexity.AssessmentResponseHistory.Operation(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.Operation(childComplexity), true case "AssessmentResponseHistory.ownerID": - if e.complexity.AssessmentResponseHistory.OwnerID == nil { + if e.ComplexityRoot.AssessmentResponseHistory.OwnerID == nil { break } - return e.complexity.AssessmentResponseHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.OwnerID(childComplexity), true case "AssessmentResponseHistory.ref": - if e.complexity.AssessmentResponseHistory.Ref == nil { + if e.ComplexityRoot.AssessmentResponseHistory.Ref == nil { break } - return e.complexity.AssessmentResponseHistory.Ref(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.Ref(childComplexity), true case "AssessmentResponseHistory.sendAttempts": - if e.complexity.AssessmentResponseHistory.SendAttempts == nil { + if e.ComplexityRoot.AssessmentResponseHistory.SendAttempts == nil { break } - return e.complexity.AssessmentResponseHistory.SendAttempts(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.SendAttempts(childComplexity), true case "AssessmentResponseHistory.startedAt": - if e.complexity.AssessmentResponseHistory.StartedAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.StartedAt == nil { break } - return e.complexity.AssessmentResponseHistory.StartedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.StartedAt(childComplexity), true case "AssessmentResponseHistory.status": - if e.complexity.AssessmentResponseHistory.Status == nil { + if e.ComplexityRoot.AssessmentResponseHistory.Status == nil { break } - return e.complexity.AssessmentResponseHistory.Status(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.Status(childComplexity), true case "AssessmentResponseHistory.updatedAt": - if e.complexity.AssessmentResponseHistory.UpdatedAt == nil { + if e.ComplexityRoot.AssessmentResponseHistory.UpdatedAt == nil { break } - return e.complexity.AssessmentResponseHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.UpdatedAt(childComplexity), true case "AssessmentResponseHistory.updatedBy": - if e.complexity.AssessmentResponseHistory.UpdatedBy == nil { + if e.ComplexityRoot.AssessmentResponseHistory.UpdatedBy == nil { break } - return e.complexity.AssessmentResponseHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistory.UpdatedBy(childComplexity), true case "AssessmentResponseHistoryConnection.edges": - if e.complexity.AssessmentResponseHistoryConnection.Edges == nil { + if e.ComplexityRoot.AssessmentResponseHistoryConnection.Edges == nil { break } - return e.complexity.AssessmentResponseHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistoryConnection.Edges(childComplexity), true case "AssessmentResponseHistoryConnection.pageInfo": - if e.complexity.AssessmentResponseHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.AssessmentResponseHistoryConnection.PageInfo == nil { break } - return e.complexity.AssessmentResponseHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistoryConnection.PageInfo(childComplexity), true case "AssessmentResponseHistoryConnection.totalCount": - if e.complexity.AssessmentResponseHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.AssessmentResponseHistoryConnection.TotalCount == nil { break } - return e.complexity.AssessmentResponseHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistoryConnection.TotalCount(childComplexity), true case "AssessmentResponseHistoryEdge.cursor": - if e.complexity.AssessmentResponseHistoryEdge.Cursor == nil { + if e.ComplexityRoot.AssessmentResponseHistoryEdge.Cursor == nil { break } - return e.complexity.AssessmentResponseHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistoryEdge.Cursor(childComplexity), true case "AssessmentResponseHistoryEdge.node": - if e.complexity.AssessmentResponseHistoryEdge.Node == nil { + if e.ComplexityRoot.AssessmentResponseHistoryEdge.Node == nil { break } - return e.complexity.AssessmentResponseHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.AssessmentResponseHistoryEdge.Node(childComplexity), true case "AssetHistory.accessModelID": - if e.complexity.AssetHistory.AccessModelID == nil { + if e.ComplexityRoot.AssetHistory.AccessModelID == nil { break } - return e.complexity.AssetHistory.AccessModelID(childComplexity), true + return e.ComplexityRoot.AssetHistory.AccessModelID(childComplexity), true case "AssetHistory.accessModelName": - if e.complexity.AssetHistory.AccessModelName == nil { + if e.ComplexityRoot.AssetHistory.AccessModelName == nil { break } - return e.complexity.AssetHistory.AccessModelName(childComplexity), true + return e.ComplexityRoot.AssetHistory.AccessModelName(childComplexity), true case "AssetHistory.assetDataClassificationID": - if e.complexity.AssetHistory.AssetDataClassificationID == nil { + if e.ComplexityRoot.AssetHistory.AssetDataClassificationID == nil { break } - return e.complexity.AssetHistory.AssetDataClassificationID(childComplexity), true + return e.ComplexityRoot.AssetHistory.AssetDataClassificationID(childComplexity), true case "AssetHistory.assetDataClassificationName": - if e.complexity.AssetHistory.AssetDataClassificationName == nil { + if e.ComplexityRoot.AssetHistory.AssetDataClassificationName == nil { break } - return e.complexity.AssetHistory.AssetDataClassificationName(childComplexity), true + return e.ComplexityRoot.AssetHistory.AssetDataClassificationName(childComplexity), true case "AssetHistory.assetSubtypeID": - if e.complexity.AssetHistory.AssetSubtypeID == nil { + if e.ComplexityRoot.AssetHistory.AssetSubtypeID == nil { break } - return e.complexity.AssetHistory.AssetSubtypeID(childComplexity), true + return e.ComplexityRoot.AssetHistory.AssetSubtypeID(childComplexity), true case "AssetHistory.assetSubtypeName": - if e.complexity.AssetHistory.AssetSubtypeName == nil { + if e.ComplexityRoot.AssetHistory.AssetSubtypeName == nil { break } - return e.complexity.AssetHistory.AssetSubtypeName(childComplexity), true + return e.ComplexityRoot.AssetHistory.AssetSubtypeName(childComplexity), true case "AssetHistory.assetType": - if e.complexity.AssetHistory.AssetType == nil { + if e.ComplexityRoot.AssetHistory.AssetType == nil { break } - return e.complexity.AssetHistory.AssetType(childComplexity), true + return e.ComplexityRoot.AssetHistory.AssetType(childComplexity), true case "AssetHistory.categories": - if e.complexity.AssetHistory.Categories == nil { + if e.ComplexityRoot.AssetHistory.Categories == nil { break } - return e.complexity.AssetHistory.Categories(childComplexity), true + return e.ComplexityRoot.AssetHistory.Categories(childComplexity), true case "AssetHistory.containsPii": - if e.complexity.AssetHistory.ContainsPii == nil { + if e.ComplexityRoot.AssetHistory.ContainsPii == nil { break } - return e.complexity.AssetHistory.ContainsPii(childComplexity), true + return e.ComplexityRoot.AssetHistory.ContainsPii(childComplexity), true case "AssetHistory.costCenter": - if e.complexity.AssetHistory.CostCenter == nil { + if e.ComplexityRoot.AssetHistory.CostCenter == nil { break } - return e.complexity.AssetHistory.CostCenter(childComplexity), true + return e.ComplexityRoot.AssetHistory.CostCenter(childComplexity), true case "AssetHistory.cpe": - if e.complexity.AssetHistory.Cpe == nil { + if e.ComplexityRoot.AssetHistory.Cpe == nil { break } - return e.complexity.AssetHistory.Cpe(childComplexity), true + return e.ComplexityRoot.AssetHistory.Cpe(childComplexity), true case "AssetHistory.createdAt": - if e.complexity.AssetHistory.CreatedAt == nil { + if e.ComplexityRoot.AssetHistory.CreatedAt == nil { break } - return e.complexity.AssetHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.AssetHistory.CreatedAt(childComplexity), true case "AssetHistory.createdBy": - if e.complexity.AssetHistory.CreatedBy == nil { + if e.ComplexityRoot.AssetHistory.CreatedBy == nil { break } - return e.complexity.AssetHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.AssetHistory.CreatedBy(childComplexity), true case "AssetHistory.criticalityID": - if e.complexity.AssetHistory.CriticalityID == nil { + if e.ComplexityRoot.AssetHistory.CriticalityID == nil { break } - return e.complexity.AssetHistory.CriticalityID(childComplexity), true + return e.ComplexityRoot.AssetHistory.CriticalityID(childComplexity), true case "AssetHistory.criticalityName": - if e.complexity.AssetHistory.CriticalityName == nil { + if e.ComplexityRoot.AssetHistory.CriticalityName == nil { break } - return e.complexity.AssetHistory.CriticalityName(childComplexity), true + return e.ComplexityRoot.AssetHistory.CriticalityName(childComplexity), true case "AssetHistory.description": - if e.complexity.AssetHistory.Description == nil { + if e.ComplexityRoot.AssetHistory.Description == nil { break } - return e.complexity.AssetHistory.Description(childComplexity), true + return e.ComplexityRoot.AssetHistory.Description(childComplexity), true case "AssetHistory.displayName": - if e.complexity.AssetHistory.DisplayName == nil { + if e.ComplexityRoot.AssetHistory.DisplayName == nil { break } - return e.complexity.AssetHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.AssetHistory.DisplayName(childComplexity), true case "AssetHistory.encryptionStatusID": - if e.complexity.AssetHistory.EncryptionStatusID == nil { + if e.ComplexityRoot.AssetHistory.EncryptionStatusID == nil { break } - return e.complexity.AssetHistory.EncryptionStatusID(childComplexity), true + return e.ComplexityRoot.AssetHistory.EncryptionStatusID(childComplexity), true case "AssetHistory.encryptionStatusName": - if e.complexity.AssetHistory.EncryptionStatusName == nil { + if e.ComplexityRoot.AssetHistory.EncryptionStatusName == nil { break } - return e.complexity.AssetHistory.EncryptionStatusName(childComplexity), true + return e.ComplexityRoot.AssetHistory.EncryptionStatusName(childComplexity), true case "AssetHistory.environmentID": - if e.complexity.AssetHistory.EnvironmentID == nil { + if e.ComplexityRoot.AssetHistory.EnvironmentID == nil { break } - return e.complexity.AssetHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.AssetHistory.EnvironmentID(childComplexity), true case "AssetHistory.environmentName": - if e.complexity.AssetHistory.EnvironmentName == nil { + if e.ComplexityRoot.AssetHistory.EnvironmentName == nil { break } - return e.complexity.AssetHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.AssetHistory.EnvironmentName(childComplexity), true case "AssetHistory.estimatedMonthlyCost": - if e.complexity.AssetHistory.EstimatedMonthlyCost == nil { + if e.ComplexityRoot.AssetHistory.EstimatedMonthlyCost == nil { break } - return e.complexity.AssetHistory.EstimatedMonthlyCost(childComplexity), true + return e.ComplexityRoot.AssetHistory.EstimatedMonthlyCost(childComplexity), true case "AssetHistory.historyTime": - if e.complexity.AssetHistory.HistoryTime == nil { + if e.ComplexityRoot.AssetHistory.HistoryTime == nil { break } - return e.complexity.AssetHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.AssetHistory.HistoryTime(childComplexity), true case "AssetHistory.id": - if e.complexity.AssetHistory.ID == nil { + if e.ComplexityRoot.AssetHistory.ID == nil { break } - return e.complexity.AssetHistory.ID(childComplexity), true + return e.ComplexityRoot.AssetHistory.ID(childComplexity), true case "AssetHistory.identifier": - if e.complexity.AssetHistory.Identifier == nil { + if e.ComplexityRoot.AssetHistory.Identifier == nil { break } - return e.complexity.AssetHistory.Identifier(childComplexity), true + return e.ComplexityRoot.AssetHistory.Identifier(childComplexity), true case "AssetHistory.internalNotes": - if e.complexity.AssetHistory.InternalNotes == nil { + if e.ComplexityRoot.AssetHistory.InternalNotes == nil { break } - return e.complexity.AssetHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.AssetHistory.InternalNotes(childComplexity), true case "AssetHistory.internalOwner": - if e.complexity.AssetHistory.InternalOwner == nil { + if e.ComplexityRoot.AssetHistory.InternalOwner == nil { break } - return e.complexity.AssetHistory.InternalOwner(childComplexity), true + return e.ComplexityRoot.AssetHistory.InternalOwner(childComplexity), true case "AssetHistory.internalOwnerGroupID": - if e.complexity.AssetHistory.InternalOwnerGroupID == nil { + if e.ComplexityRoot.AssetHistory.InternalOwnerGroupID == nil { break } - return e.complexity.AssetHistory.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.AssetHistory.InternalOwnerGroupID(childComplexity), true case "AssetHistory.internalOwnerUserID": - if e.complexity.AssetHistory.InternalOwnerUserID == nil { + if e.ComplexityRoot.AssetHistory.InternalOwnerUserID == nil { break } - return e.complexity.AssetHistory.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.AssetHistory.InternalOwnerUserID(childComplexity), true case "AssetHistory.name": - if e.complexity.AssetHistory.Name == nil { + if e.ComplexityRoot.AssetHistory.Name == nil { break } - return e.complexity.AssetHistory.Name(childComplexity), true + return e.ComplexityRoot.AssetHistory.Name(childComplexity), true case "AssetHistory.operation": - if e.complexity.AssetHistory.Operation == nil { + if e.ComplexityRoot.AssetHistory.Operation == nil { break } - return e.complexity.AssetHistory.Operation(childComplexity), true + return e.ComplexityRoot.AssetHistory.Operation(childComplexity), true case "AssetHistory.ownerID": - if e.complexity.AssetHistory.OwnerID == nil { + if e.ComplexityRoot.AssetHistory.OwnerID == nil { break } - return e.complexity.AssetHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.AssetHistory.OwnerID(childComplexity), true case "AssetHistory.physicalLocation": - if e.complexity.AssetHistory.PhysicalLocation == nil { + if e.ComplexityRoot.AssetHistory.PhysicalLocation == nil { break } - return e.complexity.AssetHistory.PhysicalLocation(childComplexity), true + return e.ComplexityRoot.AssetHistory.PhysicalLocation(childComplexity), true case "AssetHistory.purchaseDate": - if e.complexity.AssetHistory.PurchaseDate == nil { + if e.ComplexityRoot.AssetHistory.PurchaseDate == nil { break } - return e.complexity.AssetHistory.PurchaseDate(childComplexity), true + return e.ComplexityRoot.AssetHistory.PurchaseDate(childComplexity), true case "AssetHistory.ref": - if e.complexity.AssetHistory.Ref == nil { + if e.ComplexityRoot.AssetHistory.Ref == nil { break } - return e.complexity.AssetHistory.Ref(childComplexity), true + return e.ComplexityRoot.AssetHistory.Ref(childComplexity), true case "AssetHistory.region": - if e.complexity.AssetHistory.Region == nil { + if e.ComplexityRoot.AssetHistory.Region == nil { break } - return e.complexity.AssetHistory.Region(childComplexity), true + return e.ComplexityRoot.AssetHistory.Region(childComplexity), true case "AssetHistory.scopeID": - if e.complexity.AssetHistory.ScopeID == nil { + if e.ComplexityRoot.AssetHistory.ScopeID == nil { break } - return e.complexity.AssetHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.AssetHistory.ScopeID(childComplexity), true case "AssetHistory.scopeName": - if e.complexity.AssetHistory.ScopeName == nil { + if e.ComplexityRoot.AssetHistory.ScopeName == nil { break } - return e.complexity.AssetHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.AssetHistory.ScopeName(childComplexity), true case "AssetHistory.securityTierID": - if e.complexity.AssetHistory.SecurityTierID == nil { + if e.ComplexityRoot.AssetHistory.SecurityTierID == nil { break } - return e.complexity.AssetHistory.SecurityTierID(childComplexity), true + return e.ComplexityRoot.AssetHistory.SecurityTierID(childComplexity), true case "AssetHistory.securityTierName": - if e.complexity.AssetHistory.SecurityTierName == nil { + if e.ComplexityRoot.AssetHistory.SecurityTierName == nil { break } - return e.complexity.AssetHistory.SecurityTierName(childComplexity), true + return e.ComplexityRoot.AssetHistory.SecurityTierName(childComplexity), true case "AssetHistory.sourceIdentifier": - if e.complexity.AssetHistory.SourceIdentifier == nil { + if e.ComplexityRoot.AssetHistory.SourceIdentifier == nil { break } - return e.complexity.AssetHistory.SourceIdentifier(childComplexity), true + return e.ComplexityRoot.AssetHistory.SourceIdentifier(childComplexity), true case "AssetHistory.sourcePlatformID": - if e.complexity.AssetHistory.SourcePlatformID == nil { + if e.ComplexityRoot.AssetHistory.SourcePlatformID == nil { break } - return e.complexity.AssetHistory.SourcePlatformID(childComplexity), true + return e.ComplexityRoot.AssetHistory.SourcePlatformID(childComplexity), true case "AssetHistory.sourceType": - if e.complexity.AssetHistory.SourceType == nil { + if e.ComplexityRoot.AssetHistory.SourceType == nil { break } - return e.complexity.AssetHistory.SourceType(childComplexity), true + return e.ComplexityRoot.AssetHistory.SourceType(childComplexity), true case "AssetHistory.systemInternalID": - if e.complexity.AssetHistory.SystemInternalID == nil { + if e.ComplexityRoot.AssetHistory.SystemInternalID == nil { break } - return e.complexity.AssetHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.AssetHistory.SystemInternalID(childComplexity), true case "AssetHistory.systemOwned": - if e.complexity.AssetHistory.SystemOwned == nil { + if e.ComplexityRoot.AssetHistory.SystemOwned == nil { break } - return e.complexity.AssetHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.AssetHistory.SystemOwned(childComplexity), true case "AssetHistory.tags": - if e.complexity.AssetHistory.Tags == nil { + if e.ComplexityRoot.AssetHistory.Tags == nil { break } - return e.complexity.AssetHistory.Tags(childComplexity), true + return e.ComplexityRoot.AssetHistory.Tags(childComplexity), true case "AssetHistory.updatedAt": - if e.complexity.AssetHistory.UpdatedAt == nil { + if e.ComplexityRoot.AssetHistory.UpdatedAt == nil { break } - return e.complexity.AssetHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.AssetHistory.UpdatedAt(childComplexity), true case "AssetHistory.updatedBy": - if e.complexity.AssetHistory.UpdatedBy == nil { + if e.ComplexityRoot.AssetHistory.UpdatedBy == nil { break } - return e.complexity.AssetHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.AssetHistory.UpdatedBy(childComplexity), true case "AssetHistory.website": - if e.complexity.AssetHistory.Website == nil { + if e.ComplexityRoot.AssetHistory.Website == nil { break } - return e.complexity.AssetHistory.Website(childComplexity), true + return e.ComplexityRoot.AssetHistory.Website(childComplexity), true case "AssetHistoryConnection.edges": - if e.complexity.AssetHistoryConnection.Edges == nil { + if e.ComplexityRoot.AssetHistoryConnection.Edges == nil { break } - return e.complexity.AssetHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.AssetHistoryConnection.Edges(childComplexity), true case "AssetHistoryConnection.pageInfo": - if e.complexity.AssetHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.AssetHistoryConnection.PageInfo == nil { break } - return e.complexity.AssetHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.AssetHistoryConnection.PageInfo(childComplexity), true case "AssetHistoryConnection.totalCount": - if e.complexity.AssetHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.AssetHistoryConnection.TotalCount == nil { break } - return e.complexity.AssetHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.AssetHistoryConnection.TotalCount(childComplexity), true case "AssetHistoryEdge.cursor": - if e.complexity.AssetHistoryEdge.Cursor == nil { + if e.ComplexityRoot.AssetHistoryEdge.Cursor == nil { break } - return e.complexity.AssetHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.AssetHistoryEdge.Cursor(childComplexity), true case "AssetHistoryEdge.node": - if e.complexity.AssetHistoryEdge.Node == nil { + if e.ComplexityRoot.AssetHistoryEdge.Node == nil { break } - return e.complexity.AssetHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.AssetHistoryEdge.Node(childComplexity), true case "CampaignHistory.assessmentID": - if e.complexity.CampaignHistory.AssessmentID == nil { + if e.ComplexityRoot.CampaignHistory.AssessmentID == nil { break } - return e.complexity.CampaignHistory.AssessmentID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.AssessmentID(childComplexity), true case "CampaignHistory.campaignType": - if e.complexity.CampaignHistory.CampaignType == nil { + if e.ComplexityRoot.CampaignHistory.CampaignType == nil { break } - return e.complexity.CampaignHistory.CampaignType(childComplexity), true + return e.ComplexityRoot.CampaignHistory.CampaignType(childComplexity), true case "CampaignHistory.completedAt": - if e.complexity.CampaignHistory.CompletedAt == nil { + if e.ComplexityRoot.CampaignHistory.CompletedAt == nil { break } - return e.complexity.CampaignHistory.CompletedAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.CompletedAt(childComplexity), true case "CampaignHistory.createdAt": - if e.complexity.CampaignHistory.CreatedAt == nil { + if e.ComplexityRoot.CampaignHistory.CreatedAt == nil { break } - return e.complexity.CampaignHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.CreatedAt(childComplexity), true case "CampaignHistory.createdBy": - if e.complexity.CampaignHistory.CreatedBy == nil { + if e.ComplexityRoot.CampaignHistory.CreatedBy == nil { break } - return e.complexity.CampaignHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.CampaignHistory.CreatedBy(childComplexity), true case "CampaignHistory.description": - if e.complexity.CampaignHistory.Description == nil { + if e.ComplexityRoot.CampaignHistory.Description == nil { break } - return e.complexity.CampaignHistory.Description(childComplexity), true + return e.ComplexityRoot.CampaignHistory.Description(childComplexity), true case "CampaignHistory.displayID": - if e.complexity.CampaignHistory.DisplayID == nil { + if e.ComplexityRoot.CampaignHistory.DisplayID == nil { break } - return e.complexity.CampaignHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.DisplayID(childComplexity), true case "CampaignHistory.dueDate": - if e.complexity.CampaignHistory.DueDate == nil { + if e.ComplexityRoot.CampaignHistory.DueDate == nil { break } - return e.complexity.CampaignHistory.DueDate(childComplexity), true + return e.ComplexityRoot.CampaignHistory.DueDate(childComplexity), true case "CampaignHistory.emailBrandingID": - if e.complexity.CampaignHistory.EmailBrandingID == nil { + if e.ComplexityRoot.CampaignHistory.EmailBrandingID == nil { break } - return e.complexity.CampaignHistory.EmailBrandingID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.EmailBrandingID(childComplexity), true case "CampaignHistory.emailTemplateID": - if e.complexity.CampaignHistory.EmailTemplateID == nil { + if e.ComplexityRoot.CampaignHistory.EmailTemplateID == nil { break } - return e.complexity.CampaignHistory.EmailTemplateID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.EmailTemplateID(childComplexity), true case "CampaignHistory.entityID": - if e.complexity.CampaignHistory.EntityID == nil { + if e.ComplexityRoot.CampaignHistory.EntityID == nil { break } - return e.complexity.CampaignHistory.EntityID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.EntityID(childComplexity), true case "CampaignHistory.historyTime": - if e.complexity.CampaignHistory.HistoryTime == nil { + if e.ComplexityRoot.CampaignHistory.HistoryTime == nil { break } - return e.complexity.CampaignHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.CampaignHistory.HistoryTime(childComplexity), true case "CampaignHistory.id": - if e.complexity.CampaignHistory.ID == nil { + if e.ComplexityRoot.CampaignHistory.ID == nil { break } - return e.complexity.CampaignHistory.ID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.ID(childComplexity), true case "CampaignHistory.internalOwner": - if e.complexity.CampaignHistory.InternalOwner == nil { + if e.ComplexityRoot.CampaignHistory.InternalOwner == nil { break } - return e.complexity.CampaignHistory.InternalOwner(childComplexity), true + return e.ComplexityRoot.CampaignHistory.InternalOwner(childComplexity), true case "CampaignHistory.internalOwnerGroupID": - if e.complexity.CampaignHistory.InternalOwnerGroupID == nil { + if e.ComplexityRoot.CampaignHistory.InternalOwnerGroupID == nil { break } - return e.complexity.CampaignHistory.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.InternalOwnerGroupID(childComplexity), true case "CampaignHistory.internalOwnerUserID": - if e.complexity.CampaignHistory.InternalOwnerUserID == nil { + if e.ComplexityRoot.CampaignHistory.InternalOwnerUserID == nil { break } - return e.complexity.CampaignHistory.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.InternalOwnerUserID(childComplexity), true case "CampaignHistory.isActive": - if e.complexity.CampaignHistory.IsActive == nil { + if e.ComplexityRoot.CampaignHistory.IsActive == nil { break } - return e.complexity.CampaignHistory.IsActive(childComplexity), true + return e.ComplexityRoot.CampaignHistory.IsActive(childComplexity), true case "CampaignHistory.isRecurring": - if e.complexity.CampaignHistory.IsRecurring == nil { + if e.ComplexityRoot.CampaignHistory.IsRecurring == nil { break } - return e.complexity.CampaignHistory.IsRecurring(childComplexity), true + return e.ComplexityRoot.CampaignHistory.IsRecurring(childComplexity), true case "CampaignHistory.lastResentAt": - if e.complexity.CampaignHistory.LastResentAt == nil { + if e.ComplexityRoot.CampaignHistory.LastResentAt == nil { break } - return e.complexity.CampaignHistory.LastResentAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.LastResentAt(childComplexity), true case "CampaignHistory.lastRunAt": - if e.complexity.CampaignHistory.LastRunAt == nil { + if e.ComplexityRoot.CampaignHistory.LastRunAt == nil { break } - return e.complexity.CampaignHistory.LastRunAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.LastRunAt(childComplexity), true case "CampaignHistory.launchedAt": - if e.complexity.CampaignHistory.LaunchedAt == nil { + if e.ComplexityRoot.CampaignHistory.LaunchedAt == nil { break } - return e.complexity.CampaignHistory.LaunchedAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.LaunchedAt(childComplexity), true case "CampaignHistory.metadata": - if e.complexity.CampaignHistory.Metadata == nil { + if e.ComplexityRoot.CampaignHistory.Metadata == nil { break } - return e.complexity.CampaignHistory.Metadata(childComplexity), true + return e.ComplexityRoot.CampaignHistory.Metadata(childComplexity), true case "CampaignHistory.name": - if e.complexity.CampaignHistory.Name == nil { + if e.ComplexityRoot.CampaignHistory.Name == nil { break } - return e.complexity.CampaignHistory.Name(childComplexity), true + return e.ComplexityRoot.CampaignHistory.Name(childComplexity), true case "CampaignHistory.nextRunAt": - if e.complexity.CampaignHistory.NextRunAt == nil { + if e.ComplexityRoot.CampaignHistory.NextRunAt == nil { break } - return e.complexity.CampaignHistory.NextRunAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.NextRunAt(childComplexity), true case "CampaignHistory.operation": - if e.complexity.CampaignHistory.Operation == nil { + if e.ComplexityRoot.CampaignHistory.Operation == nil { break } - return e.complexity.CampaignHistory.Operation(childComplexity), true + return e.ComplexityRoot.CampaignHistory.Operation(childComplexity), true case "CampaignHistory.ownerID": - if e.complexity.CampaignHistory.OwnerID == nil { + if e.ComplexityRoot.CampaignHistory.OwnerID == nil { break } - return e.complexity.CampaignHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.OwnerID(childComplexity), true case "CampaignHistory.recipientCount": - if e.complexity.CampaignHistory.RecipientCount == nil { + if e.ComplexityRoot.CampaignHistory.RecipientCount == nil { break } - return e.complexity.CampaignHistory.RecipientCount(childComplexity), true + return e.ComplexityRoot.CampaignHistory.RecipientCount(childComplexity), true case "CampaignHistory.recurrenceCron": - if e.complexity.CampaignHistory.RecurrenceCron == nil { + if e.ComplexityRoot.CampaignHistory.RecurrenceCron == nil { break } - return e.complexity.CampaignHistory.RecurrenceCron(childComplexity), true + return e.ComplexityRoot.CampaignHistory.RecurrenceCron(childComplexity), true case "CampaignHistory.recurrenceEndAt": - if e.complexity.CampaignHistory.RecurrenceEndAt == nil { + if e.ComplexityRoot.CampaignHistory.RecurrenceEndAt == nil { break } - return e.complexity.CampaignHistory.RecurrenceEndAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.RecurrenceEndAt(childComplexity), true case "CampaignHistory.recurrenceFrequency": - if e.complexity.CampaignHistory.RecurrenceFrequency == nil { + if e.ComplexityRoot.CampaignHistory.RecurrenceFrequency == nil { break } - return e.complexity.CampaignHistory.RecurrenceFrequency(childComplexity), true + return e.ComplexityRoot.CampaignHistory.RecurrenceFrequency(childComplexity), true case "CampaignHistory.recurrenceInterval": - if e.complexity.CampaignHistory.RecurrenceInterval == nil { + if e.ComplexityRoot.CampaignHistory.RecurrenceInterval == nil { break } - return e.complexity.CampaignHistory.RecurrenceInterval(childComplexity), true + return e.ComplexityRoot.CampaignHistory.RecurrenceInterval(childComplexity), true case "CampaignHistory.recurrenceTimezone": - if e.complexity.CampaignHistory.RecurrenceTimezone == nil { + if e.ComplexityRoot.CampaignHistory.RecurrenceTimezone == nil { break } - return e.complexity.CampaignHistory.RecurrenceTimezone(childComplexity), true + return e.ComplexityRoot.CampaignHistory.RecurrenceTimezone(childComplexity), true case "CampaignHistory.ref": - if e.complexity.CampaignHistory.Ref == nil { + if e.ComplexityRoot.CampaignHistory.Ref == nil { break } - return e.complexity.CampaignHistory.Ref(childComplexity), true + return e.ComplexityRoot.CampaignHistory.Ref(childComplexity), true case "CampaignHistory.resendCount": - if e.complexity.CampaignHistory.ResendCount == nil { + if e.ComplexityRoot.CampaignHistory.ResendCount == nil { break } - return e.complexity.CampaignHistory.ResendCount(childComplexity), true + return e.ComplexityRoot.CampaignHistory.ResendCount(childComplexity), true case "CampaignHistory.scheduledAt": - if e.complexity.CampaignHistory.ScheduledAt == nil { + if e.ComplexityRoot.CampaignHistory.ScheduledAt == nil { break } - return e.complexity.CampaignHistory.ScheduledAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.ScheduledAt(childComplexity), true case "CampaignHistory.status": - if e.complexity.CampaignHistory.Status == nil { + if e.ComplexityRoot.CampaignHistory.Status == nil { break } - return e.complexity.CampaignHistory.Status(childComplexity), true + return e.ComplexityRoot.CampaignHistory.Status(childComplexity), true case "CampaignHistory.tags": - if e.complexity.CampaignHistory.Tags == nil { + if e.ComplexityRoot.CampaignHistory.Tags == nil { break } - return e.complexity.CampaignHistory.Tags(childComplexity), true + return e.ComplexityRoot.CampaignHistory.Tags(childComplexity), true case "CampaignHistory.templateID": - if e.complexity.CampaignHistory.TemplateID == nil { + if e.ComplexityRoot.CampaignHistory.TemplateID == nil { break } - return e.complexity.CampaignHistory.TemplateID(childComplexity), true + return e.ComplexityRoot.CampaignHistory.TemplateID(childComplexity), true case "CampaignHistory.updatedAt": - if e.complexity.CampaignHistory.UpdatedAt == nil { + if e.ComplexityRoot.CampaignHistory.UpdatedAt == nil { break } - return e.complexity.CampaignHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.CampaignHistory.UpdatedAt(childComplexity), true case "CampaignHistory.updatedBy": - if e.complexity.CampaignHistory.UpdatedBy == nil { + if e.ComplexityRoot.CampaignHistory.UpdatedBy == nil { break } - return e.complexity.CampaignHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.CampaignHistory.UpdatedBy(childComplexity), true case "CampaignHistory.workflowEligibleMarker": - if e.complexity.CampaignHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.CampaignHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.CampaignHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.CampaignHistory.WorkflowEligibleMarker(childComplexity), true case "CampaignHistoryConnection.edges": - if e.complexity.CampaignHistoryConnection.Edges == nil { + if e.ComplexityRoot.CampaignHistoryConnection.Edges == nil { break } - return e.complexity.CampaignHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.CampaignHistoryConnection.Edges(childComplexity), true case "CampaignHistoryConnection.pageInfo": - if e.complexity.CampaignHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.CampaignHistoryConnection.PageInfo == nil { break } - return e.complexity.CampaignHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.CampaignHistoryConnection.PageInfo(childComplexity), true case "CampaignHistoryConnection.totalCount": - if e.complexity.CampaignHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.CampaignHistoryConnection.TotalCount == nil { break } - return e.complexity.CampaignHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.CampaignHistoryConnection.TotalCount(childComplexity), true case "CampaignHistoryEdge.cursor": - if e.complexity.CampaignHistoryEdge.Cursor == nil { + if e.ComplexityRoot.CampaignHistoryEdge.Cursor == nil { break } - return e.complexity.CampaignHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.CampaignHistoryEdge.Cursor(childComplexity), true case "CampaignHistoryEdge.node": - if e.complexity.CampaignHistoryEdge.Node == nil { + if e.ComplexityRoot.CampaignHistoryEdge.Node == nil { break } - return e.complexity.CampaignHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.CampaignHistoryEdge.Node(childComplexity), true case "CampaignTargetHistory.campaignID": - if e.complexity.CampaignTargetHistory.CampaignID == nil { + if e.ComplexityRoot.CampaignTargetHistory.CampaignID == nil { break } - return e.complexity.CampaignTargetHistory.CampaignID(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.CampaignID(childComplexity), true case "CampaignTargetHistory.completedAt": - if e.complexity.CampaignTargetHistory.CompletedAt == nil { + if e.ComplexityRoot.CampaignTargetHistory.CompletedAt == nil { break } - return e.complexity.CampaignTargetHistory.CompletedAt(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.CompletedAt(childComplexity), true case "CampaignTargetHistory.contactID": - if e.complexity.CampaignTargetHistory.ContactID == nil { + if e.ComplexityRoot.CampaignTargetHistory.ContactID == nil { break } - return e.complexity.CampaignTargetHistory.ContactID(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.ContactID(childComplexity), true case "CampaignTargetHistory.createdAt": - if e.complexity.CampaignTargetHistory.CreatedAt == nil { + if e.ComplexityRoot.CampaignTargetHistory.CreatedAt == nil { break } - return e.complexity.CampaignTargetHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.CreatedAt(childComplexity), true case "CampaignTargetHistory.createdBy": - if e.complexity.CampaignTargetHistory.CreatedBy == nil { + if e.ComplexityRoot.CampaignTargetHistory.CreatedBy == nil { break } - return e.complexity.CampaignTargetHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.CreatedBy(childComplexity), true case "CampaignTargetHistory.email": - if e.complexity.CampaignTargetHistory.Email == nil { + if e.ComplexityRoot.CampaignTargetHistory.Email == nil { break } - return e.complexity.CampaignTargetHistory.Email(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.Email(childComplexity), true case "CampaignTargetHistory.fullName": - if e.complexity.CampaignTargetHistory.FullName == nil { + if e.ComplexityRoot.CampaignTargetHistory.FullName == nil { break } - return e.complexity.CampaignTargetHistory.FullName(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.FullName(childComplexity), true case "CampaignTargetHistory.groupID": - if e.complexity.CampaignTargetHistory.GroupID == nil { + if e.ComplexityRoot.CampaignTargetHistory.GroupID == nil { break } - return e.complexity.CampaignTargetHistory.GroupID(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.GroupID(childComplexity), true case "CampaignTargetHistory.historyTime": - if e.complexity.CampaignTargetHistory.HistoryTime == nil { + if e.ComplexityRoot.CampaignTargetHistory.HistoryTime == nil { break } - return e.complexity.CampaignTargetHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.HistoryTime(childComplexity), true case "CampaignTargetHistory.id": - if e.complexity.CampaignTargetHistory.ID == nil { + if e.ComplexityRoot.CampaignTargetHistory.ID == nil { break } - return e.complexity.CampaignTargetHistory.ID(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.ID(childComplexity), true case "CampaignTargetHistory.metadata": - if e.complexity.CampaignTargetHistory.Metadata == nil { + if e.ComplexityRoot.CampaignTargetHistory.Metadata == nil { break } - return e.complexity.CampaignTargetHistory.Metadata(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.Metadata(childComplexity), true case "CampaignTargetHistory.operation": - if e.complexity.CampaignTargetHistory.Operation == nil { + if e.ComplexityRoot.CampaignTargetHistory.Operation == nil { break } - return e.complexity.CampaignTargetHistory.Operation(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.Operation(childComplexity), true case "CampaignTargetHistory.ownerID": - if e.complexity.CampaignTargetHistory.OwnerID == nil { + if e.ComplexityRoot.CampaignTargetHistory.OwnerID == nil { break } - return e.complexity.CampaignTargetHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.OwnerID(childComplexity), true case "CampaignTargetHistory.ref": - if e.complexity.CampaignTargetHistory.Ref == nil { + if e.ComplexityRoot.CampaignTargetHistory.Ref == nil { break } - return e.complexity.CampaignTargetHistory.Ref(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.Ref(childComplexity), true case "CampaignTargetHistory.sentAt": - if e.complexity.CampaignTargetHistory.SentAt == nil { + if e.ComplexityRoot.CampaignTargetHistory.SentAt == nil { break } - return e.complexity.CampaignTargetHistory.SentAt(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.SentAt(childComplexity), true case "CampaignTargetHistory.status": - if e.complexity.CampaignTargetHistory.Status == nil { + if e.ComplexityRoot.CampaignTargetHistory.Status == nil { break } - return e.complexity.CampaignTargetHistory.Status(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.Status(childComplexity), true case "CampaignTargetHistory.updatedAt": - if e.complexity.CampaignTargetHistory.UpdatedAt == nil { + if e.ComplexityRoot.CampaignTargetHistory.UpdatedAt == nil { break } - return e.complexity.CampaignTargetHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.UpdatedAt(childComplexity), true case "CampaignTargetHistory.updatedBy": - if e.complexity.CampaignTargetHistory.UpdatedBy == nil { + if e.ComplexityRoot.CampaignTargetHistory.UpdatedBy == nil { break } - return e.complexity.CampaignTargetHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.UpdatedBy(childComplexity), true case "CampaignTargetHistory.userID": - if e.complexity.CampaignTargetHistory.UserID == nil { + if e.ComplexityRoot.CampaignTargetHistory.UserID == nil { break } - return e.complexity.CampaignTargetHistory.UserID(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.UserID(childComplexity), true case "CampaignTargetHistory.workflowEligibleMarker": - if e.complexity.CampaignTargetHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.CampaignTargetHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.CampaignTargetHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistory.WorkflowEligibleMarker(childComplexity), true case "CampaignTargetHistoryConnection.edges": - if e.complexity.CampaignTargetHistoryConnection.Edges == nil { + if e.ComplexityRoot.CampaignTargetHistoryConnection.Edges == nil { break } - return e.complexity.CampaignTargetHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistoryConnection.Edges(childComplexity), true case "CampaignTargetHistoryConnection.pageInfo": - if e.complexity.CampaignTargetHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.CampaignTargetHistoryConnection.PageInfo == nil { break } - return e.complexity.CampaignTargetHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistoryConnection.PageInfo(childComplexity), true case "CampaignTargetHistoryConnection.totalCount": - if e.complexity.CampaignTargetHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.CampaignTargetHistoryConnection.TotalCount == nil { break } - return e.complexity.CampaignTargetHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistoryConnection.TotalCount(childComplexity), true case "CampaignTargetHistoryEdge.cursor": - if e.complexity.CampaignTargetHistoryEdge.Cursor == nil { + if e.ComplexityRoot.CampaignTargetHistoryEdge.Cursor == nil { break } - return e.complexity.CampaignTargetHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistoryEdge.Cursor(childComplexity), true case "CampaignTargetHistoryEdge.node": - if e.complexity.CampaignTargetHistoryEdge.Node == nil { + if e.ComplexityRoot.CampaignTargetHistoryEdge.Node == nil { break } - return e.complexity.CampaignTargetHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.CampaignTargetHistoryEdge.Node(childComplexity), true case "ContactHistory.address": - if e.complexity.ContactHistory.Address == nil { + if e.ComplexityRoot.ContactHistory.Address == nil { break } - return e.complexity.ContactHistory.Address(childComplexity), true + return e.ComplexityRoot.ContactHistory.Address(childComplexity), true case "ContactHistory.company": - if e.complexity.ContactHistory.Company == nil { + if e.ComplexityRoot.ContactHistory.Company == nil { break } - return e.complexity.ContactHistory.Company(childComplexity), true + return e.ComplexityRoot.ContactHistory.Company(childComplexity), true case "ContactHistory.createdAt": - if e.complexity.ContactHistory.CreatedAt == nil { + if e.ComplexityRoot.ContactHistory.CreatedAt == nil { break } - return e.complexity.ContactHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ContactHistory.CreatedAt(childComplexity), true case "ContactHistory.createdBy": - if e.complexity.ContactHistory.CreatedBy == nil { + if e.ComplexityRoot.ContactHistory.CreatedBy == nil { break } - return e.complexity.ContactHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ContactHistory.CreatedBy(childComplexity), true case "ContactHistory.email": - if e.complexity.ContactHistory.Email == nil { + if e.ComplexityRoot.ContactHistory.Email == nil { break } - return e.complexity.ContactHistory.Email(childComplexity), true + return e.ComplexityRoot.ContactHistory.Email(childComplexity), true case "ContactHistory.fullName": - if e.complexity.ContactHistory.FullName == nil { + if e.ComplexityRoot.ContactHistory.FullName == nil { break } - return e.complexity.ContactHistory.FullName(childComplexity), true + return e.ComplexityRoot.ContactHistory.FullName(childComplexity), true case "ContactHistory.historyTime": - if e.complexity.ContactHistory.HistoryTime == nil { + if e.ComplexityRoot.ContactHistory.HistoryTime == nil { break } - return e.complexity.ContactHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ContactHistory.HistoryTime(childComplexity), true case "ContactHistory.id": - if e.complexity.ContactHistory.ID == nil { + if e.ComplexityRoot.ContactHistory.ID == nil { break } - return e.complexity.ContactHistory.ID(childComplexity), true + return e.ComplexityRoot.ContactHistory.ID(childComplexity), true case "ContactHistory.operation": - if e.complexity.ContactHistory.Operation == nil { + if e.ComplexityRoot.ContactHistory.Operation == nil { break } - return e.complexity.ContactHistory.Operation(childComplexity), true + return e.ComplexityRoot.ContactHistory.Operation(childComplexity), true case "ContactHistory.ownerID": - if e.complexity.ContactHistory.OwnerID == nil { + if e.ComplexityRoot.ContactHistory.OwnerID == nil { break } - return e.complexity.ContactHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ContactHistory.OwnerID(childComplexity), true case "ContactHistory.phoneNumber": - if e.complexity.ContactHistory.PhoneNumber == nil { + if e.ComplexityRoot.ContactHistory.PhoneNumber == nil { break } - return e.complexity.ContactHistory.PhoneNumber(childComplexity), true + return e.ComplexityRoot.ContactHistory.PhoneNumber(childComplexity), true case "ContactHistory.ref": - if e.complexity.ContactHistory.Ref == nil { + if e.ComplexityRoot.ContactHistory.Ref == nil { break } - return e.complexity.ContactHistory.Ref(childComplexity), true + return e.ComplexityRoot.ContactHistory.Ref(childComplexity), true case "ContactHistory.status": - if e.complexity.ContactHistory.Status == nil { + if e.ComplexityRoot.ContactHistory.Status == nil { break } - return e.complexity.ContactHistory.Status(childComplexity), true + return e.ComplexityRoot.ContactHistory.Status(childComplexity), true case "ContactHistory.tags": - if e.complexity.ContactHistory.Tags == nil { + if e.ComplexityRoot.ContactHistory.Tags == nil { break } - return e.complexity.ContactHistory.Tags(childComplexity), true + return e.ComplexityRoot.ContactHistory.Tags(childComplexity), true case "ContactHistory.title": - if e.complexity.ContactHistory.Title == nil { + if e.ComplexityRoot.ContactHistory.Title == nil { break } - return e.complexity.ContactHistory.Title(childComplexity), true + return e.ComplexityRoot.ContactHistory.Title(childComplexity), true case "ContactHistory.updatedAt": - if e.complexity.ContactHistory.UpdatedAt == nil { + if e.ComplexityRoot.ContactHistory.UpdatedAt == nil { break } - return e.complexity.ContactHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ContactHistory.UpdatedAt(childComplexity), true case "ContactHistory.updatedBy": - if e.complexity.ContactHistory.UpdatedBy == nil { + if e.ComplexityRoot.ContactHistory.UpdatedBy == nil { break } - return e.complexity.ContactHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ContactHistory.UpdatedBy(childComplexity), true case "ContactHistoryConnection.edges": - if e.complexity.ContactHistoryConnection.Edges == nil { + if e.ComplexityRoot.ContactHistoryConnection.Edges == nil { break } - return e.complexity.ContactHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ContactHistoryConnection.Edges(childComplexity), true case "ContactHistoryConnection.pageInfo": - if e.complexity.ContactHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ContactHistoryConnection.PageInfo == nil { break } - return e.complexity.ContactHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ContactHistoryConnection.PageInfo(childComplexity), true case "ContactHistoryConnection.totalCount": - if e.complexity.ContactHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ContactHistoryConnection.TotalCount == nil { break } - return e.complexity.ContactHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ContactHistoryConnection.TotalCount(childComplexity), true case "ContactHistoryEdge.cursor": - if e.complexity.ContactHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ContactHistoryEdge.Cursor == nil { break } - return e.complexity.ContactHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ContactHistoryEdge.Cursor(childComplexity), true case "ContactHistoryEdge.node": - if e.complexity.ContactHistoryEdge.Node == nil { + if e.ComplexityRoot.ContactHistoryEdge.Node == nil { break } - return e.complexity.ContactHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ContactHistoryEdge.Node(childComplexity), true case "ControlHistory.aliases": - if e.complexity.ControlHistory.Aliases == nil { + if e.ComplexityRoot.ControlHistory.Aliases == nil { break } - return e.complexity.ControlHistory.Aliases(childComplexity), true + return e.ComplexityRoot.ControlHistory.Aliases(childComplexity), true case "ControlHistory.assessmentMethods": - if e.complexity.ControlHistory.AssessmentMethods == nil { + if e.ComplexityRoot.ControlHistory.AssessmentMethods == nil { break } - return e.complexity.ControlHistory.AssessmentMethods(childComplexity), true + return e.ComplexityRoot.ControlHistory.AssessmentMethods(childComplexity), true case "ControlHistory.assessmentObjectives": - if e.complexity.ControlHistory.AssessmentObjectives == nil { + if e.ComplexityRoot.ControlHistory.AssessmentObjectives == nil { break } - return e.complexity.ControlHistory.AssessmentObjectives(childComplexity), true + return e.ComplexityRoot.ControlHistory.AssessmentObjectives(childComplexity), true case "ControlHistory.auditorReferenceID": - if e.complexity.ControlHistory.AuditorReferenceID == nil { + if e.ComplexityRoot.ControlHistory.AuditorReferenceID == nil { break } - return e.complexity.ControlHistory.AuditorReferenceID(childComplexity), true + return e.ComplexityRoot.ControlHistory.AuditorReferenceID(childComplexity), true case "ControlHistory.category": - if e.complexity.ControlHistory.Category == nil { + if e.ComplexityRoot.ControlHistory.Category == nil { break } - return e.complexity.ControlHistory.Category(childComplexity), true + return e.ComplexityRoot.ControlHistory.Category(childComplexity), true case "ControlHistory.categoryID": - if e.complexity.ControlHistory.CategoryID == nil { + if e.ComplexityRoot.ControlHistory.CategoryID == nil { break } - return e.complexity.ControlHistory.CategoryID(childComplexity), true + return e.ComplexityRoot.ControlHistory.CategoryID(childComplexity), true case "ControlHistory.controlKindID": - if e.complexity.ControlHistory.ControlKindID == nil { + if e.ComplexityRoot.ControlHistory.ControlKindID == nil { break } - return e.complexity.ControlHistory.ControlKindID(childComplexity), true + return e.ComplexityRoot.ControlHistory.ControlKindID(childComplexity), true case "ControlHistory.controlKindName": - if e.complexity.ControlHistory.ControlKindName == nil { + if e.ComplexityRoot.ControlHistory.ControlKindName == nil { break } - return e.complexity.ControlHistory.ControlKindName(childComplexity), true + return e.ComplexityRoot.ControlHistory.ControlKindName(childComplexity), true case "ControlHistory.controlOwnerID": - if e.complexity.ControlHistory.ControlOwnerID == nil { + if e.ComplexityRoot.ControlHistory.ControlOwnerID == nil { break } - return e.complexity.ControlHistory.ControlOwnerID(childComplexity), true + return e.ComplexityRoot.ControlHistory.ControlOwnerID(childComplexity), true case "ControlHistory.controlQuestions": - if e.complexity.ControlHistory.ControlQuestions == nil { + if e.ComplexityRoot.ControlHistory.ControlQuestions == nil { break } - return e.complexity.ControlHistory.ControlQuestions(childComplexity), true + return e.ComplexityRoot.ControlHistory.ControlQuestions(childComplexity), true case "ControlHistory.createdAt": - if e.complexity.ControlHistory.CreatedAt == nil { + if e.ComplexityRoot.ControlHistory.CreatedAt == nil { break } - return e.complexity.ControlHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ControlHistory.CreatedAt(childComplexity), true case "ControlHistory.createdBy": - if e.complexity.ControlHistory.CreatedBy == nil { + if e.ComplexityRoot.ControlHistory.CreatedBy == nil { break } - return e.complexity.ControlHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ControlHistory.CreatedBy(childComplexity), true case "ControlHistory.delegateID": - if e.complexity.ControlHistory.DelegateID == nil { + if e.ComplexityRoot.ControlHistory.DelegateID == nil { break } - return e.complexity.ControlHistory.DelegateID(childComplexity), true + return e.ComplexityRoot.ControlHistory.DelegateID(childComplexity), true case "ControlHistory.description": - if e.complexity.ControlHistory.Description == nil { + if e.ComplexityRoot.ControlHistory.Description == nil { break } - return e.complexity.ControlHistory.Description(childComplexity), true + return e.ComplexityRoot.ControlHistory.Description(childComplexity), true case "ControlHistory.descriptionJSON": - if e.complexity.ControlHistory.DescriptionJSON == nil { + if e.ComplexityRoot.ControlHistory.DescriptionJSON == nil { break } - return e.complexity.ControlHistory.DescriptionJSON(childComplexity), true + return e.ComplexityRoot.ControlHistory.DescriptionJSON(childComplexity), true case "ControlHistory.displayID": - if e.complexity.ControlHistory.DisplayID == nil { + if e.ComplexityRoot.ControlHistory.DisplayID == nil { break } - return e.complexity.ControlHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.ControlHistory.DisplayID(childComplexity), true case "ControlHistory.environmentID": - if e.complexity.ControlHistory.EnvironmentID == nil { + if e.ComplexityRoot.ControlHistory.EnvironmentID == nil { break } - return e.complexity.ControlHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.ControlHistory.EnvironmentID(childComplexity), true case "ControlHistory.environmentName": - if e.complexity.ControlHistory.EnvironmentName == nil { + if e.ComplexityRoot.ControlHistory.EnvironmentName == nil { break } - return e.complexity.ControlHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.ControlHistory.EnvironmentName(childComplexity), true case "ControlHistory.evidenceRequests": - if e.complexity.ControlHistory.EvidenceRequests == nil { + if e.ComplexityRoot.ControlHistory.EvidenceRequests == nil { break } - return e.complexity.ControlHistory.EvidenceRequests(childComplexity), true + return e.ComplexityRoot.ControlHistory.EvidenceRequests(childComplexity), true case "ControlHistory.exampleEvidence": - if e.complexity.ControlHistory.ExampleEvidence == nil { + if e.ComplexityRoot.ControlHistory.ExampleEvidence == nil { break } - return e.complexity.ControlHistory.ExampleEvidence(childComplexity), true + return e.ComplexityRoot.ControlHistory.ExampleEvidence(childComplexity), true case "ControlHistory.historyTime": - if e.complexity.ControlHistory.HistoryTime == nil { + if e.ComplexityRoot.ControlHistory.HistoryTime == nil { break } - return e.complexity.ControlHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ControlHistory.HistoryTime(childComplexity), true case "ControlHistory.id": - if e.complexity.ControlHistory.ID == nil { + if e.ComplexityRoot.ControlHistory.ID == nil { break } - return e.complexity.ControlHistory.ID(childComplexity), true + return e.ComplexityRoot.ControlHistory.ID(childComplexity), true case "ControlHistory.implementationGuidance": - if e.complexity.ControlHistory.ImplementationGuidance == nil { + if e.ComplexityRoot.ControlHistory.ImplementationGuidance == nil { break } - return e.complexity.ControlHistory.ImplementationGuidance(childComplexity), true + return e.ComplexityRoot.ControlHistory.ImplementationGuidance(childComplexity), true case "ControlHistory.internalNotes": - if e.complexity.ControlHistory.InternalNotes == nil { + if e.ComplexityRoot.ControlHistory.InternalNotes == nil { break } - return e.complexity.ControlHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.ControlHistory.InternalNotes(childComplexity), true case "ControlHistory.isTrustCenterControl": - if e.complexity.ControlHistory.IsTrustCenterControl == nil { + if e.ComplexityRoot.ControlHistory.IsTrustCenterControl == nil { break } - return e.complexity.ControlHistory.IsTrustCenterControl(childComplexity), true + return e.ComplexityRoot.ControlHistory.IsTrustCenterControl(childComplexity), true case "ControlHistory.mappedCategories": - if e.complexity.ControlHistory.MappedCategories == nil { + if e.ComplexityRoot.ControlHistory.MappedCategories == nil { break } - return e.complexity.ControlHistory.MappedCategories(childComplexity), true + return e.ComplexityRoot.ControlHistory.MappedCategories(childComplexity), true case "ControlHistory.operation": - if e.complexity.ControlHistory.Operation == nil { + if e.ComplexityRoot.ControlHistory.Operation == nil { break } - return e.complexity.ControlHistory.Operation(childComplexity), true + return e.ComplexityRoot.ControlHistory.Operation(childComplexity), true case "ControlHistory.ownerID": - if e.complexity.ControlHistory.OwnerID == nil { + if e.ComplexityRoot.ControlHistory.OwnerID == nil { break } - return e.complexity.ControlHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ControlHistory.OwnerID(childComplexity), true case "ControlHistory.ref": - if e.complexity.ControlHistory.Ref == nil { + if e.ComplexityRoot.ControlHistory.Ref == nil { break } - return e.complexity.ControlHistory.Ref(childComplexity), true + return e.ComplexityRoot.ControlHistory.Ref(childComplexity), true case "ControlHistory.refCode": - if e.complexity.ControlHistory.RefCode == nil { + if e.ComplexityRoot.ControlHistory.RefCode == nil { break } - return e.complexity.ControlHistory.RefCode(childComplexity), true + return e.ComplexityRoot.ControlHistory.RefCode(childComplexity), true case "ControlHistory.referenceFramework": - if e.complexity.ControlHistory.ReferenceFramework == nil { + if e.ComplexityRoot.ControlHistory.ReferenceFramework == nil { break } - return e.complexity.ControlHistory.ReferenceFramework(childComplexity), true + return e.ComplexityRoot.ControlHistory.ReferenceFramework(childComplexity), true case "ControlHistory.referenceFrameworkRevision": - if e.complexity.ControlHistory.ReferenceFrameworkRevision == nil { + if e.ComplexityRoot.ControlHistory.ReferenceFrameworkRevision == nil { break } - return e.complexity.ControlHistory.ReferenceFrameworkRevision(childComplexity), true + return e.ComplexityRoot.ControlHistory.ReferenceFrameworkRevision(childComplexity), true case "ControlHistory.referenceID": - if e.complexity.ControlHistory.ReferenceID == nil { + if e.ComplexityRoot.ControlHistory.ReferenceID == nil { break } - return e.complexity.ControlHistory.ReferenceID(childComplexity), true + return e.ComplexityRoot.ControlHistory.ReferenceID(childComplexity), true case "ControlHistory.references": - if e.complexity.ControlHistory.References == nil { + if e.ComplexityRoot.ControlHistory.References == nil { break } - return e.complexity.ControlHistory.References(childComplexity), true + return e.ComplexityRoot.ControlHistory.References(childComplexity), true case "ControlHistory.responsiblePartyID": - if e.complexity.ControlHistory.ResponsiblePartyID == nil { + if e.ComplexityRoot.ControlHistory.ResponsiblePartyID == nil { break } - return e.complexity.ControlHistory.ResponsiblePartyID(childComplexity), true + return e.ComplexityRoot.ControlHistory.ResponsiblePartyID(childComplexity), true case "ControlHistory.scopeID": - if e.complexity.ControlHistory.ScopeID == nil { + if e.ComplexityRoot.ControlHistory.ScopeID == nil { break } - return e.complexity.ControlHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.ControlHistory.ScopeID(childComplexity), true case "ControlHistory.scopeName": - if e.complexity.ControlHistory.ScopeName == nil { + if e.ComplexityRoot.ControlHistory.ScopeName == nil { break } - return e.complexity.ControlHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.ControlHistory.ScopeName(childComplexity), true case "ControlHistory.source": - if e.complexity.ControlHistory.Source == nil { + if e.ComplexityRoot.ControlHistory.Source == nil { break } - return e.complexity.ControlHistory.Source(childComplexity), true + return e.ComplexityRoot.ControlHistory.Source(childComplexity), true case "ControlHistory.standardID": - if e.complexity.ControlHistory.StandardID == nil { + if e.ComplexityRoot.ControlHistory.StandardID == nil { break } - return e.complexity.ControlHistory.StandardID(childComplexity), true + return e.ComplexityRoot.ControlHistory.StandardID(childComplexity), true case "ControlHistory.status": - if e.complexity.ControlHistory.Status == nil { + if e.ComplexityRoot.ControlHistory.Status == nil { break } - return e.complexity.ControlHistory.Status(childComplexity), true + return e.ComplexityRoot.ControlHistory.Status(childComplexity), true case "ControlHistory.subcategory": - if e.complexity.ControlHistory.Subcategory == nil { + if e.ComplexityRoot.ControlHistory.Subcategory == nil { break } - return e.complexity.ControlHistory.Subcategory(childComplexity), true + return e.ComplexityRoot.ControlHistory.Subcategory(childComplexity), true case "ControlHistory.systemInternalID": - if e.complexity.ControlHistory.SystemInternalID == nil { + if e.ComplexityRoot.ControlHistory.SystemInternalID == nil { break } - return e.complexity.ControlHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ControlHistory.SystemInternalID(childComplexity), true case "ControlHistory.systemOwned": - if e.complexity.ControlHistory.SystemOwned == nil { + if e.ComplexityRoot.ControlHistory.SystemOwned == nil { break } - return e.complexity.ControlHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.ControlHistory.SystemOwned(childComplexity), true case "ControlHistory.tags": - if e.complexity.ControlHistory.Tags == nil { + if e.ComplexityRoot.ControlHistory.Tags == nil { break } - return e.complexity.ControlHistory.Tags(childComplexity), true + return e.ComplexityRoot.ControlHistory.Tags(childComplexity), true case "ControlHistory.testingProcedures": - if e.complexity.ControlHistory.TestingProcedures == nil { + if e.ComplexityRoot.ControlHistory.TestingProcedures == nil { break } - return e.complexity.ControlHistory.TestingProcedures(childComplexity), true + return e.ComplexityRoot.ControlHistory.TestingProcedures(childComplexity), true case "ControlHistory.title": - if e.complexity.ControlHistory.Title == nil { + if e.ComplexityRoot.ControlHistory.Title == nil { break } - return e.complexity.ControlHistory.Title(childComplexity), true + return e.ComplexityRoot.ControlHistory.Title(childComplexity), true case "ControlHistory.trustCenterVisibility": - if e.complexity.ControlHistory.TrustCenterVisibility == nil { + if e.ComplexityRoot.ControlHistory.TrustCenterVisibility == nil { break } - return e.complexity.ControlHistory.TrustCenterVisibility(childComplexity), true + return e.ComplexityRoot.ControlHistory.TrustCenterVisibility(childComplexity), true case "ControlHistory.updatedAt": - if e.complexity.ControlHistory.UpdatedAt == nil { + if e.ComplexityRoot.ControlHistory.UpdatedAt == nil { break } - return e.complexity.ControlHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ControlHistory.UpdatedAt(childComplexity), true case "ControlHistory.updatedBy": - if e.complexity.ControlHistory.UpdatedBy == nil { + if e.ComplexityRoot.ControlHistory.UpdatedBy == nil { break } - return e.complexity.ControlHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ControlHistory.UpdatedBy(childComplexity), true case "ControlHistory.workflowEligibleMarker": - if e.complexity.ControlHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.ControlHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.ControlHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.ControlHistory.WorkflowEligibleMarker(childComplexity), true case "ControlHistoryConnection.edges": - if e.complexity.ControlHistoryConnection.Edges == nil { + if e.ComplexityRoot.ControlHistoryConnection.Edges == nil { break } - return e.complexity.ControlHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlHistoryConnection.Edges(childComplexity), true case "ControlHistoryConnection.pageInfo": - if e.complexity.ControlHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ControlHistoryConnection.PageInfo == nil { break } - return e.complexity.ControlHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlHistoryConnection.PageInfo(childComplexity), true case "ControlHistoryConnection.totalCount": - if e.complexity.ControlHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ControlHistoryConnection.TotalCount == nil { break } - return e.complexity.ControlHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ControlHistoryConnection.TotalCount(childComplexity), true case "ControlHistoryEdge.cursor": - if e.complexity.ControlHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ControlHistoryEdge.Cursor == nil { break } - return e.complexity.ControlHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ControlHistoryEdge.Cursor(childComplexity), true case "ControlHistoryEdge.node": - if e.complexity.ControlHistoryEdge.Node == nil { + if e.ComplexityRoot.ControlHistoryEdge.Node == nil { break } - return e.complexity.ControlHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlHistoryEdge.Node(childComplexity), true case "ControlImplementationHistory.createdAt": - if e.complexity.ControlImplementationHistory.CreatedAt == nil { + if e.ComplexityRoot.ControlImplementationHistory.CreatedAt == nil { break } - return e.complexity.ControlImplementationHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.CreatedAt(childComplexity), true case "ControlImplementationHistory.createdBy": - if e.complexity.ControlImplementationHistory.CreatedBy == nil { + if e.ComplexityRoot.ControlImplementationHistory.CreatedBy == nil { break } - return e.complexity.ControlImplementationHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.CreatedBy(childComplexity), true case "ControlImplementationHistory.details": - if e.complexity.ControlImplementationHistory.Details == nil { + if e.ComplexityRoot.ControlImplementationHistory.Details == nil { break } - return e.complexity.ControlImplementationHistory.Details(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.Details(childComplexity), true case "ControlImplementationHistory.detailsJSON": - if e.complexity.ControlImplementationHistory.DetailsJSON == nil { + if e.ComplexityRoot.ControlImplementationHistory.DetailsJSON == nil { break } - return e.complexity.ControlImplementationHistory.DetailsJSON(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.DetailsJSON(childComplexity), true case "ControlImplementationHistory.historyTime": - if e.complexity.ControlImplementationHistory.HistoryTime == nil { + if e.ComplexityRoot.ControlImplementationHistory.HistoryTime == nil { break } - return e.complexity.ControlImplementationHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.HistoryTime(childComplexity), true case "ControlImplementationHistory.id": - if e.complexity.ControlImplementationHistory.ID == nil { + if e.ComplexityRoot.ControlImplementationHistory.ID == nil { break } - return e.complexity.ControlImplementationHistory.ID(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.ID(childComplexity), true case "ControlImplementationHistory.implementationDate": - if e.complexity.ControlImplementationHistory.ImplementationDate == nil { + if e.ComplexityRoot.ControlImplementationHistory.ImplementationDate == nil { break } - return e.complexity.ControlImplementationHistory.ImplementationDate(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.ImplementationDate(childComplexity), true case "ControlImplementationHistory.internalNotes": - if e.complexity.ControlImplementationHistory.InternalNotes == nil { + if e.ComplexityRoot.ControlImplementationHistory.InternalNotes == nil { break } - return e.complexity.ControlImplementationHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.InternalNotes(childComplexity), true case "ControlImplementationHistory.operation": - if e.complexity.ControlImplementationHistory.Operation == nil { + if e.ComplexityRoot.ControlImplementationHistory.Operation == nil { break } - return e.complexity.ControlImplementationHistory.Operation(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.Operation(childComplexity), true case "ControlImplementationHistory.ownerID": - if e.complexity.ControlImplementationHistory.OwnerID == nil { + if e.ComplexityRoot.ControlImplementationHistory.OwnerID == nil { break } - return e.complexity.ControlImplementationHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.OwnerID(childComplexity), true case "ControlImplementationHistory.ref": - if e.complexity.ControlImplementationHistory.Ref == nil { + if e.ComplexityRoot.ControlImplementationHistory.Ref == nil { break } - return e.complexity.ControlImplementationHistory.Ref(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.Ref(childComplexity), true case "ControlImplementationHistory.status": - if e.complexity.ControlImplementationHistory.Status == nil { + if e.ComplexityRoot.ControlImplementationHistory.Status == nil { break } - return e.complexity.ControlImplementationHistory.Status(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.Status(childComplexity), true case "ControlImplementationHistory.systemInternalID": - if e.complexity.ControlImplementationHistory.SystemInternalID == nil { + if e.ComplexityRoot.ControlImplementationHistory.SystemInternalID == nil { break } - return e.complexity.ControlImplementationHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.SystemInternalID(childComplexity), true case "ControlImplementationHistory.systemOwned": - if e.complexity.ControlImplementationHistory.SystemOwned == nil { + if e.ComplexityRoot.ControlImplementationHistory.SystemOwned == nil { break } - return e.complexity.ControlImplementationHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.SystemOwned(childComplexity), true case "ControlImplementationHistory.tags": - if e.complexity.ControlImplementationHistory.Tags == nil { + if e.ComplexityRoot.ControlImplementationHistory.Tags == nil { break } - return e.complexity.ControlImplementationHistory.Tags(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.Tags(childComplexity), true case "ControlImplementationHistory.updatedAt": - if e.complexity.ControlImplementationHistory.UpdatedAt == nil { + if e.ComplexityRoot.ControlImplementationHistory.UpdatedAt == nil { break } - return e.complexity.ControlImplementationHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.UpdatedAt(childComplexity), true case "ControlImplementationHistory.updatedBy": - if e.complexity.ControlImplementationHistory.UpdatedBy == nil { + if e.ComplexityRoot.ControlImplementationHistory.UpdatedBy == nil { break } - return e.complexity.ControlImplementationHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.UpdatedBy(childComplexity), true case "ControlImplementationHistory.verificationDate": - if e.complexity.ControlImplementationHistory.VerificationDate == nil { + if e.ComplexityRoot.ControlImplementationHistory.VerificationDate == nil { break } - return e.complexity.ControlImplementationHistory.VerificationDate(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.VerificationDate(childComplexity), true case "ControlImplementationHistory.verified": - if e.complexity.ControlImplementationHistory.Verified == nil { + if e.ComplexityRoot.ControlImplementationHistory.Verified == nil { break } - return e.complexity.ControlImplementationHistory.Verified(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistory.Verified(childComplexity), true case "ControlImplementationHistoryConnection.edges": - if e.complexity.ControlImplementationHistoryConnection.Edges == nil { + if e.ComplexityRoot.ControlImplementationHistoryConnection.Edges == nil { break } - return e.complexity.ControlImplementationHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistoryConnection.Edges(childComplexity), true case "ControlImplementationHistoryConnection.pageInfo": - if e.complexity.ControlImplementationHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ControlImplementationHistoryConnection.PageInfo == nil { break } - return e.complexity.ControlImplementationHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistoryConnection.PageInfo(childComplexity), true case "ControlImplementationHistoryConnection.totalCount": - if e.complexity.ControlImplementationHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ControlImplementationHistoryConnection.TotalCount == nil { break } - return e.complexity.ControlImplementationHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistoryConnection.TotalCount(childComplexity), true case "ControlImplementationHistoryEdge.cursor": - if e.complexity.ControlImplementationHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ControlImplementationHistoryEdge.Cursor == nil { break } - return e.complexity.ControlImplementationHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistoryEdge.Cursor(childComplexity), true case "ControlImplementationHistoryEdge.node": - if e.complexity.ControlImplementationHistoryEdge.Node == nil { + if e.ComplexityRoot.ControlImplementationHistoryEdge.Node == nil { break } - return e.complexity.ControlImplementationHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlImplementationHistoryEdge.Node(childComplexity), true case "ControlObjectiveHistory.category": - if e.complexity.ControlObjectiveHistory.Category == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Category == nil { break } - return e.complexity.ControlObjectiveHistory.Category(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Category(childComplexity), true case "ControlObjectiveHistory.controlObjectiveType": - if e.complexity.ControlObjectiveHistory.ControlObjectiveType == nil { + if e.ComplexityRoot.ControlObjectiveHistory.ControlObjectiveType == nil { break } - return e.complexity.ControlObjectiveHistory.ControlObjectiveType(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.ControlObjectiveType(childComplexity), true case "ControlObjectiveHistory.createdAt": - if e.complexity.ControlObjectiveHistory.CreatedAt == nil { + if e.ComplexityRoot.ControlObjectiveHistory.CreatedAt == nil { break } - return e.complexity.ControlObjectiveHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.CreatedAt(childComplexity), true case "ControlObjectiveHistory.createdBy": - if e.complexity.ControlObjectiveHistory.CreatedBy == nil { + if e.ComplexityRoot.ControlObjectiveHistory.CreatedBy == nil { break } - return e.complexity.ControlObjectiveHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.CreatedBy(childComplexity), true case "ControlObjectiveHistory.desiredOutcome": - if e.complexity.ControlObjectiveHistory.DesiredOutcome == nil { + if e.ComplexityRoot.ControlObjectiveHistory.DesiredOutcome == nil { break } - return e.complexity.ControlObjectiveHistory.DesiredOutcome(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.DesiredOutcome(childComplexity), true case "ControlObjectiveHistory.desiredOutcomeJSON": - if e.complexity.ControlObjectiveHistory.DesiredOutcomeJSON == nil { + if e.ComplexityRoot.ControlObjectiveHistory.DesiredOutcomeJSON == nil { break } - return e.complexity.ControlObjectiveHistory.DesiredOutcomeJSON(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.DesiredOutcomeJSON(childComplexity), true case "ControlObjectiveHistory.displayID": - if e.complexity.ControlObjectiveHistory.DisplayID == nil { + if e.ComplexityRoot.ControlObjectiveHistory.DisplayID == nil { break } - return e.complexity.ControlObjectiveHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.DisplayID(childComplexity), true case "ControlObjectiveHistory.historyTime": - if e.complexity.ControlObjectiveHistory.HistoryTime == nil { + if e.ComplexityRoot.ControlObjectiveHistory.HistoryTime == nil { break } - return e.complexity.ControlObjectiveHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.HistoryTime(childComplexity), true case "ControlObjectiveHistory.id": - if e.complexity.ControlObjectiveHistory.ID == nil { + if e.ComplexityRoot.ControlObjectiveHistory.ID == nil { break } - return e.complexity.ControlObjectiveHistory.ID(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.ID(childComplexity), true case "ControlObjectiveHistory.internalNotes": - if e.complexity.ControlObjectiveHistory.InternalNotes == nil { + if e.ComplexityRoot.ControlObjectiveHistory.InternalNotes == nil { break } - return e.complexity.ControlObjectiveHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.InternalNotes(childComplexity), true case "ControlObjectiveHistory.name": - if e.complexity.ControlObjectiveHistory.Name == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Name == nil { break } - return e.complexity.ControlObjectiveHistory.Name(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Name(childComplexity), true case "ControlObjectiveHistory.operation": - if e.complexity.ControlObjectiveHistory.Operation == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Operation == nil { break } - return e.complexity.ControlObjectiveHistory.Operation(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Operation(childComplexity), true case "ControlObjectiveHistory.ownerID": - if e.complexity.ControlObjectiveHistory.OwnerID == nil { + if e.ComplexityRoot.ControlObjectiveHistory.OwnerID == nil { break } - return e.complexity.ControlObjectiveHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.OwnerID(childComplexity), true case "ControlObjectiveHistory.ref": - if e.complexity.ControlObjectiveHistory.Ref == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Ref == nil { break } - return e.complexity.ControlObjectiveHistory.Ref(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Ref(childComplexity), true case "ControlObjectiveHistory.revision": - if e.complexity.ControlObjectiveHistory.Revision == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Revision == nil { break } - return e.complexity.ControlObjectiveHistory.Revision(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Revision(childComplexity), true case "ControlObjectiveHistory.source": - if e.complexity.ControlObjectiveHistory.Source == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Source == nil { break } - return e.complexity.ControlObjectiveHistory.Source(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Source(childComplexity), true case "ControlObjectiveHistory.status": - if e.complexity.ControlObjectiveHistory.Status == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Status == nil { break } - return e.complexity.ControlObjectiveHistory.Status(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Status(childComplexity), true case "ControlObjectiveHistory.subcategory": - if e.complexity.ControlObjectiveHistory.Subcategory == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Subcategory == nil { break } - return e.complexity.ControlObjectiveHistory.Subcategory(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Subcategory(childComplexity), true case "ControlObjectiveHistory.systemInternalID": - if e.complexity.ControlObjectiveHistory.SystemInternalID == nil { + if e.ComplexityRoot.ControlObjectiveHistory.SystemInternalID == nil { break } - return e.complexity.ControlObjectiveHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.SystemInternalID(childComplexity), true case "ControlObjectiveHistory.systemOwned": - if e.complexity.ControlObjectiveHistory.SystemOwned == nil { + if e.ComplexityRoot.ControlObjectiveHistory.SystemOwned == nil { break } - return e.complexity.ControlObjectiveHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.SystemOwned(childComplexity), true case "ControlObjectiveHistory.tags": - if e.complexity.ControlObjectiveHistory.Tags == nil { + if e.ComplexityRoot.ControlObjectiveHistory.Tags == nil { break } - return e.complexity.ControlObjectiveHistory.Tags(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.Tags(childComplexity), true case "ControlObjectiveHistory.updatedAt": - if e.complexity.ControlObjectiveHistory.UpdatedAt == nil { + if e.ComplexityRoot.ControlObjectiveHistory.UpdatedAt == nil { break } - return e.complexity.ControlObjectiveHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.UpdatedAt(childComplexity), true case "ControlObjectiveHistory.updatedBy": - if e.complexity.ControlObjectiveHistory.UpdatedBy == nil { + if e.ComplexityRoot.ControlObjectiveHistory.UpdatedBy == nil { break } - return e.complexity.ControlObjectiveHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistory.UpdatedBy(childComplexity), true case "ControlObjectiveHistoryConnection.edges": - if e.complexity.ControlObjectiveHistoryConnection.Edges == nil { + if e.ComplexityRoot.ControlObjectiveHistoryConnection.Edges == nil { break } - return e.complexity.ControlObjectiveHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistoryConnection.Edges(childComplexity), true case "ControlObjectiveHistoryConnection.pageInfo": - if e.complexity.ControlObjectiveHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ControlObjectiveHistoryConnection.PageInfo == nil { break } - return e.complexity.ControlObjectiveHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistoryConnection.PageInfo(childComplexity), true case "ControlObjectiveHistoryConnection.totalCount": - if e.complexity.ControlObjectiveHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ControlObjectiveHistoryConnection.TotalCount == nil { break } - return e.complexity.ControlObjectiveHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistoryConnection.TotalCount(childComplexity), true case "ControlObjectiveHistoryEdge.cursor": - if e.complexity.ControlObjectiveHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ControlObjectiveHistoryEdge.Cursor == nil { break } - return e.complexity.ControlObjectiveHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistoryEdge.Cursor(childComplexity), true case "ControlObjectiveHistoryEdge.node": - if e.complexity.ControlObjectiveHistoryEdge.Node == nil { + if e.ComplexityRoot.ControlObjectiveHistoryEdge.Node == nil { break } - return e.complexity.ControlObjectiveHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ControlObjectiveHistoryEdge.Node(childComplexity), true case "CustomDomainHistory.cnameRecord": - if e.complexity.CustomDomainHistory.CnameRecord == nil { + if e.ComplexityRoot.CustomDomainHistory.CnameRecord == nil { break } - return e.complexity.CustomDomainHistory.CnameRecord(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.CnameRecord(childComplexity), true case "CustomDomainHistory.createdAt": - if e.complexity.CustomDomainHistory.CreatedAt == nil { + if e.ComplexityRoot.CustomDomainHistory.CreatedAt == nil { break } - return e.complexity.CustomDomainHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.CreatedAt(childComplexity), true case "CustomDomainHistory.createdBy": - if e.complexity.CustomDomainHistory.CreatedBy == nil { + if e.ComplexityRoot.CustomDomainHistory.CreatedBy == nil { break } - return e.complexity.CustomDomainHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.CreatedBy(childComplexity), true case "CustomDomainHistory.dnsVerificationID": - if e.complexity.CustomDomainHistory.DNSVerificationID == nil { + if e.ComplexityRoot.CustomDomainHistory.DNSVerificationID == nil { break } - return e.complexity.CustomDomainHistory.DNSVerificationID(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.DNSVerificationID(childComplexity), true case "CustomDomainHistory.historyTime": - if e.complexity.CustomDomainHistory.HistoryTime == nil { + if e.ComplexityRoot.CustomDomainHistory.HistoryTime == nil { break } - return e.complexity.CustomDomainHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.HistoryTime(childComplexity), true case "CustomDomainHistory.id": - if e.complexity.CustomDomainHistory.ID == nil { + if e.ComplexityRoot.CustomDomainHistory.ID == nil { break } - return e.complexity.CustomDomainHistory.ID(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.ID(childComplexity), true case "CustomDomainHistory.internalNotes": - if e.complexity.CustomDomainHistory.InternalNotes == nil { + if e.ComplexityRoot.CustomDomainHistory.InternalNotes == nil { break } - return e.complexity.CustomDomainHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.InternalNotes(childComplexity), true case "CustomDomainHistory.mappableDomainID": - if e.complexity.CustomDomainHistory.MappableDomainID == nil { + if e.ComplexityRoot.CustomDomainHistory.MappableDomainID == nil { break } - return e.complexity.CustomDomainHistory.MappableDomainID(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.MappableDomainID(childComplexity), true case "CustomDomainHistory.operation": - if e.complexity.CustomDomainHistory.Operation == nil { + if e.ComplexityRoot.CustomDomainHistory.Operation == nil { break } - return e.complexity.CustomDomainHistory.Operation(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.Operation(childComplexity), true case "CustomDomainHistory.ownerID": - if e.complexity.CustomDomainHistory.OwnerID == nil { + if e.ComplexityRoot.CustomDomainHistory.OwnerID == nil { break } - return e.complexity.CustomDomainHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.OwnerID(childComplexity), true case "CustomDomainHistory.ref": - if e.complexity.CustomDomainHistory.Ref == nil { + if e.ComplexityRoot.CustomDomainHistory.Ref == nil { break } - return e.complexity.CustomDomainHistory.Ref(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.Ref(childComplexity), true case "CustomDomainHistory.systemInternalID": - if e.complexity.CustomDomainHistory.SystemInternalID == nil { + if e.ComplexityRoot.CustomDomainHistory.SystemInternalID == nil { break } - return e.complexity.CustomDomainHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.SystemInternalID(childComplexity), true case "CustomDomainHistory.systemOwned": - if e.complexity.CustomDomainHistory.SystemOwned == nil { + if e.ComplexityRoot.CustomDomainHistory.SystemOwned == nil { break } - return e.complexity.CustomDomainHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.SystemOwned(childComplexity), true case "CustomDomainHistory.tags": - if e.complexity.CustomDomainHistory.Tags == nil { + if e.ComplexityRoot.CustomDomainHistory.Tags == nil { break } - return e.complexity.CustomDomainHistory.Tags(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.Tags(childComplexity), true case "CustomDomainHistory.trustCenterID": - if e.complexity.CustomDomainHistory.TrustCenterID == nil { + if e.ComplexityRoot.CustomDomainHistory.TrustCenterID == nil { break } - return e.complexity.CustomDomainHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.TrustCenterID(childComplexity), true case "CustomDomainHistory.updatedAt": - if e.complexity.CustomDomainHistory.UpdatedAt == nil { + if e.ComplexityRoot.CustomDomainHistory.UpdatedAt == nil { break } - return e.complexity.CustomDomainHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.UpdatedAt(childComplexity), true case "CustomDomainHistory.updatedBy": - if e.complexity.CustomDomainHistory.UpdatedBy == nil { + if e.ComplexityRoot.CustomDomainHistory.UpdatedBy == nil { break } - return e.complexity.CustomDomainHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.CustomDomainHistory.UpdatedBy(childComplexity), true case "CustomDomainHistoryConnection.edges": - if e.complexity.CustomDomainHistoryConnection.Edges == nil { + if e.ComplexityRoot.CustomDomainHistoryConnection.Edges == nil { break } - return e.complexity.CustomDomainHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.CustomDomainHistoryConnection.Edges(childComplexity), true case "CustomDomainHistoryConnection.pageInfo": - if e.complexity.CustomDomainHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.CustomDomainHistoryConnection.PageInfo == nil { break } - return e.complexity.CustomDomainHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.CustomDomainHistoryConnection.PageInfo(childComplexity), true case "CustomDomainHistoryConnection.totalCount": - if e.complexity.CustomDomainHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.CustomDomainHistoryConnection.TotalCount == nil { break } - return e.complexity.CustomDomainHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.CustomDomainHistoryConnection.TotalCount(childComplexity), true case "CustomDomainHistoryEdge.cursor": - if e.complexity.CustomDomainHistoryEdge.Cursor == nil { + if e.ComplexityRoot.CustomDomainHistoryEdge.Cursor == nil { break } - return e.complexity.CustomDomainHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.CustomDomainHistoryEdge.Cursor(childComplexity), true case "CustomDomainHistoryEdge.node": - if e.complexity.CustomDomainHistoryEdge.Node == nil { + if e.ComplexityRoot.CustomDomainHistoryEdge.Node == nil { break } - return e.complexity.CustomDomainHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.CustomDomainHistoryEdge.Node(childComplexity), true case "DNSVerificationHistory.acmeChallengePath": - if e.complexity.DNSVerificationHistory.AcmeChallengePath == nil { + if e.ComplexityRoot.DNSVerificationHistory.AcmeChallengePath == nil { break } - return e.complexity.DNSVerificationHistory.AcmeChallengePath(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.AcmeChallengePath(childComplexity), true case "DNSVerificationHistory.acmeChallengeStatus": - if e.complexity.DNSVerificationHistory.AcmeChallengeStatus == nil { + if e.ComplexityRoot.DNSVerificationHistory.AcmeChallengeStatus == nil { break } - return e.complexity.DNSVerificationHistory.AcmeChallengeStatus(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.AcmeChallengeStatus(childComplexity), true case "DNSVerificationHistory.acmeChallengeStatusReason": - if e.complexity.DNSVerificationHistory.AcmeChallengeStatusReason == nil { + if e.ComplexityRoot.DNSVerificationHistory.AcmeChallengeStatusReason == nil { break } - return e.complexity.DNSVerificationHistory.AcmeChallengeStatusReason(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.AcmeChallengeStatusReason(childComplexity), true case "DNSVerificationHistory.cloudflareHostnameID": - if e.complexity.DNSVerificationHistory.CloudflareHostnameID == nil { + if e.ComplexityRoot.DNSVerificationHistory.CloudflareHostnameID == nil { break } - return e.complexity.DNSVerificationHistory.CloudflareHostnameID(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.CloudflareHostnameID(childComplexity), true case "DNSVerificationHistory.createdAt": - if e.complexity.DNSVerificationHistory.CreatedAt == nil { + if e.ComplexityRoot.DNSVerificationHistory.CreatedAt == nil { break } - return e.complexity.DNSVerificationHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.CreatedAt(childComplexity), true case "DNSVerificationHistory.createdBy": - if e.complexity.DNSVerificationHistory.CreatedBy == nil { + if e.ComplexityRoot.DNSVerificationHistory.CreatedBy == nil { break } - return e.complexity.DNSVerificationHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.CreatedBy(childComplexity), true case "DNSVerificationHistory.dnsTxtRecord": - if e.complexity.DNSVerificationHistory.DNSTxtRecord == nil { + if e.ComplexityRoot.DNSVerificationHistory.DNSTxtRecord == nil { break } - return e.complexity.DNSVerificationHistory.DNSTxtRecord(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.DNSTxtRecord(childComplexity), true case "DNSVerificationHistory.dnsTxtValue": - if e.complexity.DNSVerificationHistory.DNSTxtValue == nil { + if e.ComplexityRoot.DNSVerificationHistory.DNSTxtValue == nil { break } - return e.complexity.DNSVerificationHistory.DNSTxtValue(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.DNSTxtValue(childComplexity), true case "DNSVerificationHistory.dnsVerificationStatus": - if e.complexity.DNSVerificationHistory.DNSVerificationStatus == nil { + if e.ComplexityRoot.DNSVerificationHistory.DNSVerificationStatus == nil { break } - return e.complexity.DNSVerificationHistory.DNSVerificationStatus(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.DNSVerificationStatus(childComplexity), true case "DNSVerificationHistory.dnsVerificationStatusReason": - if e.complexity.DNSVerificationHistory.DNSVerificationStatusReason == nil { + if e.ComplexityRoot.DNSVerificationHistory.DNSVerificationStatusReason == nil { break } - return e.complexity.DNSVerificationHistory.DNSVerificationStatusReason(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.DNSVerificationStatusReason(childComplexity), true case "DNSVerificationHistory.expectedAcmeChallengeValue": - if e.complexity.DNSVerificationHistory.ExpectedAcmeChallengeValue == nil { + if e.ComplexityRoot.DNSVerificationHistory.ExpectedAcmeChallengeValue == nil { break } - return e.complexity.DNSVerificationHistory.ExpectedAcmeChallengeValue(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.ExpectedAcmeChallengeValue(childComplexity), true case "DNSVerificationHistory.historyTime": - if e.complexity.DNSVerificationHistory.HistoryTime == nil { + if e.ComplexityRoot.DNSVerificationHistory.HistoryTime == nil { break } - return e.complexity.DNSVerificationHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.HistoryTime(childComplexity), true case "DNSVerificationHistory.id": - if e.complexity.DNSVerificationHistory.ID == nil { + if e.ComplexityRoot.DNSVerificationHistory.ID == nil { break } - return e.complexity.DNSVerificationHistory.ID(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.ID(childComplexity), true case "DNSVerificationHistory.operation": - if e.complexity.DNSVerificationHistory.Operation == nil { + if e.ComplexityRoot.DNSVerificationHistory.Operation == nil { break } - return e.complexity.DNSVerificationHistory.Operation(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.Operation(childComplexity), true case "DNSVerificationHistory.ownerID": - if e.complexity.DNSVerificationHistory.OwnerID == nil { + if e.ComplexityRoot.DNSVerificationHistory.OwnerID == nil { break } - return e.complexity.DNSVerificationHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.OwnerID(childComplexity), true case "DNSVerificationHistory.ref": - if e.complexity.DNSVerificationHistory.Ref == nil { + if e.ComplexityRoot.DNSVerificationHistory.Ref == nil { break } - return e.complexity.DNSVerificationHistory.Ref(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.Ref(childComplexity), true case "DNSVerificationHistory.tags": - if e.complexity.DNSVerificationHistory.Tags == nil { + if e.ComplexityRoot.DNSVerificationHistory.Tags == nil { break } - return e.complexity.DNSVerificationHistory.Tags(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.Tags(childComplexity), true case "DNSVerificationHistory.updatedAt": - if e.complexity.DNSVerificationHistory.UpdatedAt == nil { + if e.ComplexityRoot.DNSVerificationHistory.UpdatedAt == nil { break } - return e.complexity.DNSVerificationHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.UpdatedAt(childComplexity), true case "DNSVerificationHistory.updatedBy": - if e.complexity.DNSVerificationHistory.UpdatedBy == nil { + if e.ComplexityRoot.DNSVerificationHistory.UpdatedBy == nil { break } - return e.complexity.DNSVerificationHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistory.UpdatedBy(childComplexity), true case "DNSVerificationHistoryConnection.edges": - if e.complexity.DNSVerificationHistoryConnection.Edges == nil { + if e.ComplexityRoot.DNSVerificationHistoryConnection.Edges == nil { break } - return e.complexity.DNSVerificationHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistoryConnection.Edges(childComplexity), true case "DNSVerificationHistoryConnection.pageInfo": - if e.complexity.DNSVerificationHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.DNSVerificationHistoryConnection.PageInfo == nil { break } - return e.complexity.DNSVerificationHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistoryConnection.PageInfo(childComplexity), true case "DNSVerificationHistoryConnection.totalCount": - if e.complexity.DNSVerificationHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.DNSVerificationHistoryConnection.TotalCount == nil { break } - return e.complexity.DNSVerificationHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistoryConnection.TotalCount(childComplexity), true case "DNSVerificationHistoryEdge.cursor": - if e.complexity.DNSVerificationHistoryEdge.Cursor == nil { + if e.ComplexityRoot.DNSVerificationHistoryEdge.Cursor == nil { break } - return e.complexity.DNSVerificationHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistoryEdge.Cursor(childComplexity), true case "DNSVerificationHistoryEdge.node": - if e.complexity.DNSVerificationHistoryEdge.Node == nil { + if e.ComplexityRoot.DNSVerificationHistoryEdge.Node == nil { break } - return e.complexity.DNSVerificationHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.DNSVerificationHistoryEdge.Node(childComplexity), true case "DirectoryAccountHistory.accountType": - if e.complexity.DirectoryAccountHistory.AccountType == nil { + if e.ComplexityRoot.DirectoryAccountHistory.AccountType == nil { break } - return e.complexity.DirectoryAccountHistory.AccountType(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.AccountType(childComplexity), true case "DirectoryAccountHistory.avatarLocalFileID": - if e.complexity.DirectoryAccountHistory.AvatarLocalFileID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.AvatarLocalFileID == nil { break } - return e.complexity.DirectoryAccountHistory.AvatarLocalFileID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.AvatarLocalFileID(childComplexity), true case "DirectoryAccountHistory.avatarRemoteURL": - if e.complexity.DirectoryAccountHistory.AvatarRemoteURL == nil { + if e.ComplexityRoot.DirectoryAccountHistory.AvatarRemoteURL == nil { break } - return e.complexity.DirectoryAccountHistory.AvatarRemoteURL(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.AvatarRemoteURL(childComplexity), true case "DirectoryAccountHistory.avatarUpdatedAt": - if e.complexity.DirectoryAccountHistory.AvatarUpdatedAt == nil { + if e.ComplexityRoot.DirectoryAccountHistory.AvatarUpdatedAt == nil { break } - return e.complexity.DirectoryAccountHistory.AvatarUpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.AvatarUpdatedAt(childComplexity), true case "DirectoryAccountHistory.canonicalEmail": - if e.complexity.DirectoryAccountHistory.CanonicalEmail == nil { + if e.ComplexityRoot.DirectoryAccountHistory.CanonicalEmail == nil { break } - return e.complexity.DirectoryAccountHistory.CanonicalEmail(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.CanonicalEmail(childComplexity), true case "DirectoryAccountHistory.createdAt": - if e.complexity.DirectoryAccountHistory.CreatedAt == nil { + if e.ComplexityRoot.DirectoryAccountHistory.CreatedAt == nil { break } - return e.complexity.DirectoryAccountHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.CreatedAt(childComplexity), true case "DirectoryAccountHistory.createdBy": - if e.complexity.DirectoryAccountHistory.CreatedBy == nil { + if e.ComplexityRoot.DirectoryAccountHistory.CreatedBy == nil { break } - return e.complexity.DirectoryAccountHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.CreatedBy(childComplexity), true case "DirectoryAccountHistory.department": - if e.complexity.DirectoryAccountHistory.Department == nil { + if e.ComplexityRoot.DirectoryAccountHistory.Department == nil { break } - return e.complexity.DirectoryAccountHistory.Department(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.Department(childComplexity), true case "DirectoryAccountHistory.directoryName": - if e.complexity.DirectoryAccountHistory.DirectoryName == nil { + if e.ComplexityRoot.DirectoryAccountHistory.DirectoryName == nil { break } - return e.complexity.DirectoryAccountHistory.DirectoryName(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.DirectoryName(childComplexity), true case "DirectoryAccountHistory.directorySyncRunID": - if e.complexity.DirectoryAccountHistory.DirectorySyncRunID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.DirectorySyncRunID == nil { break } - return e.complexity.DirectoryAccountHistory.DirectorySyncRunID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.DirectorySyncRunID(childComplexity), true case "DirectoryAccountHistory.displayID": - if e.complexity.DirectoryAccountHistory.DisplayID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.DisplayID == nil { break } - return e.complexity.DirectoryAccountHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.DisplayID(childComplexity), true case "DirectoryAccountHistory.displayName": - if e.complexity.DirectoryAccountHistory.DisplayName == nil { + if e.ComplexityRoot.DirectoryAccountHistory.DisplayName == nil { break } - return e.complexity.DirectoryAccountHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.DisplayName(childComplexity), true case "DirectoryAccountHistory.environmentID": - if e.complexity.DirectoryAccountHistory.EnvironmentID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.EnvironmentID == nil { break } - return e.complexity.DirectoryAccountHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.EnvironmentID(childComplexity), true case "DirectoryAccountHistory.environmentName": - if e.complexity.DirectoryAccountHistory.EnvironmentName == nil { + if e.ComplexityRoot.DirectoryAccountHistory.EnvironmentName == nil { break } - return e.complexity.DirectoryAccountHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.EnvironmentName(childComplexity), true case "DirectoryAccountHistory.externalID": - if e.complexity.DirectoryAccountHistory.ExternalID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.ExternalID == nil { break } - return e.complexity.DirectoryAccountHistory.ExternalID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.ExternalID(childComplexity), true case "DirectoryAccountHistory.familyName": - if e.complexity.DirectoryAccountHistory.FamilyName == nil { + if e.ComplexityRoot.DirectoryAccountHistory.FamilyName == nil { break } - return e.complexity.DirectoryAccountHistory.FamilyName(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.FamilyName(childComplexity), true case "DirectoryAccountHistory.givenName": - if e.complexity.DirectoryAccountHistory.GivenName == nil { + if e.ComplexityRoot.DirectoryAccountHistory.GivenName == nil { break } - return e.complexity.DirectoryAccountHistory.GivenName(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.GivenName(childComplexity), true case "DirectoryAccountHistory.historyTime": - if e.complexity.DirectoryAccountHistory.HistoryTime == nil { + if e.ComplexityRoot.DirectoryAccountHistory.HistoryTime == nil { break } - return e.complexity.DirectoryAccountHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.HistoryTime(childComplexity), true case "DirectoryAccountHistory.id": - if e.complexity.DirectoryAccountHistory.ID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.ID == nil { break } - return e.complexity.DirectoryAccountHistory.ID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.ID(childComplexity), true case "DirectoryAccountHistory.identityHolderID": - if e.complexity.DirectoryAccountHistory.IdentityHolderID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.IdentityHolderID == nil { break } - return e.complexity.DirectoryAccountHistory.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.IdentityHolderID(childComplexity), true case "DirectoryAccountHistory.integrationID": - if e.complexity.DirectoryAccountHistory.IntegrationID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.IntegrationID == nil { break } - return e.complexity.DirectoryAccountHistory.IntegrationID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.IntegrationID(childComplexity), true case "DirectoryAccountHistory.jobTitle": - if e.complexity.DirectoryAccountHistory.JobTitle == nil { + if e.ComplexityRoot.DirectoryAccountHistory.JobTitle == nil { break } - return e.complexity.DirectoryAccountHistory.JobTitle(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.JobTitle(childComplexity), true case "DirectoryAccountHistory.lastLoginAt": - if e.complexity.DirectoryAccountHistory.LastLoginAt == nil { + if e.ComplexityRoot.DirectoryAccountHistory.LastLoginAt == nil { break } - return e.complexity.DirectoryAccountHistory.LastLoginAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.LastLoginAt(childComplexity), true case "DirectoryAccountHistory.lastSeenIP": - if e.complexity.DirectoryAccountHistory.LastSeenIP == nil { + if e.ComplexityRoot.DirectoryAccountHistory.LastSeenIP == nil { break } - return e.complexity.DirectoryAccountHistory.LastSeenIP(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.LastSeenIP(childComplexity), true case "DirectoryAccountHistory.mfaState": - if e.complexity.DirectoryAccountHistory.MfaState == nil { + if e.ComplexityRoot.DirectoryAccountHistory.MfaState == nil { break } - return e.complexity.DirectoryAccountHistory.MfaState(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.MfaState(childComplexity), true case "DirectoryAccountHistory.observedAt": - if e.complexity.DirectoryAccountHistory.ObservedAt == nil { + if e.ComplexityRoot.DirectoryAccountHistory.ObservedAt == nil { break } - return e.complexity.DirectoryAccountHistory.ObservedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.ObservedAt(childComplexity), true case "DirectoryAccountHistory.operation": - if e.complexity.DirectoryAccountHistory.Operation == nil { + if e.ComplexityRoot.DirectoryAccountHistory.Operation == nil { break } - return e.complexity.DirectoryAccountHistory.Operation(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.Operation(childComplexity), true case "DirectoryAccountHistory.organizationUnit": - if e.complexity.DirectoryAccountHistory.OrganizationUnit == nil { + if e.ComplexityRoot.DirectoryAccountHistory.OrganizationUnit == nil { break } - return e.complexity.DirectoryAccountHistory.OrganizationUnit(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.OrganizationUnit(childComplexity), true case "DirectoryAccountHistory.ownerID": - if e.complexity.DirectoryAccountHistory.OwnerID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.OwnerID == nil { break } - return e.complexity.DirectoryAccountHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.OwnerID(childComplexity), true case "DirectoryAccountHistory.platformID": - if e.complexity.DirectoryAccountHistory.PlatformID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.PlatformID == nil { break } - return e.complexity.DirectoryAccountHistory.PlatformID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.PlatformID(childComplexity), true case "DirectoryAccountHistory.profile": - if e.complexity.DirectoryAccountHistory.Profile == nil { + if e.ComplexityRoot.DirectoryAccountHistory.Profile == nil { break } - return e.complexity.DirectoryAccountHistory.Profile(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.Profile(childComplexity), true case "DirectoryAccountHistory.profileHash": - if e.complexity.DirectoryAccountHistory.ProfileHash == nil { + if e.ComplexityRoot.DirectoryAccountHistory.ProfileHash == nil { break } - return e.complexity.DirectoryAccountHistory.ProfileHash(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.ProfileHash(childComplexity), true case "DirectoryAccountHistory.rawProfileFileID": - if e.complexity.DirectoryAccountHistory.RawProfileFileID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.RawProfileFileID == nil { break } - return e.complexity.DirectoryAccountHistory.RawProfileFileID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.RawProfileFileID(childComplexity), true case "DirectoryAccountHistory.ref": - if e.complexity.DirectoryAccountHistory.Ref == nil { + if e.ComplexityRoot.DirectoryAccountHistory.Ref == nil { break } - return e.complexity.DirectoryAccountHistory.Ref(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.Ref(childComplexity), true case "DirectoryAccountHistory.scopeID": - if e.complexity.DirectoryAccountHistory.ScopeID == nil { + if e.ComplexityRoot.DirectoryAccountHistory.ScopeID == nil { break } - return e.complexity.DirectoryAccountHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.ScopeID(childComplexity), true case "DirectoryAccountHistory.scopeName": - if e.complexity.DirectoryAccountHistory.ScopeName == nil { + if e.ComplexityRoot.DirectoryAccountHistory.ScopeName == nil { break } - return e.complexity.DirectoryAccountHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.ScopeName(childComplexity), true case "DirectoryAccountHistory.secondaryKey": - if e.complexity.DirectoryAccountHistory.SecondaryKey == nil { + if e.ComplexityRoot.DirectoryAccountHistory.SecondaryKey == nil { break } - return e.complexity.DirectoryAccountHistory.SecondaryKey(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.SecondaryKey(childComplexity), true case "DirectoryAccountHistory.sourceVersion": - if e.complexity.DirectoryAccountHistory.SourceVersion == nil { + if e.ComplexityRoot.DirectoryAccountHistory.SourceVersion == nil { break } - return e.complexity.DirectoryAccountHistory.SourceVersion(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.SourceVersion(childComplexity), true case "DirectoryAccountHistory.status": - if e.complexity.DirectoryAccountHistory.Status == nil { + if e.ComplexityRoot.DirectoryAccountHistory.Status == nil { break } - return e.complexity.DirectoryAccountHistory.Status(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.Status(childComplexity), true case "DirectoryAccountHistory.tags": - if e.complexity.DirectoryAccountHistory.Tags == nil { + if e.ComplexityRoot.DirectoryAccountHistory.Tags == nil { break } - return e.complexity.DirectoryAccountHistory.Tags(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.Tags(childComplexity), true case "DirectoryAccountHistory.updatedAt": - if e.complexity.DirectoryAccountHistory.UpdatedAt == nil { + if e.ComplexityRoot.DirectoryAccountHistory.UpdatedAt == nil { break } - return e.complexity.DirectoryAccountHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.UpdatedAt(childComplexity), true case "DirectoryAccountHistory.updatedBy": - if e.complexity.DirectoryAccountHistory.UpdatedBy == nil { + if e.ComplexityRoot.DirectoryAccountHistory.UpdatedBy == nil { break } - return e.complexity.DirectoryAccountHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistory.UpdatedBy(childComplexity), true case "DirectoryAccountHistoryConnection.edges": - if e.complexity.DirectoryAccountHistoryConnection.Edges == nil { + if e.ComplexityRoot.DirectoryAccountHistoryConnection.Edges == nil { break } - return e.complexity.DirectoryAccountHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistoryConnection.Edges(childComplexity), true case "DirectoryAccountHistoryConnection.pageInfo": - if e.complexity.DirectoryAccountHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.DirectoryAccountHistoryConnection.PageInfo == nil { break } - return e.complexity.DirectoryAccountHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistoryConnection.PageInfo(childComplexity), true case "DirectoryAccountHistoryConnection.totalCount": - if e.complexity.DirectoryAccountHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.DirectoryAccountHistoryConnection.TotalCount == nil { break } - return e.complexity.DirectoryAccountHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistoryConnection.TotalCount(childComplexity), true case "DirectoryAccountHistoryEdge.cursor": - if e.complexity.DirectoryAccountHistoryEdge.Cursor == nil { + if e.ComplexityRoot.DirectoryAccountHistoryEdge.Cursor == nil { break } - return e.complexity.DirectoryAccountHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistoryEdge.Cursor(childComplexity), true case "DirectoryAccountHistoryEdge.node": - if e.complexity.DirectoryAccountHistoryEdge.Node == nil { + if e.ComplexityRoot.DirectoryAccountHistoryEdge.Node == nil { break } - return e.complexity.DirectoryAccountHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.DirectoryAccountHistoryEdge.Node(childComplexity), true case "DirectoryGroupHistory.classification": - if e.complexity.DirectoryGroupHistory.Classification == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Classification == nil { break } - return e.complexity.DirectoryGroupHistory.Classification(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Classification(childComplexity), true case "DirectoryGroupHistory.createdAt": - if e.complexity.DirectoryGroupHistory.CreatedAt == nil { + if e.ComplexityRoot.DirectoryGroupHistory.CreatedAt == nil { break } - return e.complexity.DirectoryGroupHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.CreatedAt(childComplexity), true case "DirectoryGroupHistory.createdBy": - if e.complexity.DirectoryGroupHistory.CreatedBy == nil { + if e.ComplexityRoot.DirectoryGroupHistory.CreatedBy == nil { break } - return e.complexity.DirectoryGroupHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.CreatedBy(childComplexity), true case "DirectoryGroupHistory.description": - if e.complexity.DirectoryGroupHistory.Description == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Description == nil { break } - return e.complexity.DirectoryGroupHistory.Description(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Description(childComplexity), true case "DirectoryGroupHistory.directorySyncRunID": - if e.complexity.DirectoryGroupHistory.DirectorySyncRunID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.DirectorySyncRunID == nil { break } - return e.complexity.DirectoryGroupHistory.DirectorySyncRunID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.DirectorySyncRunID(childComplexity), true case "DirectoryGroupHistory.displayID": - if e.complexity.DirectoryGroupHistory.DisplayID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.DisplayID == nil { break } - return e.complexity.DirectoryGroupHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.DisplayID(childComplexity), true case "DirectoryGroupHistory.displayName": - if e.complexity.DirectoryGroupHistory.DisplayName == nil { + if e.ComplexityRoot.DirectoryGroupHistory.DisplayName == nil { break } - return e.complexity.DirectoryGroupHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.DisplayName(childComplexity), true case "DirectoryGroupHistory.email": - if e.complexity.DirectoryGroupHistory.Email == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Email == nil { break } - return e.complexity.DirectoryGroupHistory.Email(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Email(childComplexity), true case "DirectoryGroupHistory.environmentID": - if e.complexity.DirectoryGroupHistory.EnvironmentID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.EnvironmentID == nil { break } - return e.complexity.DirectoryGroupHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.EnvironmentID(childComplexity), true case "DirectoryGroupHistory.environmentName": - if e.complexity.DirectoryGroupHistory.EnvironmentName == nil { + if e.ComplexityRoot.DirectoryGroupHistory.EnvironmentName == nil { break } - return e.complexity.DirectoryGroupHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.EnvironmentName(childComplexity), true case "DirectoryGroupHistory.externalID": - if e.complexity.DirectoryGroupHistory.ExternalID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.ExternalID == nil { break } - return e.complexity.DirectoryGroupHistory.ExternalID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.ExternalID(childComplexity), true case "DirectoryGroupHistory.externalSharingAllowed": - if e.complexity.DirectoryGroupHistory.ExternalSharingAllowed == nil { + if e.ComplexityRoot.DirectoryGroupHistory.ExternalSharingAllowed == nil { break } - return e.complexity.DirectoryGroupHistory.ExternalSharingAllowed(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.ExternalSharingAllowed(childComplexity), true case "DirectoryGroupHistory.historyTime": - if e.complexity.DirectoryGroupHistory.HistoryTime == nil { + if e.ComplexityRoot.DirectoryGroupHistory.HistoryTime == nil { break } - return e.complexity.DirectoryGroupHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.HistoryTime(childComplexity), true case "DirectoryGroupHistory.id": - if e.complexity.DirectoryGroupHistory.ID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.ID == nil { break } - return e.complexity.DirectoryGroupHistory.ID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.ID(childComplexity), true case "DirectoryGroupHistory.integrationID": - if e.complexity.DirectoryGroupHistory.IntegrationID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.IntegrationID == nil { break } - return e.complexity.DirectoryGroupHistory.IntegrationID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.IntegrationID(childComplexity), true case "DirectoryGroupHistory.memberCount": - if e.complexity.DirectoryGroupHistory.MemberCount == nil { + if e.ComplexityRoot.DirectoryGroupHistory.MemberCount == nil { break } - return e.complexity.DirectoryGroupHistory.MemberCount(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.MemberCount(childComplexity), true case "DirectoryGroupHistory.observedAt": - if e.complexity.DirectoryGroupHistory.ObservedAt == nil { + if e.ComplexityRoot.DirectoryGroupHistory.ObservedAt == nil { break } - return e.complexity.DirectoryGroupHistory.ObservedAt(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.ObservedAt(childComplexity), true case "DirectoryGroupHistory.operation": - if e.complexity.DirectoryGroupHistory.Operation == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Operation == nil { break } - return e.complexity.DirectoryGroupHistory.Operation(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Operation(childComplexity), true case "DirectoryGroupHistory.ownerID": - if e.complexity.DirectoryGroupHistory.OwnerID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.OwnerID == nil { break } - return e.complexity.DirectoryGroupHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.OwnerID(childComplexity), true case "DirectoryGroupHistory.platformID": - if e.complexity.DirectoryGroupHistory.PlatformID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.PlatformID == nil { break } - return e.complexity.DirectoryGroupHistory.PlatformID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.PlatformID(childComplexity), true case "DirectoryGroupHistory.profile": - if e.complexity.DirectoryGroupHistory.Profile == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Profile == nil { break } - return e.complexity.DirectoryGroupHistory.Profile(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Profile(childComplexity), true case "DirectoryGroupHistory.profileHash": - if e.complexity.DirectoryGroupHistory.ProfileHash == nil { + if e.ComplexityRoot.DirectoryGroupHistory.ProfileHash == nil { break } - return e.complexity.DirectoryGroupHistory.ProfileHash(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.ProfileHash(childComplexity), true case "DirectoryGroupHistory.rawProfileFileID": - if e.complexity.DirectoryGroupHistory.RawProfileFileID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.RawProfileFileID == nil { break } - return e.complexity.DirectoryGroupHistory.RawProfileFileID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.RawProfileFileID(childComplexity), true case "DirectoryGroupHistory.ref": - if e.complexity.DirectoryGroupHistory.Ref == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Ref == nil { break } - return e.complexity.DirectoryGroupHistory.Ref(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Ref(childComplexity), true case "DirectoryGroupHistory.scopeID": - if e.complexity.DirectoryGroupHistory.ScopeID == nil { + if e.ComplexityRoot.DirectoryGroupHistory.ScopeID == nil { break } - return e.complexity.DirectoryGroupHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.ScopeID(childComplexity), true case "DirectoryGroupHistory.scopeName": - if e.complexity.DirectoryGroupHistory.ScopeName == nil { + if e.ComplexityRoot.DirectoryGroupHistory.ScopeName == nil { break } - return e.complexity.DirectoryGroupHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.ScopeName(childComplexity), true case "DirectoryGroupHistory.sourceVersion": - if e.complexity.DirectoryGroupHistory.SourceVersion == nil { + if e.ComplexityRoot.DirectoryGroupHistory.SourceVersion == nil { break } - return e.complexity.DirectoryGroupHistory.SourceVersion(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.SourceVersion(childComplexity), true case "DirectoryGroupHistory.status": - if e.complexity.DirectoryGroupHistory.Status == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Status == nil { break } - return e.complexity.DirectoryGroupHistory.Status(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Status(childComplexity), true case "DirectoryGroupHistory.tags": - if e.complexity.DirectoryGroupHistory.Tags == nil { + if e.ComplexityRoot.DirectoryGroupHistory.Tags == nil { break } - return e.complexity.DirectoryGroupHistory.Tags(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.Tags(childComplexity), true case "DirectoryGroupHistory.updatedAt": - if e.complexity.DirectoryGroupHistory.UpdatedAt == nil { + if e.ComplexityRoot.DirectoryGroupHistory.UpdatedAt == nil { break } - return e.complexity.DirectoryGroupHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.UpdatedAt(childComplexity), true case "DirectoryGroupHistory.updatedBy": - if e.complexity.DirectoryGroupHistory.UpdatedBy == nil { + if e.ComplexityRoot.DirectoryGroupHistory.UpdatedBy == nil { break } - return e.complexity.DirectoryGroupHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistory.UpdatedBy(childComplexity), true case "DirectoryGroupHistoryConnection.edges": - if e.complexity.DirectoryGroupHistoryConnection.Edges == nil { + if e.ComplexityRoot.DirectoryGroupHistoryConnection.Edges == nil { break } - return e.complexity.DirectoryGroupHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistoryConnection.Edges(childComplexity), true case "DirectoryGroupHistoryConnection.pageInfo": - if e.complexity.DirectoryGroupHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.DirectoryGroupHistoryConnection.PageInfo == nil { break } - return e.complexity.DirectoryGroupHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistoryConnection.PageInfo(childComplexity), true case "DirectoryGroupHistoryConnection.totalCount": - if e.complexity.DirectoryGroupHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.DirectoryGroupHistoryConnection.TotalCount == nil { break } - return e.complexity.DirectoryGroupHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistoryConnection.TotalCount(childComplexity), true case "DirectoryGroupHistoryEdge.cursor": - if e.complexity.DirectoryGroupHistoryEdge.Cursor == nil { + if e.ComplexityRoot.DirectoryGroupHistoryEdge.Cursor == nil { break } - return e.complexity.DirectoryGroupHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistoryEdge.Cursor(childComplexity), true case "DirectoryGroupHistoryEdge.node": - if e.complexity.DirectoryGroupHistoryEdge.Node == nil { + if e.ComplexityRoot.DirectoryGroupHistoryEdge.Node == nil { break } - return e.complexity.DirectoryGroupHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.DirectoryGroupHistoryEdge.Node(childComplexity), true case "DirectoryMembershipHistory.createdAt": - if e.complexity.DirectoryMembershipHistory.CreatedAt == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.CreatedAt == nil { break } - return e.complexity.DirectoryMembershipHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.CreatedAt(childComplexity), true case "DirectoryMembershipHistory.createdBy": - if e.complexity.DirectoryMembershipHistory.CreatedBy == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.CreatedBy == nil { break } - return e.complexity.DirectoryMembershipHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.CreatedBy(childComplexity), true case "DirectoryMembershipHistory.directoryAccountID": - if e.complexity.DirectoryMembershipHistory.DirectoryAccountID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.DirectoryAccountID == nil { break } - return e.complexity.DirectoryMembershipHistory.DirectoryAccountID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.DirectoryAccountID(childComplexity), true case "DirectoryMembershipHistory.directoryGroupID": - if e.complexity.DirectoryMembershipHistory.DirectoryGroupID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.DirectoryGroupID == nil { break } - return e.complexity.DirectoryMembershipHistory.DirectoryGroupID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.DirectoryGroupID(childComplexity), true case "DirectoryMembershipHistory.directorySyncRunID": - if e.complexity.DirectoryMembershipHistory.DirectorySyncRunID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.DirectorySyncRunID == nil { break } - return e.complexity.DirectoryMembershipHistory.DirectorySyncRunID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.DirectorySyncRunID(childComplexity), true case "DirectoryMembershipHistory.displayID": - if e.complexity.DirectoryMembershipHistory.DisplayID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.DisplayID == nil { break } - return e.complexity.DirectoryMembershipHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.DisplayID(childComplexity), true case "DirectoryMembershipHistory.environmentID": - if e.complexity.DirectoryMembershipHistory.EnvironmentID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.EnvironmentID == nil { break } - return e.complexity.DirectoryMembershipHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.EnvironmentID(childComplexity), true case "DirectoryMembershipHistory.environmentName": - if e.complexity.DirectoryMembershipHistory.EnvironmentName == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.EnvironmentName == nil { break } - return e.complexity.DirectoryMembershipHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.EnvironmentName(childComplexity), true case "DirectoryMembershipHistory.firstSeenAt": - if e.complexity.DirectoryMembershipHistory.FirstSeenAt == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.FirstSeenAt == nil { break } - return e.complexity.DirectoryMembershipHistory.FirstSeenAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.FirstSeenAt(childComplexity), true case "DirectoryMembershipHistory.historyTime": - if e.complexity.DirectoryMembershipHistory.HistoryTime == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.HistoryTime == nil { break } - return e.complexity.DirectoryMembershipHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.HistoryTime(childComplexity), true case "DirectoryMembershipHistory.id": - if e.complexity.DirectoryMembershipHistory.ID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.ID == nil { break } - return e.complexity.DirectoryMembershipHistory.ID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.ID(childComplexity), true case "DirectoryMembershipHistory.integrationID": - if e.complexity.DirectoryMembershipHistory.IntegrationID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.IntegrationID == nil { break } - return e.complexity.DirectoryMembershipHistory.IntegrationID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.IntegrationID(childComplexity), true case "DirectoryMembershipHistory.lastConfirmedRunID": - if e.complexity.DirectoryMembershipHistory.LastConfirmedRunID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.LastConfirmedRunID == nil { break } - return e.complexity.DirectoryMembershipHistory.LastConfirmedRunID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.LastConfirmedRunID(childComplexity), true case "DirectoryMembershipHistory.lastSeenAt": - if e.complexity.DirectoryMembershipHistory.LastSeenAt == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.LastSeenAt == nil { break } - return e.complexity.DirectoryMembershipHistory.LastSeenAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.LastSeenAt(childComplexity), true case "DirectoryMembershipHistory.metadata": - if e.complexity.DirectoryMembershipHistory.Metadata == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.Metadata == nil { break } - return e.complexity.DirectoryMembershipHistory.Metadata(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.Metadata(childComplexity), true case "DirectoryMembershipHistory.observedAt": - if e.complexity.DirectoryMembershipHistory.ObservedAt == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.ObservedAt == nil { break } - return e.complexity.DirectoryMembershipHistory.ObservedAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.ObservedAt(childComplexity), true case "DirectoryMembershipHistory.operation": - if e.complexity.DirectoryMembershipHistory.Operation == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.Operation == nil { break } - return e.complexity.DirectoryMembershipHistory.Operation(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.Operation(childComplexity), true case "DirectoryMembershipHistory.ownerID": - if e.complexity.DirectoryMembershipHistory.OwnerID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.OwnerID == nil { break } - return e.complexity.DirectoryMembershipHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.OwnerID(childComplexity), true case "DirectoryMembershipHistory.platformID": - if e.complexity.DirectoryMembershipHistory.PlatformID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.PlatformID == nil { break } - return e.complexity.DirectoryMembershipHistory.PlatformID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.PlatformID(childComplexity), true case "DirectoryMembershipHistory.ref": - if e.complexity.DirectoryMembershipHistory.Ref == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.Ref == nil { break } - return e.complexity.DirectoryMembershipHistory.Ref(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.Ref(childComplexity), true case "DirectoryMembershipHistory.role": - if e.complexity.DirectoryMembershipHistory.Role == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.Role == nil { break } - return e.complexity.DirectoryMembershipHistory.Role(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.Role(childComplexity), true case "DirectoryMembershipHistory.scopeID": - if e.complexity.DirectoryMembershipHistory.ScopeID == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.ScopeID == nil { break } - return e.complexity.DirectoryMembershipHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.ScopeID(childComplexity), true case "DirectoryMembershipHistory.scopeName": - if e.complexity.DirectoryMembershipHistory.ScopeName == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.ScopeName == nil { break } - return e.complexity.DirectoryMembershipHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.ScopeName(childComplexity), true case "DirectoryMembershipHistory.source": - if e.complexity.DirectoryMembershipHistory.Source == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.Source == nil { break } - return e.complexity.DirectoryMembershipHistory.Source(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.Source(childComplexity), true case "DirectoryMembershipHistory.updatedAt": - if e.complexity.DirectoryMembershipHistory.UpdatedAt == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.UpdatedAt == nil { break } - return e.complexity.DirectoryMembershipHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.UpdatedAt(childComplexity), true case "DirectoryMembershipHistory.updatedBy": - if e.complexity.DirectoryMembershipHistory.UpdatedBy == nil { + if e.ComplexityRoot.DirectoryMembershipHistory.UpdatedBy == nil { break } - return e.complexity.DirectoryMembershipHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistory.UpdatedBy(childComplexity), true case "DirectoryMembershipHistoryConnection.edges": - if e.complexity.DirectoryMembershipHistoryConnection.Edges == nil { + if e.ComplexityRoot.DirectoryMembershipHistoryConnection.Edges == nil { break } - return e.complexity.DirectoryMembershipHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistoryConnection.Edges(childComplexity), true case "DirectoryMembershipHistoryConnection.pageInfo": - if e.complexity.DirectoryMembershipHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.DirectoryMembershipHistoryConnection.PageInfo == nil { break } - return e.complexity.DirectoryMembershipHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistoryConnection.PageInfo(childComplexity), true case "DirectoryMembershipHistoryConnection.totalCount": - if e.complexity.DirectoryMembershipHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.DirectoryMembershipHistoryConnection.TotalCount == nil { break } - return e.complexity.DirectoryMembershipHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistoryConnection.TotalCount(childComplexity), true case "DirectoryMembershipHistoryEdge.cursor": - if e.complexity.DirectoryMembershipHistoryEdge.Cursor == nil { + if e.ComplexityRoot.DirectoryMembershipHistoryEdge.Cursor == nil { break } - return e.complexity.DirectoryMembershipHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistoryEdge.Cursor(childComplexity), true case "DirectoryMembershipHistoryEdge.node": - if e.complexity.DirectoryMembershipHistoryEdge.Node == nil { + if e.ComplexityRoot.DirectoryMembershipHistoryEdge.Node == nil { break } - return e.complexity.DirectoryMembershipHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.DirectoryMembershipHistoryEdge.Node(childComplexity), true case "DiscussionHistory.createdAt": - if e.complexity.DiscussionHistory.CreatedAt == nil { + if e.ComplexityRoot.DiscussionHistory.CreatedAt == nil { break } - return e.complexity.DiscussionHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.CreatedAt(childComplexity), true case "DiscussionHistory.createdBy": - if e.complexity.DiscussionHistory.CreatedBy == nil { + if e.ComplexityRoot.DiscussionHistory.CreatedBy == nil { break } - return e.complexity.DiscussionHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.CreatedBy(childComplexity), true case "DiscussionHistory.externalID": - if e.complexity.DiscussionHistory.ExternalID == nil { + if e.ComplexityRoot.DiscussionHistory.ExternalID == nil { break } - return e.complexity.DiscussionHistory.ExternalID(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.ExternalID(childComplexity), true case "DiscussionHistory.historyTime": - if e.complexity.DiscussionHistory.HistoryTime == nil { + if e.ComplexityRoot.DiscussionHistory.HistoryTime == nil { break } - return e.complexity.DiscussionHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.HistoryTime(childComplexity), true case "DiscussionHistory.id": - if e.complexity.DiscussionHistory.ID == nil { + if e.ComplexityRoot.DiscussionHistory.ID == nil { break } - return e.complexity.DiscussionHistory.ID(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.ID(childComplexity), true case "DiscussionHistory.isResolved": - if e.complexity.DiscussionHistory.IsResolved == nil { + if e.ComplexityRoot.DiscussionHistory.IsResolved == nil { break } - return e.complexity.DiscussionHistory.IsResolved(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.IsResolved(childComplexity), true case "DiscussionHistory.operation": - if e.complexity.DiscussionHistory.Operation == nil { + if e.ComplexityRoot.DiscussionHistory.Operation == nil { break } - return e.complexity.DiscussionHistory.Operation(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.Operation(childComplexity), true case "DiscussionHistory.ownerID": - if e.complexity.DiscussionHistory.OwnerID == nil { + if e.ComplexityRoot.DiscussionHistory.OwnerID == nil { break } - return e.complexity.DiscussionHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.OwnerID(childComplexity), true case "DiscussionHistory.ref": - if e.complexity.DiscussionHistory.Ref == nil { + if e.ComplexityRoot.DiscussionHistory.Ref == nil { break } - return e.complexity.DiscussionHistory.Ref(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.Ref(childComplexity), true case "DiscussionHistory.updatedAt": - if e.complexity.DiscussionHistory.UpdatedAt == nil { + if e.ComplexityRoot.DiscussionHistory.UpdatedAt == nil { break } - return e.complexity.DiscussionHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.UpdatedAt(childComplexity), true case "DiscussionHistory.updatedBy": - if e.complexity.DiscussionHistory.UpdatedBy == nil { + if e.ComplexityRoot.DiscussionHistory.UpdatedBy == nil { break } - return e.complexity.DiscussionHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DiscussionHistory.UpdatedBy(childComplexity), true case "DiscussionHistoryConnection.edges": - if e.complexity.DiscussionHistoryConnection.Edges == nil { + if e.ComplexityRoot.DiscussionHistoryConnection.Edges == nil { break } - return e.complexity.DiscussionHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.DiscussionHistoryConnection.Edges(childComplexity), true case "DiscussionHistoryConnection.pageInfo": - if e.complexity.DiscussionHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.DiscussionHistoryConnection.PageInfo == nil { break } - return e.complexity.DiscussionHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DiscussionHistoryConnection.PageInfo(childComplexity), true case "DiscussionHistoryConnection.totalCount": - if e.complexity.DiscussionHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.DiscussionHistoryConnection.TotalCount == nil { break } - return e.complexity.DiscussionHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DiscussionHistoryConnection.TotalCount(childComplexity), true case "DiscussionHistoryEdge.cursor": - if e.complexity.DiscussionHistoryEdge.Cursor == nil { + if e.ComplexityRoot.DiscussionHistoryEdge.Cursor == nil { break } - return e.complexity.DiscussionHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DiscussionHistoryEdge.Cursor(childComplexity), true case "DiscussionHistoryEdge.node": - if e.complexity.DiscussionHistoryEdge.Node == nil { + if e.ComplexityRoot.DiscussionHistoryEdge.Node == nil { break } - return e.complexity.DiscussionHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.DiscussionHistoryEdge.Node(childComplexity), true case "DocumentDataHistory.createdAt": - if e.complexity.DocumentDataHistory.CreatedAt == nil { + if e.ComplexityRoot.DocumentDataHistory.CreatedAt == nil { break } - return e.complexity.DocumentDataHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.CreatedAt(childComplexity), true case "DocumentDataHistory.createdBy": - if e.complexity.DocumentDataHistory.CreatedBy == nil { + if e.ComplexityRoot.DocumentDataHistory.CreatedBy == nil { break } - return e.complexity.DocumentDataHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.CreatedBy(childComplexity), true case "DocumentDataHistory.data": - if e.complexity.DocumentDataHistory.Data == nil { + if e.ComplexityRoot.DocumentDataHistory.Data == nil { break } - return e.complexity.DocumentDataHistory.Data(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.Data(childComplexity), true case "DocumentDataHistory.environmentID": - if e.complexity.DocumentDataHistory.EnvironmentID == nil { + if e.ComplexityRoot.DocumentDataHistory.EnvironmentID == nil { break } - return e.complexity.DocumentDataHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.EnvironmentID(childComplexity), true case "DocumentDataHistory.environmentName": - if e.complexity.DocumentDataHistory.EnvironmentName == nil { + if e.ComplexityRoot.DocumentDataHistory.EnvironmentName == nil { break } - return e.complexity.DocumentDataHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.EnvironmentName(childComplexity), true case "DocumentDataHistory.historyTime": - if e.complexity.DocumentDataHistory.HistoryTime == nil { + if e.ComplexityRoot.DocumentDataHistory.HistoryTime == nil { break } - return e.complexity.DocumentDataHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.HistoryTime(childComplexity), true case "DocumentDataHistory.id": - if e.complexity.DocumentDataHistory.ID == nil { + if e.ComplexityRoot.DocumentDataHistory.ID == nil { break } - return e.complexity.DocumentDataHistory.ID(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.ID(childComplexity), true case "DocumentDataHistory.operation": - if e.complexity.DocumentDataHistory.Operation == nil { + if e.ComplexityRoot.DocumentDataHistory.Operation == nil { break } - return e.complexity.DocumentDataHistory.Operation(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.Operation(childComplexity), true case "DocumentDataHistory.ownerID": - if e.complexity.DocumentDataHistory.OwnerID == nil { + if e.ComplexityRoot.DocumentDataHistory.OwnerID == nil { break } - return e.complexity.DocumentDataHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.OwnerID(childComplexity), true case "DocumentDataHistory.ref": - if e.complexity.DocumentDataHistory.Ref == nil { + if e.ComplexityRoot.DocumentDataHistory.Ref == nil { break } - return e.complexity.DocumentDataHistory.Ref(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.Ref(childComplexity), true case "DocumentDataHistory.scopeID": - if e.complexity.DocumentDataHistory.ScopeID == nil { + if e.ComplexityRoot.DocumentDataHistory.ScopeID == nil { break } - return e.complexity.DocumentDataHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.ScopeID(childComplexity), true case "DocumentDataHistory.scopeName": - if e.complexity.DocumentDataHistory.ScopeName == nil { + if e.ComplexityRoot.DocumentDataHistory.ScopeName == nil { break } - return e.complexity.DocumentDataHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.ScopeName(childComplexity), true case "DocumentDataHistory.tags": - if e.complexity.DocumentDataHistory.Tags == nil { + if e.ComplexityRoot.DocumentDataHistory.Tags == nil { break } - return e.complexity.DocumentDataHistory.Tags(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.Tags(childComplexity), true case "DocumentDataHistory.templateID": - if e.complexity.DocumentDataHistory.TemplateID == nil { + if e.ComplexityRoot.DocumentDataHistory.TemplateID == nil { break } - return e.complexity.DocumentDataHistory.TemplateID(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.TemplateID(childComplexity), true case "DocumentDataHistory.updatedAt": - if e.complexity.DocumentDataHistory.UpdatedAt == nil { + if e.ComplexityRoot.DocumentDataHistory.UpdatedAt == nil { break } - return e.complexity.DocumentDataHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.UpdatedAt(childComplexity), true case "DocumentDataHistory.updatedBy": - if e.complexity.DocumentDataHistory.UpdatedBy == nil { + if e.ComplexityRoot.DocumentDataHistory.UpdatedBy == nil { break } - return e.complexity.DocumentDataHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.DocumentDataHistory.UpdatedBy(childComplexity), true case "DocumentDataHistoryConnection.edges": - if e.complexity.DocumentDataHistoryConnection.Edges == nil { + if e.ComplexityRoot.DocumentDataHistoryConnection.Edges == nil { break } - return e.complexity.DocumentDataHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.DocumentDataHistoryConnection.Edges(childComplexity), true case "DocumentDataHistoryConnection.pageInfo": - if e.complexity.DocumentDataHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.DocumentDataHistoryConnection.PageInfo == nil { break } - return e.complexity.DocumentDataHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.DocumentDataHistoryConnection.PageInfo(childComplexity), true case "DocumentDataHistoryConnection.totalCount": - if e.complexity.DocumentDataHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.DocumentDataHistoryConnection.TotalCount == nil { break } - return e.complexity.DocumentDataHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.DocumentDataHistoryConnection.TotalCount(childComplexity), true case "DocumentDataHistoryEdge.cursor": - if e.complexity.DocumentDataHistoryEdge.Cursor == nil { + if e.ComplexityRoot.DocumentDataHistoryEdge.Cursor == nil { break } - return e.complexity.DocumentDataHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.DocumentDataHistoryEdge.Cursor(childComplexity), true case "DocumentDataHistoryEdge.node": - if e.complexity.DocumentDataHistoryEdge.Node == nil { + if e.ComplexityRoot.DocumentDataHistoryEdge.Node == nil { break } - return e.complexity.DocumentDataHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.DocumentDataHistoryEdge.Node(childComplexity), true case "EmailBrandingHistory.backgroundColor": - if e.complexity.EmailBrandingHistory.BackgroundColor == nil { + if e.ComplexityRoot.EmailBrandingHistory.BackgroundColor == nil { break } - return e.complexity.EmailBrandingHistory.BackgroundColor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.BackgroundColor(childComplexity), true case "EmailBrandingHistory.brandName": - if e.complexity.EmailBrandingHistory.BrandName == nil { + if e.ComplexityRoot.EmailBrandingHistory.BrandName == nil { break } - return e.complexity.EmailBrandingHistory.BrandName(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.BrandName(childComplexity), true case "EmailBrandingHistory.buttonColor": - if e.complexity.EmailBrandingHistory.ButtonColor == nil { + if e.ComplexityRoot.EmailBrandingHistory.ButtonColor == nil { break } - return e.complexity.EmailBrandingHistory.ButtonColor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.ButtonColor(childComplexity), true case "EmailBrandingHistory.buttonTextColor": - if e.complexity.EmailBrandingHistory.ButtonTextColor == nil { + if e.ComplexityRoot.EmailBrandingHistory.ButtonTextColor == nil { break } - return e.complexity.EmailBrandingHistory.ButtonTextColor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.ButtonTextColor(childComplexity), true case "EmailBrandingHistory.createdAt": - if e.complexity.EmailBrandingHistory.CreatedAt == nil { + if e.ComplexityRoot.EmailBrandingHistory.CreatedAt == nil { break } - return e.complexity.EmailBrandingHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.CreatedAt(childComplexity), true case "EmailBrandingHistory.createdBy": - if e.complexity.EmailBrandingHistory.CreatedBy == nil { + if e.ComplexityRoot.EmailBrandingHistory.CreatedBy == nil { break } - return e.complexity.EmailBrandingHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.CreatedBy(childComplexity), true case "EmailBrandingHistory.fontFamily": - if e.complexity.EmailBrandingHistory.FontFamily == nil { + if e.ComplexityRoot.EmailBrandingHistory.FontFamily == nil { break } - return e.complexity.EmailBrandingHistory.FontFamily(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.FontFamily(childComplexity), true case "EmailBrandingHistory.historyTime": - if e.complexity.EmailBrandingHistory.HistoryTime == nil { + if e.ComplexityRoot.EmailBrandingHistory.HistoryTime == nil { break } - return e.complexity.EmailBrandingHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.HistoryTime(childComplexity), true case "EmailBrandingHistory.id": - if e.complexity.EmailBrandingHistory.ID == nil { + if e.ComplexityRoot.EmailBrandingHistory.ID == nil { break } - return e.complexity.EmailBrandingHistory.ID(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.ID(childComplexity), true case "EmailBrandingHistory.isDefault": - if e.complexity.EmailBrandingHistory.IsDefault == nil { + if e.ComplexityRoot.EmailBrandingHistory.IsDefault == nil { break } - return e.complexity.EmailBrandingHistory.IsDefault(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.IsDefault(childComplexity), true case "EmailBrandingHistory.linkColor": - if e.complexity.EmailBrandingHistory.LinkColor == nil { + if e.ComplexityRoot.EmailBrandingHistory.LinkColor == nil { break } - return e.complexity.EmailBrandingHistory.LinkColor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.LinkColor(childComplexity), true case "EmailBrandingHistory.logoRemoteURL": - if e.complexity.EmailBrandingHistory.LogoRemoteURL == nil { + if e.ComplexityRoot.EmailBrandingHistory.LogoRemoteURL == nil { break } - return e.complexity.EmailBrandingHistory.LogoRemoteURL(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.LogoRemoteURL(childComplexity), true case "EmailBrandingHistory.name": - if e.complexity.EmailBrandingHistory.Name == nil { + if e.ComplexityRoot.EmailBrandingHistory.Name == nil { break } - return e.complexity.EmailBrandingHistory.Name(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.Name(childComplexity), true case "EmailBrandingHistory.operation": - if e.complexity.EmailBrandingHistory.Operation == nil { + if e.ComplexityRoot.EmailBrandingHistory.Operation == nil { break } - return e.complexity.EmailBrandingHistory.Operation(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.Operation(childComplexity), true case "EmailBrandingHistory.ownerID": - if e.complexity.EmailBrandingHistory.OwnerID == nil { + if e.ComplexityRoot.EmailBrandingHistory.OwnerID == nil { break } - return e.complexity.EmailBrandingHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.OwnerID(childComplexity), true case "EmailBrandingHistory.primaryColor": - if e.complexity.EmailBrandingHistory.PrimaryColor == nil { + if e.ComplexityRoot.EmailBrandingHistory.PrimaryColor == nil { break } - return e.complexity.EmailBrandingHistory.PrimaryColor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.PrimaryColor(childComplexity), true case "EmailBrandingHistory.ref": - if e.complexity.EmailBrandingHistory.Ref == nil { + if e.ComplexityRoot.EmailBrandingHistory.Ref == nil { break } - return e.complexity.EmailBrandingHistory.Ref(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.Ref(childComplexity), true case "EmailBrandingHistory.secondaryColor": - if e.complexity.EmailBrandingHistory.SecondaryColor == nil { + if e.ComplexityRoot.EmailBrandingHistory.SecondaryColor == nil { break } - return e.complexity.EmailBrandingHistory.SecondaryColor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.SecondaryColor(childComplexity), true case "EmailBrandingHistory.tags": - if e.complexity.EmailBrandingHistory.Tags == nil { + if e.ComplexityRoot.EmailBrandingHistory.Tags == nil { break } - return e.complexity.EmailBrandingHistory.Tags(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.Tags(childComplexity), true case "EmailBrandingHistory.textColor": - if e.complexity.EmailBrandingHistory.TextColor == nil { + if e.ComplexityRoot.EmailBrandingHistory.TextColor == nil { break } - return e.complexity.EmailBrandingHistory.TextColor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.TextColor(childComplexity), true case "EmailBrandingHistory.updatedAt": - if e.complexity.EmailBrandingHistory.UpdatedAt == nil { + if e.ComplexityRoot.EmailBrandingHistory.UpdatedAt == nil { break } - return e.complexity.EmailBrandingHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.UpdatedAt(childComplexity), true case "EmailBrandingHistory.updatedBy": - if e.complexity.EmailBrandingHistory.UpdatedBy == nil { + if e.ComplexityRoot.EmailBrandingHistory.UpdatedBy == nil { break } - return e.complexity.EmailBrandingHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistory.UpdatedBy(childComplexity), true case "EmailBrandingHistoryConnection.edges": - if e.complexity.EmailBrandingHistoryConnection.Edges == nil { + if e.ComplexityRoot.EmailBrandingHistoryConnection.Edges == nil { break } - return e.complexity.EmailBrandingHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistoryConnection.Edges(childComplexity), true case "EmailBrandingHistoryConnection.pageInfo": - if e.complexity.EmailBrandingHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.EmailBrandingHistoryConnection.PageInfo == nil { break } - return e.complexity.EmailBrandingHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistoryConnection.PageInfo(childComplexity), true case "EmailBrandingHistoryConnection.totalCount": - if e.complexity.EmailBrandingHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.EmailBrandingHistoryConnection.TotalCount == nil { break } - return e.complexity.EmailBrandingHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistoryConnection.TotalCount(childComplexity), true case "EmailBrandingHistoryEdge.cursor": - if e.complexity.EmailBrandingHistoryEdge.Cursor == nil { + if e.ComplexityRoot.EmailBrandingHistoryEdge.Cursor == nil { break } - return e.complexity.EmailBrandingHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistoryEdge.Cursor(childComplexity), true case "EmailBrandingHistoryEdge.node": - if e.complexity.EmailBrandingHistoryEdge.Node == nil { + if e.ComplexityRoot.EmailBrandingHistoryEdge.Node == nil { break } - return e.complexity.EmailBrandingHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.EmailBrandingHistoryEdge.Node(childComplexity), true case "EmailTemplateHistory.active": - if e.complexity.EmailTemplateHistory.Active == nil { + if e.ComplexityRoot.EmailTemplateHistory.Active == nil { break } - return e.complexity.EmailTemplateHistory.Active(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Active(childComplexity), true case "EmailTemplateHistory.bodyTemplate": - if e.complexity.EmailTemplateHistory.BodyTemplate == nil { + if e.ComplexityRoot.EmailTemplateHistory.BodyTemplate == nil { break } - return e.complexity.EmailTemplateHistory.BodyTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.BodyTemplate(childComplexity), true case "EmailTemplateHistory.createdAt": - if e.complexity.EmailTemplateHistory.CreatedAt == nil { + if e.ComplexityRoot.EmailTemplateHistory.CreatedAt == nil { break } - return e.complexity.EmailTemplateHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.CreatedAt(childComplexity), true case "EmailTemplateHistory.createdBy": - if e.complexity.EmailTemplateHistory.CreatedBy == nil { + if e.ComplexityRoot.EmailTemplateHistory.CreatedBy == nil { break } - return e.complexity.EmailTemplateHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.CreatedBy(childComplexity), true case "EmailTemplateHistory.description": - if e.complexity.EmailTemplateHistory.Description == nil { + if e.ComplexityRoot.EmailTemplateHistory.Description == nil { break } - return e.complexity.EmailTemplateHistory.Description(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Description(childComplexity), true case "EmailTemplateHistory.emailBrandingID": - if e.complexity.EmailTemplateHistory.EmailBrandingID == nil { + if e.ComplexityRoot.EmailTemplateHistory.EmailBrandingID == nil { break } - return e.complexity.EmailTemplateHistory.EmailBrandingID(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.EmailBrandingID(childComplexity), true case "EmailTemplateHistory.format": - if e.complexity.EmailTemplateHistory.Format == nil { + if e.ComplexityRoot.EmailTemplateHistory.Format == nil { break } - return e.complexity.EmailTemplateHistory.Format(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Format(childComplexity), true case "EmailTemplateHistory.historyTime": - if e.complexity.EmailTemplateHistory.HistoryTime == nil { + if e.ComplexityRoot.EmailTemplateHistory.HistoryTime == nil { break } - return e.complexity.EmailTemplateHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.HistoryTime(childComplexity), true case "EmailTemplateHistory.id": - if e.complexity.EmailTemplateHistory.ID == nil { + if e.ComplexityRoot.EmailTemplateHistory.ID == nil { break } - return e.complexity.EmailTemplateHistory.ID(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.ID(childComplexity), true case "EmailTemplateHistory.integrationID": - if e.complexity.EmailTemplateHistory.IntegrationID == nil { + if e.ComplexityRoot.EmailTemplateHistory.IntegrationID == nil { break } - return e.complexity.EmailTemplateHistory.IntegrationID(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.IntegrationID(childComplexity), true case "EmailTemplateHistory.internalNotes": - if e.complexity.EmailTemplateHistory.InternalNotes == nil { + if e.ComplexityRoot.EmailTemplateHistory.InternalNotes == nil { break } - return e.complexity.EmailTemplateHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.InternalNotes(childComplexity), true case "EmailTemplateHistory.jsonconfig": - if e.complexity.EmailTemplateHistory.Jsonconfig == nil { + if e.ComplexityRoot.EmailTemplateHistory.Jsonconfig == nil { break } - return e.complexity.EmailTemplateHistory.Jsonconfig(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Jsonconfig(childComplexity), true case "EmailTemplateHistory.key": - if e.complexity.EmailTemplateHistory.Key == nil { + if e.ComplexityRoot.EmailTemplateHistory.Key == nil { break } - return e.complexity.EmailTemplateHistory.Key(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Key(childComplexity), true case "EmailTemplateHistory.locale": - if e.complexity.EmailTemplateHistory.Locale == nil { + if e.ComplexityRoot.EmailTemplateHistory.Locale == nil { break } - return e.complexity.EmailTemplateHistory.Locale(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Locale(childComplexity), true case "EmailTemplateHistory.metadata": - if e.complexity.EmailTemplateHistory.Metadata == nil { + if e.ComplexityRoot.EmailTemplateHistory.Metadata == nil { break } - return e.complexity.EmailTemplateHistory.Metadata(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Metadata(childComplexity), true case "EmailTemplateHistory.name": - if e.complexity.EmailTemplateHistory.Name == nil { + if e.ComplexityRoot.EmailTemplateHistory.Name == nil { break } - return e.complexity.EmailTemplateHistory.Name(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Name(childComplexity), true case "EmailTemplateHistory.operation": - if e.complexity.EmailTemplateHistory.Operation == nil { + if e.ComplexityRoot.EmailTemplateHistory.Operation == nil { break } - return e.complexity.EmailTemplateHistory.Operation(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Operation(childComplexity), true case "EmailTemplateHistory.ownerID": - if e.complexity.EmailTemplateHistory.OwnerID == nil { + if e.ComplexityRoot.EmailTemplateHistory.OwnerID == nil { break } - return e.complexity.EmailTemplateHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.OwnerID(childComplexity), true case "EmailTemplateHistory.preheaderTemplate": - if e.complexity.EmailTemplateHistory.PreheaderTemplate == nil { + if e.ComplexityRoot.EmailTemplateHistory.PreheaderTemplate == nil { break } - return e.complexity.EmailTemplateHistory.PreheaderTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.PreheaderTemplate(childComplexity), true case "EmailTemplateHistory.ref": - if e.complexity.EmailTemplateHistory.Ref == nil { + if e.ComplexityRoot.EmailTemplateHistory.Ref == nil { break } - return e.complexity.EmailTemplateHistory.Ref(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Ref(childComplexity), true case "EmailTemplateHistory.subjectTemplate": - if e.complexity.EmailTemplateHistory.SubjectTemplate == nil { + if e.ComplexityRoot.EmailTemplateHistory.SubjectTemplate == nil { break } - return e.complexity.EmailTemplateHistory.SubjectTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.SubjectTemplate(childComplexity), true case "EmailTemplateHistory.systemInternalID": - if e.complexity.EmailTemplateHistory.SystemInternalID == nil { + if e.ComplexityRoot.EmailTemplateHistory.SystemInternalID == nil { break } - return e.complexity.EmailTemplateHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.SystemInternalID(childComplexity), true case "EmailTemplateHistory.systemOwned": - if e.complexity.EmailTemplateHistory.SystemOwned == nil { + if e.ComplexityRoot.EmailTemplateHistory.SystemOwned == nil { break } - return e.complexity.EmailTemplateHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.SystemOwned(childComplexity), true case "EmailTemplateHistory.textTemplate": - if e.complexity.EmailTemplateHistory.TextTemplate == nil { + if e.ComplexityRoot.EmailTemplateHistory.TextTemplate == nil { break } - return e.complexity.EmailTemplateHistory.TextTemplate(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.TextTemplate(childComplexity), true case "EmailTemplateHistory.uischema": - if e.complexity.EmailTemplateHistory.Uischema == nil { + if e.ComplexityRoot.EmailTemplateHistory.Uischema == nil { break } - return e.complexity.EmailTemplateHistory.Uischema(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Uischema(childComplexity), true case "EmailTemplateHistory.updatedAt": - if e.complexity.EmailTemplateHistory.UpdatedAt == nil { + if e.ComplexityRoot.EmailTemplateHistory.UpdatedAt == nil { break } - return e.complexity.EmailTemplateHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.UpdatedAt(childComplexity), true case "EmailTemplateHistory.updatedBy": - if e.complexity.EmailTemplateHistory.UpdatedBy == nil { + if e.ComplexityRoot.EmailTemplateHistory.UpdatedBy == nil { break } - return e.complexity.EmailTemplateHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.UpdatedBy(childComplexity), true case "EmailTemplateHistory.version": - if e.complexity.EmailTemplateHistory.Version == nil { + if e.ComplexityRoot.EmailTemplateHistory.Version == nil { break } - return e.complexity.EmailTemplateHistory.Version(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.Version(childComplexity), true case "EmailTemplateHistory.workflowDefinitionID": - if e.complexity.EmailTemplateHistory.WorkflowDefinitionID == nil { + if e.ComplexityRoot.EmailTemplateHistory.WorkflowDefinitionID == nil { break } - return e.complexity.EmailTemplateHistory.WorkflowDefinitionID(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.WorkflowDefinitionID(childComplexity), true case "EmailTemplateHistory.workflowInstanceID": - if e.complexity.EmailTemplateHistory.WorkflowInstanceID == nil { + if e.ComplexityRoot.EmailTemplateHistory.WorkflowInstanceID == nil { break } - return e.complexity.EmailTemplateHistory.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistory.WorkflowInstanceID(childComplexity), true case "EmailTemplateHistoryConnection.edges": - if e.complexity.EmailTemplateHistoryConnection.Edges == nil { + if e.ComplexityRoot.EmailTemplateHistoryConnection.Edges == nil { break } - return e.complexity.EmailTemplateHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistoryConnection.Edges(childComplexity), true case "EmailTemplateHistoryConnection.pageInfo": - if e.complexity.EmailTemplateHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.EmailTemplateHistoryConnection.PageInfo == nil { break } - return e.complexity.EmailTemplateHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistoryConnection.PageInfo(childComplexity), true case "EmailTemplateHistoryConnection.totalCount": - if e.complexity.EmailTemplateHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.EmailTemplateHistoryConnection.TotalCount == nil { break } - return e.complexity.EmailTemplateHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistoryConnection.TotalCount(childComplexity), true case "EmailTemplateHistoryEdge.cursor": - if e.complexity.EmailTemplateHistoryEdge.Cursor == nil { + if e.ComplexityRoot.EmailTemplateHistoryEdge.Cursor == nil { break } - return e.complexity.EmailTemplateHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistoryEdge.Cursor(childComplexity), true case "EmailTemplateHistoryEdge.node": - if e.complexity.EmailTemplateHistoryEdge.Node == nil { + if e.ComplexityRoot.EmailTemplateHistoryEdge.Node == nil { break } - return e.complexity.EmailTemplateHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.EmailTemplateHistoryEdge.Node(childComplexity), true case "EntityHistory.annualSpend": - if e.complexity.EntityHistory.AnnualSpend == nil { + if e.ComplexityRoot.EntityHistory.AnnualSpend == nil { break } - return e.complexity.EntityHistory.AnnualSpend(childComplexity), true + return e.ComplexityRoot.EntityHistory.AnnualSpend(childComplexity), true case "EntityHistory.approvedForUse": - if e.complexity.EntityHistory.ApprovedForUse == nil { + if e.ComplexityRoot.EntityHistory.ApprovedForUse == nil { break } - return e.complexity.EntityHistory.ApprovedForUse(childComplexity), true + return e.ComplexityRoot.EntityHistory.ApprovedForUse(childComplexity), true case "EntityHistory.autoRenews": - if e.complexity.EntityHistory.AutoRenews == nil { + if e.ComplexityRoot.EntityHistory.AutoRenews == nil { break } - return e.complexity.EntityHistory.AutoRenews(childComplexity), true + return e.ComplexityRoot.EntityHistory.AutoRenews(childComplexity), true case "EntityHistory.billingModel": - if e.complexity.EntityHistory.BillingModel == nil { + if e.ComplexityRoot.EntityHistory.BillingModel == nil { break } - return e.complexity.EntityHistory.BillingModel(childComplexity), true + return e.ComplexityRoot.EntityHistory.BillingModel(childComplexity), true case "EntityHistory.contractEndDate": - if e.complexity.EntityHistory.ContractEndDate == nil { + if e.ComplexityRoot.EntityHistory.ContractEndDate == nil { break } - return e.complexity.EntityHistory.ContractEndDate(childComplexity), true + return e.ComplexityRoot.EntityHistory.ContractEndDate(childComplexity), true case "EntityHistory.contractRenewalAt": - if e.complexity.EntityHistory.ContractRenewalAt == nil { + if e.ComplexityRoot.EntityHistory.ContractRenewalAt == nil { break } - return e.complexity.EntityHistory.ContractRenewalAt(childComplexity), true + return e.ComplexityRoot.EntityHistory.ContractRenewalAt(childComplexity), true case "EntityHistory.contractStartDate": - if e.complexity.EntityHistory.ContractStartDate == nil { + if e.ComplexityRoot.EntityHistory.ContractStartDate == nil { break } - return e.complexity.EntityHistory.ContractStartDate(childComplexity), true + return e.ComplexityRoot.EntityHistory.ContractStartDate(childComplexity), true case "EntityHistory.createdAt": - if e.complexity.EntityHistory.CreatedAt == nil { + if e.ComplexityRoot.EntityHistory.CreatedAt == nil { break } - return e.complexity.EntityHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.EntityHistory.CreatedAt(childComplexity), true case "EntityHistory.createdBy": - if e.complexity.EntityHistory.CreatedBy == nil { + if e.ComplexityRoot.EntityHistory.CreatedBy == nil { break } - return e.complexity.EntityHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.EntityHistory.CreatedBy(childComplexity), true case "EntityHistory.description": - if e.complexity.EntityHistory.Description == nil { + if e.ComplexityRoot.EntityHistory.Description == nil { break } - return e.complexity.EntityHistory.Description(childComplexity), true + return e.ComplexityRoot.EntityHistory.Description(childComplexity), true case "EntityHistory.displayName": - if e.complexity.EntityHistory.DisplayName == nil { + if e.ComplexityRoot.EntityHistory.DisplayName == nil { break } - return e.complexity.EntityHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.EntityHistory.DisplayName(childComplexity), true case "EntityHistory.domains": - if e.complexity.EntityHistory.Domains == nil { + if e.ComplexityRoot.EntityHistory.Domains == nil { break } - return e.complexity.EntityHistory.Domains(childComplexity), true + return e.ComplexityRoot.EntityHistory.Domains(childComplexity), true case "EntityHistory.entityRelationshipStateID": - if e.complexity.EntityHistory.EntityRelationshipStateID == nil { + if e.ComplexityRoot.EntityHistory.EntityRelationshipStateID == nil { break } - return e.complexity.EntityHistory.EntityRelationshipStateID(childComplexity), true + return e.ComplexityRoot.EntityHistory.EntityRelationshipStateID(childComplexity), true case "EntityHistory.entityRelationshipStateName": - if e.complexity.EntityHistory.EntityRelationshipStateName == nil { + if e.ComplexityRoot.EntityHistory.EntityRelationshipStateName == nil { break } - return e.complexity.EntityHistory.EntityRelationshipStateName(childComplexity), true + return e.ComplexityRoot.EntityHistory.EntityRelationshipStateName(childComplexity), true case "EntityHistory.entitySecurityQuestionnaireStatusID": - if e.complexity.EntityHistory.EntitySecurityQuestionnaireStatusID == nil { + if e.ComplexityRoot.EntityHistory.EntitySecurityQuestionnaireStatusID == nil { break } - return e.complexity.EntityHistory.EntitySecurityQuestionnaireStatusID(childComplexity), true + return e.ComplexityRoot.EntityHistory.EntitySecurityQuestionnaireStatusID(childComplexity), true case "EntityHistory.entitySecurityQuestionnaireStatusName": - if e.complexity.EntityHistory.EntitySecurityQuestionnaireStatusName == nil { + if e.ComplexityRoot.EntityHistory.EntitySecurityQuestionnaireStatusName == nil { break } - return e.complexity.EntityHistory.EntitySecurityQuestionnaireStatusName(childComplexity), true + return e.ComplexityRoot.EntityHistory.EntitySecurityQuestionnaireStatusName(childComplexity), true case "EntityHistory.entitySourceTypeID": - if e.complexity.EntityHistory.EntitySourceTypeID == nil { + if e.ComplexityRoot.EntityHistory.EntitySourceTypeID == nil { break } - return e.complexity.EntityHistory.EntitySourceTypeID(childComplexity), true + return e.ComplexityRoot.EntityHistory.EntitySourceTypeID(childComplexity), true case "EntityHistory.entitySourceTypeName": - if e.complexity.EntityHistory.EntitySourceTypeName == nil { + if e.ComplexityRoot.EntityHistory.EntitySourceTypeName == nil { break } - return e.complexity.EntityHistory.EntitySourceTypeName(childComplexity), true + return e.ComplexityRoot.EntityHistory.EntitySourceTypeName(childComplexity), true case "EntityHistory.entityTypeID": - if e.complexity.EntityHistory.EntityTypeID == nil { + if e.ComplexityRoot.EntityHistory.EntityTypeID == nil { break } - return e.complexity.EntityHistory.EntityTypeID(childComplexity), true + return e.ComplexityRoot.EntityHistory.EntityTypeID(childComplexity), true case "EntityHistory.environmentID": - if e.complexity.EntityHistory.EnvironmentID == nil { + if e.ComplexityRoot.EntityHistory.EnvironmentID == nil { break } - return e.complexity.EntityHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.EntityHistory.EnvironmentID(childComplexity), true case "EntityHistory.environmentName": - if e.complexity.EntityHistory.EnvironmentName == nil { + if e.ComplexityRoot.EntityHistory.EnvironmentName == nil { break } - return e.complexity.EntityHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.EntityHistory.EnvironmentName(childComplexity), true case "EntityHistory.hasSoc2": - if e.complexity.EntityHistory.HasSoc2 == nil { + if e.ComplexityRoot.EntityHistory.HasSoc2 == nil { break } - return e.complexity.EntityHistory.HasSoc2(childComplexity), true + return e.ComplexityRoot.EntityHistory.HasSoc2(childComplexity), true case "EntityHistory.historyTime": - if e.complexity.EntityHistory.HistoryTime == nil { + if e.ComplexityRoot.EntityHistory.HistoryTime == nil { break } - return e.complexity.EntityHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.EntityHistory.HistoryTime(childComplexity), true case "EntityHistory.id": - if e.complexity.EntityHistory.ID == nil { + if e.ComplexityRoot.EntityHistory.ID == nil { break } - return e.complexity.EntityHistory.ID(childComplexity), true + return e.ComplexityRoot.EntityHistory.ID(childComplexity), true case "EntityHistory.internalNotes": - if e.complexity.EntityHistory.InternalNotes == nil { + if e.ComplexityRoot.EntityHistory.InternalNotes == nil { break } - return e.complexity.EntityHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.EntityHistory.InternalNotes(childComplexity), true case "EntityHistory.internalOwner": - if e.complexity.EntityHistory.InternalOwner == nil { + if e.ComplexityRoot.EntityHistory.InternalOwner == nil { break } - return e.complexity.EntityHistory.InternalOwner(childComplexity), true + return e.ComplexityRoot.EntityHistory.InternalOwner(childComplexity), true case "EntityHistory.internalOwnerGroupID": - if e.complexity.EntityHistory.InternalOwnerGroupID == nil { + if e.ComplexityRoot.EntityHistory.InternalOwnerGroupID == nil { break } - return e.complexity.EntityHistory.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.EntityHistory.InternalOwnerGroupID(childComplexity), true case "EntityHistory.internalOwnerUserID": - if e.complexity.EntityHistory.InternalOwnerUserID == nil { + if e.ComplexityRoot.EntityHistory.InternalOwnerUserID == nil { break } - return e.complexity.EntityHistory.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.EntityHistory.InternalOwnerUserID(childComplexity), true case "EntityHistory.lastReviewedAt": - if e.complexity.EntityHistory.LastReviewedAt == nil { + if e.ComplexityRoot.EntityHistory.LastReviewedAt == nil { break } - return e.complexity.EntityHistory.LastReviewedAt(childComplexity), true + return e.ComplexityRoot.EntityHistory.LastReviewedAt(childComplexity), true case "EntityHistory.linkedAssetIds": - if e.complexity.EntityHistory.LinkedAssetIds == nil { + if e.ComplexityRoot.EntityHistory.LinkedAssetIds == nil { break } - return e.complexity.EntityHistory.LinkedAssetIds(childComplexity), true + return e.ComplexityRoot.EntityHistory.LinkedAssetIds(childComplexity), true case "EntityHistory.links": - if e.complexity.EntityHistory.Links == nil { + if e.ComplexityRoot.EntityHistory.Links == nil { break } - return e.complexity.EntityHistory.Links(childComplexity), true + return e.ComplexityRoot.EntityHistory.Links(childComplexity), true case "EntityHistory.mfaEnforced": - if e.complexity.EntityHistory.MfaEnforced == nil { + if e.ComplexityRoot.EntityHistory.MfaEnforced == nil { break } - return e.complexity.EntityHistory.MfaEnforced(childComplexity), true + return e.ComplexityRoot.EntityHistory.MfaEnforced(childComplexity), true case "EntityHistory.mfaSupported": - if e.complexity.EntityHistory.MfaSupported == nil { + if e.ComplexityRoot.EntityHistory.MfaSupported == nil { break } - return e.complexity.EntityHistory.MfaSupported(childComplexity), true + return e.ComplexityRoot.EntityHistory.MfaSupported(childComplexity), true case "EntityHistory.name": - if e.complexity.EntityHistory.Name == nil { + if e.ComplexityRoot.EntityHistory.Name == nil { break } - return e.complexity.EntityHistory.Name(childComplexity), true + return e.ComplexityRoot.EntityHistory.Name(childComplexity), true case "EntityHistory.nextReviewAt": - if e.complexity.EntityHistory.NextReviewAt == nil { + if e.ComplexityRoot.EntityHistory.NextReviewAt == nil { break } - return e.complexity.EntityHistory.NextReviewAt(childComplexity), true + return e.ComplexityRoot.EntityHistory.NextReviewAt(childComplexity), true case "EntityHistory.operation": - if e.complexity.EntityHistory.Operation == nil { + if e.ComplexityRoot.EntityHistory.Operation == nil { break } - return e.complexity.EntityHistory.Operation(childComplexity), true + return e.ComplexityRoot.EntityHistory.Operation(childComplexity), true case "EntityHistory.ownerID": - if e.complexity.EntityHistory.OwnerID == nil { + if e.ComplexityRoot.EntityHistory.OwnerID == nil { break } - return e.complexity.EntityHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.EntityHistory.OwnerID(childComplexity), true case "EntityHistory.providedServices": - if e.complexity.EntityHistory.ProvidedServices == nil { + if e.ComplexityRoot.EntityHistory.ProvidedServices == nil { break } - return e.complexity.EntityHistory.ProvidedServices(childComplexity), true + return e.ComplexityRoot.EntityHistory.ProvidedServices(childComplexity), true case "EntityHistory.ref": - if e.complexity.EntityHistory.Ref == nil { + if e.ComplexityRoot.EntityHistory.Ref == nil { break } - return e.complexity.EntityHistory.Ref(childComplexity), true + return e.ComplexityRoot.EntityHistory.Ref(childComplexity), true case "EntityHistory.renewalRisk": - if e.complexity.EntityHistory.RenewalRisk == nil { + if e.ComplexityRoot.EntityHistory.RenewalRisk == nil { break } - return e.complexity.EntityHistory.RenewalRisk(childComplexity), true + return e.ComplexityRoot.EntityHistory.RenewalRisk(childComplexity), true case "EntityHistory.reviewFrequency": - if e.complexity.EntityHistory.ReviewFrequency == nil { + if e.ComplexityRoot.EntityHistory.ReviewFrequency == nil { break } - return e.complexity.EntityHistory.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.EntityHistory.ReviewFrequency(childComplexity), true case "EntityHistory.reviewedBy": - if e.complexity.EntityHistory.ReviewedBy == nil { + if e.ComplexityRoot.EntityHistory.ReviewedBy == nil { break } - return e.complexity.EntityHistory.ReviewedBy(childComplexity), true + return e.ComplexityRoot.EntityHistory.ReviewedBy(childComplexity), true case "EntityHistory.reviewedByGroupID": - if e.complexity.EntityHistory.ReviewedByGroupID == nil { + if e.ComplexityRoot.EntityHistory.ReviewedByGroupID == nil { break } - return e.complexity.EntityHistory.ReviewedByGroupID(childComplexity), true + return e.ComplexityRoot.EntityHistory.ReviewedByGroupID(childComplexity), true case "EntityHistory.reviewedByUserID": - if e.complexity.EntityHistory.ReviewedByUserID == nil { + if e.ComplexityRoot.EntityHistory.ReviewedByUserID == nil { break } - return e.complexity.EntityHistory.ReviewedByUserID(childComplexity), true + return e.ComplexityRoot.EntityHistory.ReviewedByUserID(childComplexity), true case "EntityHistory.riskRating": - if e.complexity.EntityHistory.RiskRating == nil { + if e.ComplexityRoot.EntityHistory.RiskRating == nil { break } - return e.complexity.EntityHistory.RiskRating(childComplexity), true + return e.ComplexityRoot.EntityHistory.RiskRating(childComplexity), true case "EntityHistory.riskScore": - if e.complexity.EntityHistory.RiskScore == nil { + if e.ComplexityRoot.EntityHistory.RiskScore == nil { break } - return e.complexity.EntityHistory.RiskScore(childComplexity), true + return e.ComplexityRoot.EntityHistory.RiskScore(childComplexity), true case "EntityHistory.ssoEnforced": - if e.complexity.EntityHistory.SSOEnforced == nil { + if e.ComplexityRoot.EntityHistory.SSOEnforced == nil { break } - return e.complexity.EntityHistory.SSOEnforced(childComplexity), true + return e.ComplexityRoot.EntityHistory.SSOEnforced(childComplexity), true case "EntityHistory.scopeID": - if e.complexity.EntityHistory.ScopeID == nil { + if e.ComplexityRoot.EntityHistory.ScopeID == nil { break } - return e.complexity.EntityHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.EntityHistory.ScopeID(childComplexity), true case "EntityHistory.scopeName": - if e.complexity.EntityHistory.ScopeName == nil { + if e.ComplexityRoot.EntityHistory.ScopeName == nil { break } - return e.complexity.EntityHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.EntityHistory.ScopeName(childComplexity), true case "EntityHistory.soc2PeriodEnd": - if e.complexity.EntityHistory.Soc2PeriodEnd == nil { + if e.ComplexityRoot.EntityHistory.Soc2PeriodEnd == nil { break } - return e.complexity.EntityHistory.Soc2PeriodEnd(childComplexity), true + return e.ComplexityRoot.EntityHistory.Soc2PeriodEnd(childComplexity), true case "EntityHistory.spendCurrency": - if e.complexity.EntityHistory.SpendCurrency == nil { + if e.ComplexityRoot.EntityHistory.SpendCurrency == nil { break } - return e.complexity.EntityHistory.SpendCurrency(childComplexity), true + return e.ComplexityRoot.EntityHistory.SpendCurrency(childComplexity), true case "EntityHistory.status": - if e.complexity.EntityHistory.Status == nil { + if e.ComplexityRoot.EntityHistory.Status == nil { break } - return e.complexity.EntityHistory.Status(childComplexity), true + return e.ComplexityRoot.EntityHistory.Status(childComplexity), true case "EntityHistory.statusPageURL": - if e.complexity.EntityHistory.StatusPageURL == nil { + if e.ComplexityRoot.EntityHistory.StatusPageURL == nil { break } - return e.complexity.EntityHistory.StatusPageURL(childComplexity), true + return e.ComplexityRoot.EntityHistory.StatusPageURL(childComplexity), true case "EntityHistory.systemInternalID": - if e.complexity.EntityHistory.SystemInternalID == nil { + if e.ComplexityRoot.EntityHistory.SystemInternalID == nil { break } - return e.complexity.EntityHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.EntityHistory.SystemInternalID(childComplexity), true case "EntityHistory.systemOwned": - if e.complexity.EntityHistory.SystemOwned == nil { + if e.ComplexityRoot.EntityHistory.SystemOwned == nil { break } - return e.complexity.EntityHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.EntityHistory.SystemOwned(childComplexity), true case "EntityHistory.tags": - if e.complexity.EntityHistory.Tags == nil { + if e.ComplexityRoot.EntityHistory.Tags == nil { break } - return e.complexity.EntityHistory.Tags(childComplexity), true + return e.ComplexityRoot.EntityHistory.Tags(childComplexity), true case "EntityHistory.terminationNoticeDays": - if e.complexity.EntityHistory.TerminationNoticeDays == nil { + if e.ComplexityRoot.EntityHistory.TerminationNoticeDays == nil { break } - return e.complexity.EntityHistory.TerminationNoticeDays(childComplexity), true + return e.ComplexityRoot.EntityHistory.TerminationNoticeDays(childComplexity), true case "EntityHistory.tier": - if e.complexity.EntityHistory.Tier == nil { + if e.ComplexityRoot.EntityHistory.Tier == nil { break } - return e.complexity.EntityHistory.Tier(childComplexity), true + return e.ComplexityRoot.EntityHistory.Tier(childComplexity), true case "EntityHistory.updatedAt": - if e.complexity.EntityHistory.UpdatedAt == nil { + if e.ComplexityRoot.EntityHistory.UpdatedAt == nil { break } - return e.complexity.EntityHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EntityHistory.UpdatedAt(childComplexity), true case "EntityHistory.updatedBy": - if e.complexity.EntityHistory.UpdatedBy == nil { + if e.ComplexityRoot.EntityHistory.UpdatedBy == nil { break } - return e.complexity.EntityHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EntityHistory.UpdatedBy(childComplexity), true case "EntityHistory.vendorMetadata": - if e.complexity.EntityHistory.VendorMetadata == nil { + if e.ComplexityRoot.EntityHistory.VendorMetadata == nil { break } - return e.complexity.EntityHistory.VendorMetadata(childComplexity), true + return e.ComplexityRoot.EntityHistory.VendorMetadata(childComplexity), true case "EntityHistoryConnection.edges": - if e.complexity.EntityHistoryConnection.Edges == nil { + if e.ComplexityRoot.EntityHistoryConnection.Edges == nil { break } - return e.complexity.EntityHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.EntityHistoryConnection.Edges(childComplexity), true case "EntityHistoryConnection.pageInfo": - if e.complexity.EntityHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.EntityHistoryConnection.PageInfo == nil { break } - return e.complexity.EntityHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EntityHistoryConnection.PageInfo(childComplexity), true case "EntityHistoryConnection.totalCount": - if e.complexity.EntityHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.EntityHistoryConnection.TotalCount == nil { break } - return e.complexity.EntityHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EntityHistoryConnection.TotalCount(childComplexity), true case "EntityHistoryEdge.cursor": - if e.complexity.EntityHistoryEdge.Cursor == nil { + if e.ComplexityRoot.EntityHistoryEdge.Cursor == nil { break } - return e.complexity.EntityHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EntityHistoryEdge.Cursor(childComplexity), true case "EntityHistoryEdge.node": - if e.complexity.EntityHistoryEdge.Node == nil { + if e.ComplexityRoot.EntityHistoryEdge.Node == nil { break } - return e.complexity.EntityHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.EntityHistoryEdge.Node(childComplexity), true case "EntityTypeHistory.createdAt": - if e.complexity.EntityTypeHistory.CreatedAt == nil { + if e.ComplexityRoot.EntityTypeHistory.CreatedAt == nil { break } - return e.complexity.EntityTypeHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.CreatedAt(childComplexity), true case "EntityTypeHistory.createdBy": - if e.complexity.EntityTypeHistory.CreatedBy == nil { + if e.ComplexityRoot.EntityTypeHistory.CreatedBy == nil { break } - return e.complexity.EntityTypeHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.CreatedBy(childComplexity), true case "EntityTypeHistory.historyTime": - if e.complexity.EntityTypeHistory.HistoryTime == nil { + if e.ComplexityRoot.EntityTypeHistory.HistoryTime == nil { break } - return e.complexity.EntityTypeHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.HistoryTime(childComplexity), true case "EntityTypeHistory.id": - if e.complexity.EntityTypeHistory.ID == nil { + if e.ComplexityRoot.EntityTypeHistory.ID == nil { break } - return e.complexity.EntityTypeHistory.ID(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.ID(childComplexity), true case "EntityTypeHistory.internalNotes": - if e.complexity.EntityTypeHistory.InternalNotes == nil { + if e.ComplexityRoot.EntityTypeHistory.InternalNotes == nil { break } - return e.complexity.EntityTypeHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.InternalNotes(childComplexity), true case "EntityTypeHistory.name": - if e.complexity.EntityTypeHistory.Name == nil { + if e.ComplexityRoot.EntityTypeHistory.Name == nil { break } - return e.complexity.EntityTypeHistory.Name(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.Name(childComplexity), true case "EntityTypeHistory.operation": - if e.complexity.EntityTypeHistory.Operation == nil { + if e.ComplexityRoot.EntityTypeHistory.Operation == nil { break } - return e.complexity.EntityTypeHistory.Operation(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.Operation(childComplexity), true case "EntityTypeHistory.ownerID": - if e.complexity.EntityTypeHistory.OwnerID == nil { + if e.ComplexityRoot.EntityTypeHistory.OwnerID == nil { break } - return e.complexity.EntityTypeHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.OwnerID(childComplexity), true case "EntityTypeHistory.ref": - if e.complexity.EntityTypeHistory.Ref == nil { + if e.ComplexityRoot.EntityTypeHistory.Ref == nil { break } - return e.complexity.EntityTypeHistory.Ref(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.Ref(childComplexity), true case "EntityTypeHistory.systemInternalID": - if e.complexity.EntityTypeHistory.SystemInternalID == nil { + if e.ComplexityRoot.EntityTypeHistory.SystemInternalID == nil { break } - return e.complexity.EntityTypeHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.SystemInternalID(childComplexity), true case "EntityTypeHistory.systemOwned": - if e.complexity.EntityTypeHistory.SystemOwned == nil { + if e.ComplexityRoot.EntityTypeHistory.SystemOwned == nil { break } - return e.complexity.EntityTypeHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.SystemOwned(childComplexity), true case "EntityTypeHistory.tags": - if e.complexity.EntityTypeHistory.Tags == nil { + if e.ComplexityRoot.EntityTypeHistory.Tags == nil { break } - return e.complexity.EntityTypeHistory.Tags(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.Tags(childComplexity), true case "EntityTypeHistory.updatedAt": - if e.complexity.EntityTypeHistory.UpdatedAt == nil { + if e.ComplexityRoot.EntityTypeHistory.UpdatedAt == nil { break } - return e.complexity.EntityTypeHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.UpdatedAt(childComplexity), true case "EntityTypeHistory.updatedBy": - if e.complexity.EntityTypeHistory.UpdatedBy == nil { + if e.ComplexityRoot.EntityTypeHistory.UpdatedBy == nil { break } - return e.complexity.EntityTypeHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EntityTypeHistory.UpdatedBy(childComplexity), true case "EntityTypeHistoryConnection.edges": - if e.complexity.EntityTypeHistoryConnection.Edges == nil { + if e.ComplexityRoot.EntityTypeHistoryConnection.Edges == nil { break } - return e.complexity.EntityTypeHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.EntityTypeHistoryConnection.Edges(childComplexity), true case "EntityTypeHistoryConnection.pageInfo": - if e.complexity.EntityTypeHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.EntityTypeHistoryConnection.PageInfo == nil { break } - return e.complexity.EntityTypeHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EntityTypeHistoryConnection.PageInfo(childComplexity), true case "EntityTypeHistoryConnection.totalCount": - if e.complexity.EntityTypeHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.EntityTypeHistoryConnection.TotalCount == nil { break } - return e.complexity.EntityTypeHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EntityTypeHistoryConnection.TotalCount(childComplexity), true case "EntityTypeHistoryEdge.cursor": - if e.complexity.EntityTypeHistoryEdge.Cursor == nil { + if e.ComplexityRoot.EntityTypeHistoryEdge.Cursor == nil { break } - return e.complexity.EntityTypeHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EntityTypeHistoryEdge.Cursor(childComplexity), true case "EntityTypeHistoryEdge.node": - if e.complexity.EntityTypeHistoryEdge.Node == nil { + if e.ComplexityRoot.EntityTypeHistoryEdge.Node == nil { break } - return e.complexity.EntityTypeHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.EntityTypeHistoryEdge.Node(childComplexity), true case "EvidenceHistory.collectionProcedure": - if e.complexity.EvidenceHistory.CollectionProcedure == nil { + if e.ComplexityRoot.EvidenceHistory.CollectionProcedure == nil { break } - return e.complexity.EvidenceHistory.CollectionProcedure(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.CollectionProcedure(childComplexity), true case "EvidenceHistory.createdAt": - if e.complexity.EvidenceHistory.CreatedAt == nil { + if e.ComplexityRoot.EvidenceHistory.CreatedAt == nil { break } - return e.complexity.EvidenceHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.CreatedAt(childComplexity), true case "EvidenceHistory.createdBy": - if e.complexity.EvidenceHistory.CreatedBy == nil { + if e.ComplexityRoot.EvidenceHistory.CreatedBy == nil { break } - return e.complexity.EvidenceHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.CreatedBy(childComplexity), true case "EvidenceHistory.creationDate": - if e.complexity.EvidenceHistory.CreationDate == nil { + if e.ComplexityRoot.EvidenceHistory.CreationDate == nil { break } - return e.complexity.EvidenceHistory.CreationDate(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.CreationDate(childComplexity), true case "EvidenceHistory.description": - if e.complexity.EvidenceHistory.Description == nil { + if e.ComplexityRoot.EvidenceHistory.Description == nil { break } - return e.complexity.EvidenceHistory.Description(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.Description(childComplexity), true case "EvidenceHistory.displayID": - if e.complexity.EvidenceHistory.DisplayID == nil { + if e.ComplexityRoot.EvidenceHistory.DisplayID == nil { break } - return e.complexity.EvidenceHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.DisplayID(childComplexity), true case "EvidenceHistory.environmentID": - if e.complexity.EvidenceHistory.EnvironmentID == nil { + if e.ComplexityRoot.EvidenceHistory.EnvironmentID == nil { break } - return e.complexity.EvidenceHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.EnvironmentID(childComplexity), true case "EvidenceHistory.environmentName": - if e.complexity.EvidenceHistory.EnvironmentName == nil { + if e.ComplexityRoot.EvidenceHistory.EnvironmentName == nil { break } - return e.complexity.EvidenceHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.EnvironmentName(childComplexity), true case "EvidenceHistory.historyTime": - if e.complexity.EvidenceHistory.HistoryTime == nil { + if e.ComplexityRoot.EvidenceHistory.HistoryTime == nil { break } - return e.complexity.EvidenceHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.HistoryTime(childComplexity), true case "EvidenceHistory.id": - if e.complexity.EvidenceHistory.ID == nil { + if e.ComplexityRoot.EvidenceHistory.ID == nil { break } - return e.complexity.EvidenceHistory.ID(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.ID(childComplexity), true case "EvidenceHistory.isAutomated": - if e.complexity.EvidenceHistory.IsAutomated == nil { + if e.ComplexityRoot.EvidenceHistory.IsAutomated == nil { break } - return e.complexity.EvidenceHistory.IsAutomated(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.IsAutomated(childComplexity), true case "EvidenceHistory.name": - if e.complexity.EvidenceHistory.Name == nil { + if e.ComplexityRoot.EvidenceHistory.Name == nil { break } - return e.complexity.EvidenceHistory.Name(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.Name(childComplexity), true case "EvidenceHistory.operation": - if e.complexity.EvidenceHistory.Operation == nil { + if e.ComplexityRoot.EvidenceHistory.Operation == nil { break } - return e.complexity.EvidenceHistory.Operation(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.Operation(childComplexity), true case "EvidenceHistory.ownerID": - if e.complexity.EvidenceHistory.OwnerID == nil { + if e.ComplexityRoot.EvidenceHistory.OwnerID == nil { break } - return e.complexity.EvidenceHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.OwnerID(childComplexity), true case "EvidenceHistory.ref": - if e.complexity.EvidenceHistory.Ref == nil { + if e.ComplexityRoot.EvidenceHistory.Ref == nil { break } - return e.complexity.EvidenceHistory.Ref(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.Ref(childComplexity), true case "EvidenceHistory.renewalDate": - if e.complexity.EvidenceHistory.RenewalDate == nil { + if e.ComplexityRoot.EvidenceHistory.RenewalDate == nil { break } - return e.complexity.EvidenceHistory.RenewalDate(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.RenewalDate(childComplexity), true case "EvidenceHistory.scopeID": - if e.complexity.EvidenceHistory.ScopeID == nil { + if e.ComplexityRoot.EvidenceHistory.ScopeID == nil { break } - return e.complexity.EvidenceHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.ScopeID(childComplexity), true case "EvidenceHistory.scopeName": - if e.complexity.EvidenceHistory.ScopeName == nil { + if e.ComplexityRoot.EvidenceHistory.ScopeName == nil { break } - return e.complexity.EvidenceHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.ScopeName(childComplexity), true case "EvidenceHistory.source": - if e.complexity.EvidenceHistory.Source == nil { + if e.ComplexityRoot.EvidenceHistory.Source == nil { break } - return e.complexity.EvidenceHistory.Source(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.Source(childComplexity), true case "EvidenceHistory.status": - if e.complexity.EvidenceHistory.Status == nil { + if e.ComplexityRoot.EvidenceHistory.Status == nil { break } - return e.complexity.EvidenceHistory.Status(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.Status(childComplexity), true case "EvidenceHistory.tags": - if e.complexity.EvidenceHistory.Tags == nil { + if e.ComplexityRoot.EvidenceHistory.Tags == nil { break } - return e.complexity.EvidenceHistory.Tags(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.Tags(childComplexity), true case "EvidenceHistory.url": - if e.complexity.EvidenceHistory.URL == nil { + if e.ComplexityRoot.EvidenceHistory.URL == nil { break } - return e.complexity.EvidenceHistory.URL(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.URL(childComplexity), true case "EvidenceHistory.updatedAt": - if e.complexity.EvidenceHistory.UpdatedAt == nil { + if e.ComplexityRoot.EvidenceHistory.UpdatedAt == nil { break } - return e.complexity.EvidenceHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.UpdatedAt(childComplexity), true case "EvidenceHistory.updatedBy": - if e.complexity.EvidenceHistory.UpdatedBy == nil { + if e.ComplexityRoot.EvidenceHistory.UpdatedBy == nil { break } - return e.complexity.EvidenceHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.UpdatedBy(childComplexity), true case "EvidenceHistory.workflowEligibleMarker": - if e.complexity.EvidenceHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.EvidenceHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.EvidenceHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.EvidenceHistory.WorkflowEligibleMarker(childComplexity), true case "EvidenceHistoryConnection.edges": - if e.complexity.EvidenceHistoryConnection.Edges == nil { + if e.ComplexityRoot.EvidenceHistoryConnection.Edges == nil { break } - return e.complexity.EvidenceHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.EvidenceHistoryConnection.Edges(childComplexity), true case "EvidenceHistoryConnection.pageInfo": - if e.complexity.EvidenceHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.EvidenceHistoryConnection.PageInfo == nil { break } - return e.complexity.EvidenceHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.EvidenceHistoryConnection.PageInfo(childComplexity), true case "EvidenceHistoryConnection.totalCount": - if e.complexity.EvidenceHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.EvidenceHistoryConnection.TotalCount == nil { break } - return e.complexity.EvidenceHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.EvidenceHistoryConnection.TotalCount(childComplexity), true case "EvidenceHistoryEdge.cursor": - if e.complexity.EvidenceHistoryEdge.Cursor == nil { + if e.ComplexityRoot.EvidenceHistoryEdge.Cursor == nil { break } - return e.complexity.EvidenceHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.EvidenceHistoryEdge.Cursor(childComplexity), true case "EvidenceHistoryEdge.node": - if e.complexity.EvidenceHistoryEdge.Node == nil { + if e.ComplexityRoot.EvidenceHistoryEdge.Node == nil { break } - return e.complexity.EvidenceHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.EvidenceHistoryEdge.Node(childComplexity), true case "FileHistory.categoryType": - if e.complexity.FileHistory.CategoryType == nil { + if e.ComplexityRoot.FileHistory.CategoryType == nil { break } - return e.complexity.FileHistory.CategoryType(childComplexity), true + return e.ComplexityRoot.FileHistory.CategoryType(childComplexity), true case "FileHistory.createdAt": - if e.complexity.FileHistory.CreatedAt == nil { + if e.ComplexityRoot.FileHistory.CreatedAt == nil { break } - return e.complexity.FileHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.FileHistory.CreatedAt(childComplexity), true case "FileHistory.createdBy": - if e.complexity.FileHistory.CreatedBy == nil { + if e.ComplexityRoot.FileHistory.CreatedBy == nil { break } - return e.complexity.FileHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.FileHistory.CreatedBy(childComplexity), true case "FileHistory.detectedContentType": - if e.complexity.FileHistory.DetectedContentType == nil { + if e.ComplexityRoot.FileHistory.DetectedContentType == nil { break } - return e.complexity.FileHistory.DetectedContentType(childComplexity), true + return e.ComplexityRoot.FileHistory.DetectedContentType(childComplexity), true case "FileHistory.detectedMimeType": - if e.complexity.FileHistory.DetectedMimeType == nil { + if e.ComplexityRoot.FileHistory.DetectedMimeType == nil { break } - return e.complexity.FileHistory.DetectedMimeType(childComplexity), true + return e.ComplexityRoot.FileHistory.DetectedMimeType(childComplexity), true case "FileHistory.environmentID": - if e.complexity.FileHistory.EnvironmentID == nil { + if e.ComplexityRoot.FileHistory.EnvironmentID == nil { break } - return e.complexity.FileHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.FileHistory.EnvironmentID(childComplexity), true case "FileHistory.environmentName": - if e.complexity.FileHistory.EnvironmentName == nil { + if e.ComplexityRoot.FileHistory.EnvironmentName == nil { break } - return e.complexity.FileHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.FileHistory.EnvironmentName(childComplexity), true case "FileHistory.historyTime": - if e.complexity.FileHistory.HistoryTime == nil { + if e.ComplexityRoot.FileHistory.HistoryTime == nil { break } - return e.complexity.FileHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.FileHistory.HistoryTime(childComplexity), true case "FileHistory.id": - if e.complexity.FileHistory.ID == nil { + if e.ComplexityRoot.FileHistory.ID == nil { break } - return e.complexity.FileHistory.ID(childComplexity), true + return e.ComplexityRoot.FileHistory.ID(childComplexity), true case "FileHistory.internalNotes": - if e.complexity.FileHistory.InternalNotes == nil { + if e.ComplexityRoot.FileHistory.InternalNotes == nil { break } - return e.complexity.FileHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.FileHistory.InternalNotes(childComplexity), true case "FileHistory.lastAccessedAt": - if e.complexity.FileHistory.LastAccessedAt == nil { + if e.ComplexityRoot.FileHistory.LastAccessedAt == nil { break } - return e.complexity.FileHistory.LastAccessedAt(childComplexity), true + return e.ComplexityRoot.FileHistory.LastAccessedAt(childComplexity), true case "FileHistory.md5Hash": - if e.complexity.FileHistory.Md5Hash == nil { + if e.ComplexityRoot.FileHistory.Md5Hash == nil { break } - return e.complexity.FileHistory.Md5Hash(childComplexity), true + return e.ComplexityRoot.FileHistory.Md5Hash(childComplexity), true case "FileHistory.metadata": - if e.complexity.FileHistory.Metadata == nil { + if e.ComplexityRoot.FileHistory.Metadata == nil { break } - return e.complexity.FileHistory.Metadata(childComplexity), true + return e.ComplexityRoot.FileHistory.Metadata(childComplexity), true case "FileHistory.operation": - if e.complexity.FileHistory.Operation == nil { + if e.ComplexityRoot.FileHistory.Operation == nil { break } - return e.complexity.FileHistory.Operation(childComplexity), true + return e.ComplexityRoot.FileHistory.Operation(childComplexity), true case "FileHistory.persistedFileSize": - if e.complexity.FileHistory.PersistedFileSize == nil { + if e.ComplexityRoot.FileHistory.PersistedFileSize == nil { break } - return e.complexity.FileHistory.PersistedFileSize(childComplexity), true + return e.ComplexityRoot.FileHistory.PersistedFileSize(childComplexity), true case "FileHistory.providedFileExtension": - if e.complexity.FileHistory.ProvidedFileExtension == nil { + if e.ComplexityRoot.FileHistory.ProvidedFileExtension == nil { break } - return e.complexity.FileHistory.ProvidedFileExtension(childComplexity), true + return e.ComplexityRoot.FileHistory.ProvidedFileExtension(childComplexity), true case "FileHistory.providedFileName": - if e.complexity.FileHistory.ProvidedFileName == nil { + if e.ComplexityRoot.FileHistory.ProvidedFileName == nil { break } - return e.complexity.FileHistory.ProvidedFileName(childComplexity), true + return e.ComplexityRoot.FileHistory.ProvidedFileName(childComplexity), true case "FileHistory.providedFileSize": - if e.complexity.FileHistory.ProvidedFileSize == nil { + if e.ComplexityRoot.FileHistory.ProvidedFileSize == nil { break } - return e.complexity.FileHistory.ProvidedFileSize(childComplexity), true + return e.ComplexityRoot.FileHistory.ProvidedFileSize(childComplexity), true case "FileHistory.ref": - if e.complexity.FileHistory.Ref == nil { + if e.ComplexityRoot.FileHistory.Ref == nil { break } - return e.complexity.FileHistory.Ref(childComplexity), true + return e.ComplexityRoot.FileHistory.Ref(childComplexity), true case "FileHistory.scopeID": - if e.complexity.FileHistory.ScopeID == nil { + if e.ComplexityRoot.FileHistory.ScopeID == nil { break } - return e.complexity.FileHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.FileHistory.ScopeID(childComplexity), true case "FileHistory.scopeName": - if e.complexity.FileHistory.ScopeName == nil { + if e.ComplexityRoot.FileHistory.ScopeName == nil { break } - return e.complexity.FileHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.FileHistory.ScopeName(childComplexity), true case "FileHistory.storagePath": - if e.complexity.FileHistory.StoragePath == nil { + if e.ComplexityRoot.FileHistory.StoragePath == nil { break } - return e.complexity.FileHistory.StoragePath(childComplexity), true + return e.ComplexityRoot.FileHistory.StoragePath(childComplexity), true case "FileHistory.storageProvider": - if e.complexity.FileHistory.StorageProvider == nil { + if e.ComplexityRoot.FileHistory.StorageProvider == nil { break } - return e.complexity.FileHistory.StorageProvider(childComplexity), true + return e.ComplexityRoot.FileHistory.StorageProvider(childComplexity), true case "FileHistory.storageRegion": - if e.complexity.FileHistory.StorageRegion == nil { + if e.ComplexityRoot.FileHistory.StorageRegion == nil { break } - return e.complexity.FileHistory.StorageRegion(childComplexity), true + return e.ComplexityRoot.FileHistory.StorageRegion(childComplexity), true case "FileHistory.storageScheme": - if e.complexity.FileHistory.StorageScheme == nil { + if e.ComplexityRoot.FileHistory.StorageScheme == nil { break } - return e.complexity.FileHistory.StorageScheme(childComplexity), true + return e.ComplexityRoot.FileHistory.StorageScheme(childComplexity), true case "FileHistory.storageVolume": - if e.complexity.FileHistory.StorageVolume == nil { + if e.ComplexityRoot.FileHistory.StorageVolume == nil { break } - return e.complexity.FileHistory.StorageVolume(childComplexity), true + return e.ComplexityRoot.FileHistory.StorageVolume(childComplexity), true case "FileHistory.storeKey": - if e.complexity.FileHistory.StoreKey == nil { + if e.ComplexityRoot.FileHistory.StoreKey == nil { break } - return e.complexity.FileHistory.StoreKey(childComplexity), true + return e.ComplexityRoot.FileHistory.StoreKey(childComplexity), true case "FileHistory.systemInternalID": - if e.complexity.FileHistory.SystemInternalID == nil { + if e.ComplexityRoot.FileHistory.SystemInternalID == nil { break } - return e.complexity.FileHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.FileHistory.SystemInternalID(childComplexity), true case "FileHistory.systemOwned": - if e.complexity.FileHistory.SystemOwned == nil { + if e.ComplexityRoot.FileHistory.SystemOwned == nil { break } - return e.complexity.FileHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.FileHistory.SystemOwned(childComplexity), true case "FileHistory.tags": - if e.complexity.FileHistory.Tags == nil { + if e.ComplexityRoot.FileHistory.Tags == nil { break } - return e.complexity.FileHistory.Tags(childComplexity), true + return e.ComplexityRoot.FileHistory.Tags(childComplexity), true case "FileHistory.uri": - if e.complexity.FileHistory.URI == nil { + if e.ComplexityRoot.FileHistory.URI == nil { break } - return e.complexity.FileHistory.URI(childComplexity), true + return e.ComplexityRoot.FileHistory.URI(childComplexity), true case "FileHistory.updatedAt": - if e.complexity.FileHistory.UpdatedAt == nil { + if e.ComplexityRoot.FileHistory.UpdatedAt == nil { break } - return e.complexity.FileHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.FileHistory.UpdatedAt(childComplexity), true case "FileHistory.updatedBy": - if e.complexity.FileHistory.UpdatedBy == nil { + if e.ComplexityRoot.FileHistory.UpdatedBy == nil { break } - return e.complexity.FileHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.FileHistory.UpdatedBy(childComplexity), true case "FileHistoryConnection.edges": - if e.complexity.FileHistoryConnection.Edges == nil { + if e.ComplexityRoot.FileHistoryConnection.Edges == nil { break } - return e.complexity.FileHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.FileHistoryConnection.Edges(childComplexity), true case "FileHistoryConnection.pageInfo": - if e.complexity.FileHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.FileHistoryConnection.PageInfo == nil { break } - return e.complexity.FileHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.FileHistoryConnection.PageInfo(childComplexity), true case "FileHistoryConnection.totalCount": - if e.complexity.FileHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.FileHistoryConnection.TotalCount == nil { break } - return e.complexity.FileHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.FileHistoryConnection.TotalCount(childComplexity), true case "FileHistoryEdge.cursor": - if e.complexity.FileHistoryEdge.Cursor == nil { + if e.ComplexityRoot.FileHistoryEdge.Cursor == nil { break } - return e.complexity.FileHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.FileHistoryEdge.Cursor(childComplexity), true case "FileHistoryEdge.node": - if e.complexity.FileHistoryEdge.Node == nil { + if e.ComplexityRoot.FileHistoryEdge.Node == nil { break } - return e.complexity.FileHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.FileHistoryEdge.Node(childComplexity), true case "FindingControlHistory.controlID": - if e.complexity.FindingControlHistory.ControlID == nil { + if e.ComplexityRoot.FindingControlHistory.ControlID == nil { break } - return e.complexity.FindingControlHistory.ControlID(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.ControlID(childComplexity), true case "FindingControlHistory.createdAt": - if e.complexity.FindingControlHistory.CreatedAt == nil { + if e.ComplexityRoot.FindingControlHistory.CreatedAt == nil { break } - return e.complexity.FindingControlHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.CreatedAt(childComplexity), true case "FindingControlHistory.createdBy": - if e.complexity.FindingControlHistory.CreatedBy == nil { + if e.ComplexityRoot.FindingControlHistory.CreatedBy == nil { break } - return e.complexity.FindingControlHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.CreatedBy(childComplexity), true case "FindingControlHistory.discoveredAt": - if e.complexity.FindingControlHistory.DiscoveredAt == nil { + if e.ComplexityRoot.FindingControlHistory.DiscoveredAt == nil { break } - return e.complexity.FindingControlHistory.DiscoveredAt(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.DiscoveredAt(childComplexity), true case "FindingControlHistory.externalControlID": - if e.complexity.FindingControlHistory.ExternalControlID == nil { + if e.ComplexityRoot.FindingControlHistory.ExternalControlID == nil { break } - return e.complexity.FindingControlHistory.ExternalControlID(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.ExternalControlID(childComplexity), true case "FindingControlHistory.externalStandard": - if e.complexity.FindingControlHistory.ExternalStandard == nil { + if e.ComplexityRoot.FindingControlHistory.ExternalStandard == nil { break } - return e.complexity.FindingControlHistory.ExternalStandard(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.ExternalStandard(childComplexity), true case "FindingControlHistory.externalStandardVersion": - if e.complexity.FindingControlHistory.ExternalStandardVersion == nil { + if e.ComplexityRoot.FindingControlHistory.ExternalStandardVersion == nil { break } - return e.complexity.FindingControlHistory.ExternalStandardVersion(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.ExternalStandardVersion(childComplexity), true case "FindingControlHistory.findingID": - if e.complexity.FindingControlHistory.FindingID == nil { + if e.ComplexityRoot.FindingControlHistory.FindingID == nil { break } - return e.complexity.FindingControlHistory.FindingID(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.FindingID(childComplexity), true case "FindingControlHistory.historyTime": - if e.complexity.FindingControlHistory.HistoryTime == nil { + if e.ComplexityRoot.FindingControlHistory.HistoryTime == nil { break } - return e.complexity.FindingControlHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.HistoryTime(childComplexity), true case "FindingControlHistory.id": - if e.complexity.FindingControlHistory.ID == nil { + if e.ComplexityRoot.FindingControlHistory.ID == nil { break } - return e.complexity.FindingControlHistory.ID(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.ID(childComplexity), true case "FindingControlHistory.metadata": - if e.complexity.FindingControlHistory.Metadata == nil { + if e.ComplexityRoot.FindingControlHistory.Metadata == nil { break } - return e.complexity.FindingControlHistory.Metadata(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.Metadata(childComplexity), true case "FindingControlHistory.operation": - if e.complexity.FindingControlHistory.Operation == nil { + if e.ComplexityRoot.FindingControlHistory.Operation == nil { break } - return e.complexity.FindingControlHistory.Operation(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.Operation(childComplexity), true case "FindingControlHistory.ref": - if e.complexity.FindingControlHistory.Ref == nil { + if e.ComplexityRoot.FindingControlHistory.Ref == nil { break } - return e.complexity.FindingControlHistory.Ref(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.Ref(childComplexity), true case "FindingControlHistory.source": - if e.complexity.FindingControlHistory.Source == nil { + if e.ComplexityRoot.FindingControlHistory.Source == nil { break } - return e.complexity.FindingControlHistory.Source(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.Source(childComplexity), true case "FindingControlHistory.standardID": - if e.complexity.FindingControlHistory.StandardID == nil { + if e.ComplexityRoot.FindingControlHistory.StandardID == nil { break } - return e.complexity.FindingControlHistory.StandardID(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.StandardID(childComplexity), true case "FindingControlHistory.updatedAt": - if e.complexity.FindingControlHistory.UpdatedAt == nil { + if e.ComplexityRoot.FindingControlHistory.UpdatedAt == nil { break } - return e.complexity.FindingControlHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.UpdatedAt(childComplexity), true case "FindingControlHistory.updatedBy": - if e.complexity.FindingControlHistory.UpdatedBy == nil { + if e.ComplexityRoot.FindingControlHistory.UpdatedBy == nil { break } - return e.complexity.FindingControlHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.FindingControlHistory.UpdatedBy(childComplexity), true case "FindingControlHistoryConnection.edges": - if e.complexity.FindingControlHistoryConnection.Edges == nil { + if e.ComplexityRoot.FindingControlHistoryConnection.Edges == nil { break } - return e.complexity.FindingControlHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.FindingControlHistoryConnection.Edges(childComplexity), true case "FindingControlHistoryConnection.pageInfo": - if e.complexity.FindingControlHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.FindingControlHistoryConnection.PageInfo == nil { break } - return e.complexity.FindingControlHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.FindingControlHistoryConnection.PageInfo(childComplexity), true case "FindingControlHistoryConnection.totalCount": - if e.complexity.FindingControlHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.FindingControlHistoryConnection.TotalCount == nil { break } - return e.complexity.FindingControlHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.FindingControlHistoryConnection.TotalCount(childComplexity), true case "FindingControlHistoryEdge.cursor": - if e.complexity.FindingControlHistoryEdge.Cursor == nil { + if e.ComplexityRoot.FindingControlHistoryEdge.Cursor == nil { break } - return e.complexity.FindingControlHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.FindingControlHistoryEdge.Cursor(childComplexity), true case "FindingControlHistoryEdge.node": - if e.complexity.FindingControlHistoryEdge.Node == nil { + if e.ComplexityRoot.FindingControlHistoryEdge.Node == nil { break } - return e.complexity.FindingControlHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.FindingControlHistoryEdge.Node(childComplexity), true case "FindingHistory.assessmentID": - if e.complexity.FindingHistory.AssessmentID == nil { + if e.ComplexityRoot.FindingHistory.AssessmentID == nil { break } - return e.complexity.FindingHistory.AssessmentID(childComplexity), true + return e.ComplexityRoot.FindingHistory.AssessmentID(childComplexity), true case "FindingHistory.blocksProduction": - if e.complexity.FindingHistory.BlocksProduction == nil { + if e.ComplexityRoot.FindingHistory.BlocksProduction == nil { break } - return e.complexity.FindingHistory.BlocksProduction(childComplexity), true + return e.ComplexityRoot.FindingHistory.BlocksProduction(childComplexity), true case "FindingHistory.categories": - if e.complexity.FindingHistory.Categories == nil { + if e.ComplexityRoot.FindingHistory.Categories == nil { break } - return e.complexity.FindingHistory.Categories(childComplexity), true + return e.ComplexityRoot.FindingHistory.Categories(childComplexity), true case "FindingHistory.category": - if e.complexity.FindingHistory.Category == nil { + if e.ComplexityRoot.FindingHistory.Category == nil { break } - return e.complexity.FindingHistory.Category(childComplexity), true + return e.ComplexityRoot.FindingHistory.Category(childComplexity), true case "FindingHistory.createdAt": - if e.complexity.FindingHistory.CreatedAt == nil { + if e.ComplexityRoot.FindingHistory.CreatedAt == nil { break } - return e.complexity.FindingHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.FindingHistory.CreatedAt(childComplexity), true case "FindingHistory.createdBy": - if e.complexity.FindingHistory.CreatedBy == nil { + if e.ComplexityRoot.FindingHistory.CreatedBy == nil { break } - return e.complexity.FindingHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.FindingHistory.CreatedBy(childComplexity), true case "FindingHistory.description": - if e.complexity.FindingHistory.Description == nil { + if e.ComplexityRoot.FindingHistory.Description == nil { break } - return e.complexity.FindingHistory.Description(childComplexity), true + return e.ComplexityRoot.FindingHistory.Description(childComplexity), true case "FindingHistory.displayID": - if e.complexity.FindingHistory.DisplayID == nil { + if e.ComplexityRoot.FindingHistory.DisplayID == nil { break } - return e.complexity.FindingHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.FindingHistory.DisplayID(childComplexity), true case "FindingHistory.displayName": - if e.complexity.FindingHistory.DisplayName == nil { + if e.ComplexityRoot.FindingHistory.DisplayName == nil { break } - return e.complexity.FindingHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.FindingHistory.DisplayName(childComplexity), true case "FindingHistory.environmentID": - if e.complexity.FindingHistory.EnvironmentID == nil { + if e.ComplexityRoot.FindingHistory.EnvironmentID == nil { break } - return e.complexity.FindingHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.FindingHistory.EnvironmentID(childComplexity), true case "FindingHistory.environmentName": - if e.complexity.FindingHistory.EnvironmentName == nil { + if e.ComplexityRoot.FindingHistory.EnvironmentName == nil { break } - return e.complexity.FindingHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.FindingHistory.EnvironmentName(childComplexity), true case "FindingHistory.eventTime": - if e.complexity.FindingHistory.EventTime == nil { + if e.ComplexityRoot.FindingHistory.EventTime == nil { break } - return e.complexity.FindingHistory.EventTime(childComplexity), true + return e.ComplexityRoot.FindingHistory.EventTime(childComplexity), true case "FindingHistory.exploitability": - if e.complexity.FindingHistory.Exploitability == nil { + if e.ComplexityRoot.FindingHistory.Exploitability == nil { break } - return e.complexity.FindingHistory.Exploitability(childComplexity), true + return e.ComplexityRoot.FindingHistory.Exploitability(childComplexity), true case "FindingHistory.externalID": - if e.complexity.FindingHistory.ExternalID == nil { + if e.ComplexityRoot.FindingHistory.ExternalID == nil { break } - return e.complexity.FindingHistory.ExternalID(childComplexity), true + return e.ComplexityRoot.FindingHistory.ExternalID(childComplexity), true case "FindingHistory.externalOwnerID": - if e.complexity.FindingHistory.ExternalOwnerID == nil { + if e.ComplexityRoot.FindingHistory.ExternalOwnerID == nil { break } - return e.complexity.FindingHistory.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.FindingHistory.ExternalOwnerID(childComplexity), true case "FindingHistory.externalURI": - if e.complexity.FindingHistory.ExternalURI == nil { + if e.ComplexityRoot.FindingHistory.ExternalURI == nil { break } - return e.complexity.FindingHistory.ExternalURI(childComplexity), true + return e.ComplexityRoot.FindingHistory.ExternalURI(childComplexity), true case "FindingHistory.findingClass": - if e.complexity.FindingHistory.FindingClass == nil { + if e.ComplexityRoot.FindingHistory.FindingClass == nil { break } - return e.complexity.FindingHistory.FindingClass(childComplexity), true + return e.ComplexityRoot.FindingHistory.FindingClass(childComplexity), true case "FindingHistory.historyTime": - if e.complexity.FindingHistory.HistoryTime == nil { + if e.ComplexityRoot.FindingHistory.HistoryTime == nil { break } - return e.complexity.FindingHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.FindingHistory.HistoryTime(childComplexity), true case "FindingHistory.id": - if e.complexity.FindingHistory.ID == nil { + if e.ComplexityRoot.FindingHistory.ID == nil { break } - return e.complexity.FindingHistory.ID(childComplexity), true + return e.ComplexityRoot.FindingHistory.ID(childComplexity), true case "FindingHistory.impact": - if e.complexity.FindingHistory.Impact == nil { + if e.ComplexityRoot.FindingHistory.Impact == nil { break } - return e.complexity.FindingHistory.Impact(childComplexity), true + return e.ComplexityRoot.FindingHistory.Impact(childComplexity), true case "FindingHistory.internalNotes": - if e.complexity.FindingHistory.InternalNotes == nil { + if e.ComplexityRoot.FindingHistory.InternalNotes == nil { break } - return e.complexity.FindingHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.FindingHistory.InternalNotes(childComplexity), true case "FindingHistory.metadata": - if e.complexity.FindingHistory.Metadata == nil { + if e.ComplexityRoot.FindingHistory.Metadata == nil { break } - return e.complexity.FindingHistory.Metadata(childComplexity), true + return e.ComplexityRoot.FindingHistory.Metadata(childComplexity), true case "FindingHistory.numericSeverity": - if e.complexity.FindingHistory.NumericSeverity == nil { + if e.ComplexityRoot.FindingHistory.NumericSeverity == nil { break } - return e.complexity.FindingHistory.NumericSeverity(childComplexity), true + return e.ComplexityRoot.FindingHistory.NumericSeverity(childComplexity), true case "FindingHistory.open": - if e.complexity.FindingHistory.Open == nil { + if e.ComplexityRoot.FindingHistory.Open == nil { break } - return e.complexity.FindingHistory.Open(childComplexity), true + return e.ComplexityRoot.FindingHistory.Open(childComplexity), true case "FindingHistory.operation": - if e.complexity.FindingHistory.Operation == nil { + if e.ComplexityRoot.FindingHistory.Operation == nil { break } - return e.complexity.FindingHistory.Operation(childComplexity), true + return e.ComplexityRoot.FindingHistory.Operation(childComplexity), true case "FindingHistory.ownerID": - if e.complexity.FindingHistory.OwnerID == nil { + if e.ComplexityRoot.FindingHistory.OwnerID == nil { break } - return e.complexity.FindingHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.FindingHistory.OwnerID(childComplexity), true case "FindingHistory.priority": - if e.complexity.FindingHistory.Priority == nil { + if e.ComplexityRoot.FindingHistory.Priority == nil { break } - return e.complexity.FindingHistory.Priority(childComplexity), true + return e.ComplexityRoot.FindingHistory.Priority(childComplexity), true case "FindingHistory.production": - if e.complexity.FindingHistory.Production == nil { + if e.ComplexityRoot.FindingHistory.Production == nil { break } - return e.complexity.FindingHistory.Production(childComplexity), true + return e.ComplexityRoot.FindingHistory.Production(childComplexity), true case "FindingHistory.public": - if e.complexity.FindingHistory.Public == nil { + if e.ComplexityRoot.FindingHistory.Public == nil { break } - return e.complexity.FindingHistory.Public(childComplexity), true + return e.ComplexityRoot.FindingHistory.Public(childComplexity), true case "FindingHistory.rawPayload": - if e.complexity.FindingHistory.RawPayload == nil { + if e.ComplexityRoot.FindingHistory.RawPayload == nil { break } - return e.complexity.FindingHistory.RawPayload(childComplexity), true + return e.ComplexityRoot.FindingHistory.RawPayload(childComplexity), true case "FindingHistory.recommendation": - if e.complexity.FindingHistory.Recommendation == nil { + if e.ComplexityRoot.FindingHistory.Recommendation == nil { break } - return e.complexity.FindingHistory.Recommendation(childComplexity), true + return e.ComplexityRoot.FindingHistory.Recommendation(childComplexity), true case "FindingHistory.recommendedActions": - if e.complexity.FindingHistory.RecommendedActions == nil { + if e.ComplexityRoot.FindingHistory.RecommendedActions == nil { break } - return e.complexity.FindingHistory.RecommendedActions(childComplexity), true + return e.ComplexityRoot.FindingHistory.RecommendedActions(childComplexity), true case "FindingHistory.ref": - if e.complexity.FindingHistory.Ref == nil { + if e.ComplexityRoot.FindingHistory.Ref == nil { break } - return e.complexity.FindingHistory.Ref(childComplexity), true + return e.ComplexityRoot.FindingHistory.Ref(childComplexity), true case "FindingHistory.references": - if e.complexity.FindingHistory.References == nil { + if e.ComplexityRoot.FindingHistory.References == nil { break } - return e.complexity.FindingHistory.References(childComplexity), true + return e.ComplexityRoot.FindingHistory.References(childComplexity), true case "FindingHistory.remediationSLA": - if e.complexity.FindingHistory.RemediationSLA == nil { + if e.ComplexityRoot.FindingHistory.RemediationSLA == nil { break } - return e.complexity.FindingHistory.RemediationSLA(childComplexity), true + return e.ComplexityRoot.FindingHistory.RemediationSLA(childComplexity), true case "FindingHistory.reportedAt": - if e.complexity.FindingHistory.ReportedAt == nil { + if e.ComplexityRoot.FindingHistory.ReportedAt == nil { break } - return e.complexity.FindingHistory.ReportedAt(childComplexity), true + return e.ComplexityRoot.FindingHistory.ReportedAt(childComplexity), true case "FindingHistory.resourceName": - if e.complexity.FindingHistory.ResourceName == nil { + if e.ComplexityRoot.FindingHistory.ResourceName == nil { break } - return e.complexity.FindingHistory.ResourceName(childComplexity), true + return e.ComplexityRoot.FindingHistory.ResourceName(childComplexity), true case "FindingHistory.scopeID": - if e.complexity.FindingHistory.ScopeID == nil { + if e.ComplexityRoot.FindingHistory.ScopeID == nil { break } - return e.complexity.FindingHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.FindingHistory.ScopeID(childComplexity), true case "FindingHistory.scopeName": - if e.complexity.FindingHistory.ScopeName == nil { + if e.ComplexityRoot.FindingHistory.ScopeName == nil { break } - return e.complexity.FindingHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.FindingHistory.ScopeName(childComplexity), true case "FindingHistory.score": - if e.complexity.FindingHistory.Score == nil { + if e.ComplexityRoot.FindingHistory.Score == nil { break } - return e.complexity.FindingHistory.Score(childComplexity), true + return e.ComplexityRoot.FindingHistory.Score(childComplexity), true case "FindingHistory.severity": - if e.complexity.FindingHistory.Severity == nil { + if e.ComplexityRoot.FindingHistory.Severity == nil { break } - return e.complexity.FindingHistory.Severity(childComplexity), true + return e.ComplexityRoot.FindingHistory.Severity(childComplexity), true case "FindingHistory.source": - if e.complexity.FindingHistory.Source == nil { + if e.ComplexityRoot.FindingHistory.Source == nil { break } - return e.complexity.FindingHistory.Source(childComplexity), true + return e.ComplexityRoot.FindingHistory.Source(childComplexity), true case "FindingHistory.sourceUpdatedAt": - if e.complexity.FindingHistory.SourceUpdatedAt == nil { + if e.ComplexityRoot.FindingHistory.SourceUpdatedAt == nil { break } - return e.complexity.FindingHistory.SourceUpdatedAt(childComplexity), true + return e.ComplexityRoot.FindingHistory.SourceUpdatedAt(childComplexity), true case "FindingHistory.state": - if e.complexity.FindingHistory.State == nil { + if e.ComplexityRoot.FindingHistory.State == nil { break } - return e.complexity.FindingHistory.State(childComplexity), true + return e.ComplexityRoot.FindingHistory.State(childComplexity), true case "FindingHistory.status": - if e.complexity.FindingHistory.Status == nil { + if e.ComplexityRoot.FindingHistory.Status == nil { break } - return e.complexity.FindingHistory.Status(childComplexity), true + return e.ComplexityRoot.FindingHistory.Status(childComplexity), true case "FindingHistory.stepsToReproduce": - if e.complexity.FindingHistory.StepsToReproduce == nil { + if e.ComplexityRoot.FindingHistory.StepsToReproduce == nil { break } - return e.complexity.FindingHistory.StepsToReproduce(childComplexity), true + return e.ComplexityRoot.FindingHistory.StepsToReproduce(childComplexity), true case "FindingHistory.systemInternalID": - if e.complexity.FindingHistory.SystemInternalID == nil { + if e.ComplexityRoot.FindingHistory.SystemInternalID == nil { break } - return e.complexity.FindingHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.FindingHistory.SystemInternalID(childComplexity), true case "FindingHistory.systemOwned": - if e.complexity.FindingHistory.SystemOwned == nil { + if e.ComplexityRoot.FindingHistory.SystemOwned == nil { break } - return e.complexity.FindingHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.FindingHistory.SystemOwned(childComplexity), true case "FindingHistory.tags": - if e.complexity.FindingHistory.Tags == nil { + if e.ComplexityRoot.FindingHistory.Tags == nil { break } - return e.complexity.FindingHistory.Tags(childComplexity), true + return e.ComplexityRoot.FindingHistory.Tags(childComplexity), true case "FindingHistory.targetDetails": - if e.complexity.FindingHistory.TargetDetails == nil { + if e.ComplexityRoot.FindingHistory.TargetDetails == nil { break } - return e.complexity.FindingHistory.TargetDetails(childComplexity), true + return e.ComplexityRoot.FindingHistory.TargetDetails(childComplexity), true case "FindingHistory.targets": - if e.complexity.FindingHistory.Targets == nil { + if e.ComplexityRoot.FindingHistory.Targets == nil { break } - return e.complexity.FindingHistory.Targets(childComplexity), true + return e.ComplexityRoot.FindingHistory.Targets(childComplexity), true case "FindingHistory.updatedAt": - if e.complexity.FindingHistory.UpdatedAt == nil { + if e.ComplexityRoot.FindingHistory.UpdatedAt == nil { break } - return e.complexity.FindingHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.FindingHistory.UpdatedAt(childComplexity), true case "FindingHistory.updatedBy": - if e.complexity.FindingHistory.UpdatedBy == nil { + if e.ComplexityRoot.FindingHistory.UpdatedBy == nil { break } - return e.complexity.FindingHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.FindingHistory.UpdatedBy(childComplexity), true case "FindingHistory.validated": - if e.complexity.FindingHistory.Validated == nil { + if e.ComplexityRoot.FindingHistory.Validated == nil { break } - return e.complexity.FindingHistory.Validated(childComplexity), true + return e.ComplexityRoot.FindingHistory.Validated(childComplexity), true case "FindingHistory.vector": - if e.complexity.FindingHistory.Vector == nil { + if e.ComplexityRoot.FindingHistory.Vector == nil { break } - return e.complexity.FindingHistory.Vector(childComplexity), true + return e.ComplexityRoot.FindingHistory.Vector(childComplexity), true case "FindingHistoryConnection.edges": - if e.complexity.FindingHistoryConnection.Edges == nil { + if e.ComplexityRoot.FindingHistoryConnection.Edges == nil { break } - return e.complexity.FindingHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.FindingHistoryConnection.Edges(childComplexity), true case "FindingHistoryConnection.pageInfo": - if e.complexity.FindingHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.FindingHistoryConnection.PageInfo == nil { break } - return e.complexity.FindingHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.FindingHistoryConnection.PageInfo(childComplexity), true case "FindingHistoryConnection.totalCount": - if e.complexity.FindingHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.FindingHistoryConnection.TotalCount == nil { break } - return e.complexity.FindingHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.FindingHistoryConnection.TotalCount(childComplexity), true case "FindingHistoryEdge.cursor": - if e.complexity.FindingHistoryEdge.Cursor == nil { + if e.ComplexityRoot.FindingHistoryEdge.Cursor == nil { break } - return e.complexity.FindingHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.FindingHistoryEdge.Cursor(childComplexity), true case "FindingHistoryEdge.node": - if e.complexity.FindingHistoryEdge.Node == nil { + if e.ComplexityRoot.FindingHistoryEdge.Node == nil { break } - return e.complexity.FindingHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.FindingHistoryEdge.Node(childComplexity), true case "GroupHistory.createdAt": - if e.complexity.GroupHistory.CreatedAt == nil { + if e.ComplexityRoot.GroupHistory.CreatedAt == nil { break } - return e.complexity.GroupHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.GroupHistory.CreatedAt(childComplexity), true case "GroupHistory.createdBy": - if e.complexity.GroupHistory.CreatedBy == nil { + if e.ComplexityRoot.GroupHistory.CreatedBy == nil { break } - return e.complexity.GroupHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.GroupHistory.CreatedBy(childComplexity), true case "GroupHistory.description": - if e.complexity.GroupHistory.Description == nil { + if e.ComplexityRoot.GroupHistory.Description == nil { break } - return e.complexity.GroupHistory.Description(childComplexity), true + return e.ComplexityRoot.GroupHistory.Description(childComplexity), true case "GroupHistory.displayID": - if e.complexity.GroupHistory.DisplayID == nil { + if e.ComplexityRoot.GroupHistory.DisplayID == nil { break } - return e.complexity.GroupHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.GroupHistory.DisplayID(childComplexity), true case "GroupHistory.displayName": - if e.complexity.GroupHistory.DisplayName == nil { + if e.ComplexityRoot.GroupHistory.DisplayName == nil { break } - return e.complexity.GroupHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.GroupHistory.DisplayName(childComplexity), true case "GroupHistory.gravatarLogoURL": - if e.complexity.GroupHistory.GravatarLogoURL == nil { + if e.ComplexityRoot.GroupHistory.GravatarLogoURL == nil { break } - return e.complexity.GroupHistory.GravatarLogoURL(childComplexity), true + return e.ComplexityRoot.GroupHistory.GravatarLogoURL(childComplexity), true case "GroupHistory.historyTime": - if e.complexity.GroupHistory.HistoryTime == nil { + if e.ComplexityRoot.GroupHistory.HistoryTime == nil { break } - return e.complexity.GroupHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.GroupHistory.HistoryTime(childComplexity), true case "GroupHistory.id": - if e.complexity.GroupHistory.ID == nil { + if e.ComplexityRoot.GroupHistory.ID == nil { break } - return e.complexity.GroupHistory.ID(childComplexity), true + return e.ComplexityRoot.GroupHistory.ID(childComplexity), true case "GroupHistory.isManaged": - if e.complexity.GroupHistory.IsManaged == nil { + if e.ComplexityRoot.GroupHistory.IsManaged == nil { break } - return e.complexity.GroupHistory.IsManaged(childComplexity), true + return e.ComplexityRoot.GroupHistory.IsManaged(childComplexity), true case "GroupHistory.logoURL": - if e.complexity.GroupHistory.LogoURL == nil { + if e.ComplexityRoot.GroupHistory.LogoURL == nil { break } - return e.complexity.GroupHistory.LogoURL(childComplexity), true + return e.ComplexityRoot.GroupHistory.LogoURL(childComplexity), true case "GroupHistory.name": - if e.complexity.GroupHistory.Name == nil { + if e.ComplexityRoot.GroupHistory.Name == nil { break } - return e.complexity.GroupHistory.Name(childComplexity), true + return e.ComplexityRoot.GroupHistory.Name(childComplexity), true case "GroupHistory.operation": - if e.complexity.GroupHistory.Operation == nil { + if e.ComplexityRoot.GroupHistory.Operation == nil { break } - return e.complexity.GroupHistory.Operation(childComplexity), true + return e.ComplexityRoot.GroupHistory.Operation(childComplexity), true case "GroupHistory.ownerID": - if e.complexity.GroupHistory.OwnerID == nil { + if e.ComplexityRoot.GroupHistory.OwnerID == nil { break } - return e.complexity.GroupHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.GroupHistory.OwnerID(childComplexity), true case "GroupHistory.ref": - if e.complexity.GroupHistory.Ref == nil { + if e.ComplexityRoot.GroupHistory.Ref == nil { break } - return e.complexity.GroupHistory.Ref(childComplexity), true + return e.ComplexityRoot.GroupHistory.Ref(childComplexity), true case "GroupHistory.scimActive": - if e.complexity.GroupHistory.ScimActive == nil { + if e.ComplexityRoot.GroupHistory.ScimActive == nil { break } - return e.complexity.GroupHistory.ScimActive(childComplexity), true + return e.ComplexityRoot.GroupHistory.ScimActive(childComplexity), true case "GroupHistory.scimDisplayName": - if e.complexity.GroupHistory.ScimDisplayName == nil { + if e.ComplexityRoot.GroupHistory.ScimDisplayName == nil { break } - return e.complexity.GroupHistory.ScimDisplayName(childComplexity), true + return e.ComplexityRoot.GroupHistory.ScimDisplayName(childComplexity), true case "GroupHistory.scimExternalID": - if e.complexity.GroupHistory.ScimExternalID == nil { + if e.ComplexityRoot.GroupHistory.ScimExternalID == nil { break } - return e.complexity.GroupHistory.ScimExternalID(childComplexity), true + return e.ComplexityRoot.GroupHistory.ScimExternalID(childComplexity), true case "GroupHistory.scimGroupMailing": - if e.complexity.GroupHistory.ScimGroupMailing == nil { + if e.ComplexityRoot.GroupHistory.ScimGroupMailing == nil { break } - return e.complexity.GroupHistory.ScimGroupMailing(childComplexity), true + return e.ComplexityRoot.GroupHistory.ScimGroupMailing(childComplexity), true case "GroupHistory.tags": - if e.complexity.GroupHistory.Tags == nil { + if e.ComplexityRoot.GroupHistory.Tags == nil { break } - return e.complexity.GroupHistory.Tags(childComplexity), true + return e.ComplexityRoot.GroupHistory.Tags(childComplexity), true case "GroupHistory.updatedAt": - if e.complexity.GroupHistory.UpdatedAt == nil { + if e.ComplexityRoot.GroupHistory.UpdatedAt == nil { break } - return e.complexity.GroupHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.GroupHistory.UpdatedAt(childComplexity), true case "GroupHistory.updatedBy": - if e.complexity.GroupHistory.UpdatedBy == nil { + if e.ComplexityRoot.GroupHistory.UpdatedBy == nil { break } - return e.complexity.GroupHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.GroupHistory.UpdatedBy(childComplexity), true case "GroupHistoryConnection.edges": - if e.complexity.GroupHistoryConnection.Edges == nil { + if e.ComplexityRoot.GroupHistoryConnection.Edges == nil { break } - return e.complexity.GroupHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.GroupHistoryConnection.Edges(childComplexity), true case "GroupHistoryConnection.pageInfo": - if e.complexity.GroupHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.GroupHistoryConnection.PageInfo == nil { break } - return e.complexity.GroupHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.GroupHistoryConnection.PageInfo(childComplexity), true case "GroupHistoryConnection.totalCount": - if e.complexity.GroupHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.GroupHistoryConnection.TotalCount == nil { break } - return e.complexity.GroupHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.GroupHistoryConnection.TotalCount(childComplexity), true case "GroupHistoryEdge.cursor": - if e.complexity.GroupHistoryEdge.Cursor == nil { + if e.ComplexityRoot.GroupHistoryEdge.Cursor == nil { break } - return e.complexity.GroupHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.GroupHistoryEdge.Cursor(childComplexity), true case "GroupHistoryEdge.node": - if e.complexity.GroupHistoryEdge.Node == nil { + if e.ComplexityRoot.GroupHistoryEdge.Node == nil { break } - return e.complexity.GroupHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.GroupHistoryEdge.Node(childComplexity), true case "GroupMembershipHistory.createdAt": - if e.complexity.GroupMembershipHistory.CreatedAt == nil { + if e.ComplexityRoot.GroupMembershipHistory.CreatedAt == nil { break } - return e.complexity.GroupMembershipHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.CreatedAt(childComplexity), true case "GroupMembershipHistory.createdBy": - if e.complexity.GroupMembershipHistory.CreatedBy == nil { + if e.ComplexityRoot.GroupMembershipHistory.CreatedBy == nil { break } - return e.complexity.GroupMembershipHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.CreatedBy(childComplexity), true case "GroupMembershipHistory.groupID": - if e.complexity.GroupMembershipHistory.GroupID == nil { + if e.ComplexityRoot.GroupMembershipHistory.GroupID == nil { break } - return e.complexity.GroupMembershipHistory.GroupID(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.GroupID(childComplexity), true case "GroupMembershipHistory.historyTime": - if e.complexity.GroupMembershipHistory.HistoryTime == nil { + if e.ComplexityRoot.GroupMembershipHistory.HistoryTime == nil { break } - return e.complexity.GroupMembershipHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.HistoryTime(childComplexity), true case "GroupMembershipHistory.id": - if e.complexity.GroupMembershipHistory.ID == nil { + if e.ComplexityRoot.GroupMembershipHistory.ID == nil { break } - return e.complexity.GroupMembershipHistory.ID(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.ID(childComplexity), true case "GroupMembershipHistory.operation": - if e.complexity.GroupMembershipHistory.Operation == nil { + if e.ComplexityRoot.GroupMembershipHistory.Operation == nil { break } - return e.complexity.GroupMembershipHistory.Operation(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.Operation(childComplexity), true case "GroupMembershipHistory.ref": - if e.complexity.GroupMembershipHistory.Ref == nil { + if e.ComplexityRoot.GroupMembershipHistory.Ref == nil { break } - return e.complexity.GroupMembershipHistory.Ref(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.Ref(childComplexity), true case "GroupMembershipHistory.role": - if e.complexity.GroupMembershipHistory.Role == nil { + if e.ComplexityRoot.GroupMembershipHistory.Role == nil { break } - return e.complexity.GroupMembershipHistory.Role(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.Role(childComplexity), true case "GroupMembershipHistory.updatedAt": - if e.complexity.GroupMembershipHistory.UpdatedAt == nil { + if e.ComplexityRoot.GroupMembershipHistory.UpdatedAt == nil { break } - return e.complexity.GroupMembershipHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.UpdatedAt(childComplexity), true case "GroupMembershipHistory.updatedBy": - if e.complexity.GroupMembershipHistory.UpdatedBy == nil { + if e.ComplexityRoot.GroupMembershipHistory.UpdatedBy == nil { break } - return e.complexity.GroupMembershipHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.UpdatedBy(childComplexity), true case "GroupMembershipHistory.userID": - if e.complexity.GroupMembershipHistory.UserID == nil { + if e.ComplexityRoot.GroupMembershipHistory.UserID == nil { break } - return e.complexity.GroupMembershipHistory.UserID(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistory.UserID(childComplexity), true case "GroupMembershipHistoryConnection.edges": - if e.complexity.GroupMembershipHistoryConnection.Edges == nil { + if e.ComplexityRoot.GroupMembershipHistoryConnection.Edges == nil { break } - return e.complexity.GroupMembershipHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistoryConnection.Edges(childComplexity), true case "GroupMembershipHistoryConnection.pageInfo": - if e.complexity.GroupMembershipHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.GroupMembershipHistoryConnection.PageInfo == nil { break } - return e.complexity.GroupMembershipHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistoryConnection.PageInfo(childComplexity), true case "GroupMembershipHistoryConnection.totalCount": - if e.complexity.GroupMembershipHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.GroupMembershipHistoryConnection.TotalCount == nil { break } - return e.complexity.GroupMembershipHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistoryConnection.TotalCount(childComplexity), true case "GroupMembershipHistoryEdge.cursor": - if e.complexity.GroupMembershipHistoryEdge.Cursor == nil { + if e.ComplexityRoot.GroupMembershipHistoryEdge.Cursor == nil { break } - return e.complexity.GroupMembershipHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistoryEdge.Cursor(childComplexity), true case "GroupMembershipHistoryEdge.node": - if e.complexity.GroupMembershipHistoryEdge.Node == nil { + if e.ComplexityRoot.GroupMembershipHistoryEdge.Node == nil { break } - return e.complexity.GroupMembershipHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.GroupMembershipHistoryEdge.Node(childComplexity), true case "GroupSettingHistory.createdAt": - if e.complexity.GroupSettingHistory.CreatedAt == nil { + if e.ComplexityRoot.GroupSettingHistory.CreatedAt == nil { break } - return e.complexity.GroupSettingHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.CreatedAt(childComplexity), true case "GroupSettingHistory.createdBy": - if e.complexity.GroupSettingHistory.CreatedBy == nil { + if e.ComplexityRoot.GroupSettingHistory.CreatedBy == nil { break } - return e.complexity.GroupSettingHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.CreatedBy(childComplexity), true case "GroupSettingHistory.groupID": - if e.complexity.GroupSettingHistory.GroupID == nil { + if e.ComplexityRoot.GroupSettingHistory.GroupID == nil { break } - return e.complexity.GroupSettingHistory.GroupID(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.GroupID(childComplexity), true case "GroupSettingHistory.historyTime": - if e.complexity.GroupSettingHistory.HistoryTime == nil { + if e.ComplexityRoot.GroupSettingHistory.HistoryTime == nil { break } - return e.complexity.GroupSettingHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.HistoryTime(childComplexity), true case "GroupSettingHistory.id": - if e.complexity.GroupSettingHistory.ID == nil { + if e.ComplexityRoot.GroupSettingHistory.ID == nil { break } - return e.complexity.GroupSettingHistory.ID(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.ID(childComplexity), true case "GroupSettingHistory.joinPolicy": - if e.complexity.GroupSettingHistory.JoinPolicy == nil { + if e.ComplexityRoot.GroupSettingHistory.JoinPolicy == nil { break } - return e.complexity.GroupSettingHistory.JoinPolicy(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.JoinPolicy(childComplexity), true case "GroupSettingHistory.operation": - if e.complexity.GroupSettingHistory.Operation == nil { + if e.ComplexityRoot.GroupSettingHistory.Operation == nil { break } - return e.complexity.GroupSettingHistory.Operation(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.Operation(childComplexity), true case "GroupSettingHistory.ref": - if e.complexity.GroupSettingHistory.Ref == nil { + if e.ComplexityRoot.GroupSettingHistory.Ref == nil { break } - return e.complexity.GroupSettingHistory.Ref(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.Ref(childComplexity), true case "GroupSettingHistory.syncToGithub": - if e.complexity.GroupSettingHistory.SyncToGithub == nil { + if e.ComplexityRoot.GroupSettingHistory.SyncToGithub == nil { break } - return e.complexity.GroupSettingHistory.SyncToGithub(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.SyncToGithub(childComplexity), true case "GroupSettingHistory.syncToSlack": - if e.complexity.GroupSettingHistory.SyncToSlack == nil { + if e.ComplexityRoot.GroupSettingHistory.SyncToSlack == nil { break } - return e.complexity.GroupSettingHistory.SyncToSlack(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.SyncToSlack(childComplexity), true case "GroupSettingHistory.updatedAt": - if e.complexity.GroupSettingHistory.UpdatedAt == nil { + if e.ComplexityRoot.GroupSettingHistory.UpdatedAt == nil { break } - return e.complexity.GroupSettingHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.UpdatedAt(childComplexity), true case "GroupSettingHistory.updatedBy": - if e.complexity.GroupSettingHistory.UpdatedBy == nil { + if e.ComplexityRoot.GroupSettingHistory.UpdatedBy == nil { break } - return e.complexity.GroupSettingHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.UpdatedBy(childComplexity), true case "GroupSettingHistory.visibility": - if e.complexity.GroupSettingHistory.Visibility == nil { + if e.ComplexityRoot.GroupSettingHistory.Visibility == nil { break } - return e.complexity.GroupSettingHistory.Visibility(childComplexity), true + return e.ComplexityRoot.GroupSettingHistory.Visibility(childComplexity), true case "GroupSettingHistoryConnection.edges": - if e.complexity.GroupSettingHistoryConnection.Edges == nil { + if e.ComplexityRoot.GroupSettingHistoryConnection.Edges == nil { break } - return e.complexity.GroupSettingHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.GroupSettingHistoryConnection.Edges(childComplexity), true case "GroupSettingHistoryConnection.pageInfo": - if e.complexity.GroupSettingHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.GroupSettingHistoryConnection.PageInfo == nil { break } - return e.complexity.GroupSettingHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.GroupSettingHistoryConnection.PageInfo(childComplexity), true case "GroupSettingHistoryConnection.totalCount": - if e.complexity.GroupSettingHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.GroupSettingHistoryConnection.TotalCount == nil { break } - return e.complexity.GroupSettingHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.GroupSettingHistoryConnection.TotalCount(childComplexity), true case "GroupSettingHistoryEdge.cursor": - if e.complexity.GroupSettingHistoryEdge.Cursor == nil { + if e.ComplexityRoot.GroupSettingHistoryEdge.Cursor == nil { break } - return e.complexity.GroupSettingHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.GroupSettingHistoryEdge.Cursor(childComplexity), true case "GroupSettingHistoryEdge.node": - if e.complexity.GroupSettingHistoryEdge.Node == nil { + if e.ComplexityRoot.GroupSettingHistoryEdge.Node == nil { break } - return e.complexity.GroupSettingHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.GroupSettingHistoryEdge.Node(childComplexity), true case "HushHistory.createdAt": - if e.complexity.HushHistory.CreatedAt == nil { + if e.ComplexityRoot.HushHistory.CreatedAt == nil { break } - return e.complexity.HushHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.HushHistory.CreatedAt(childComplexity), true case "HushHistory.createdBy": - if e.complexity.HushHistory.CreatedBy == nil { + if e.ComplexityRoot.HushHistory.CreatedBy == nil { break } - return e.complexity.HushHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.HushHistory.CreatedBy(childComplexity), true case "HushHistory.credentialSet": - if e.complexity.HushHistory.CredentialSet == nil { + if e.ComplexityRoot.HushHistory.CredentialSet == nil { break } - return e.complexity.HushHistory.CredentialSet(childComplexity), true + return e.ComplexityRoot.HushHistory.CredentialSet(childComplexity), true case "HushHistory.description": - if e.complexity.HushHistory.Description == nil { + if e.ComplexityRoot.HushHistory.Description == nil { break } - return e.complexity.HushHistory.Description(childComplexity), true + return e.ComplexityRoot.HushHistory.Description(childComplexity), true case "HushHistory.expiresAt": - if e.complexity.HushHistory.ExpiresAt == nil { + if e.ComplexityRoot.HushHistory.ExpiresAt == nil { break } - return e.complexity.HushHistory.ExpiresAt(childComplexity), true + return e.ComplexityRoot.HushHistory.ExpiresAt(childComplexity), true case "HushHistory.historyTime": - if e.complexity.HushHistory.HistoryTime == nil { + if e.ComplexityRoot.HushHistory.HistoryTime == nil { break } - return e.complexity.HushHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.HushHistory.HistoryTime(childComplexity), true case "HushHistory.id": - if e.complexity.HushHistory.ID == nil { + if e.ComplexityRoot.HushHistory.ID == nil { break } - return e.complexity.HushHistory.ID(childComplexity), true + return e.ComplexityRoot.HushHistory.ID(childComplexity), true case "HushHistory.internalNotes": - if e.complexity.HushHistory.InternalNotes == nil { + if e.ComplexityRoot.HushHistory.InternalNotes == nil { break } - return e.complexity.HushHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.HushHistory.InternalNotes(childComplexity), true case "HushHistory.kind": - if e.complexity.HushHistory.Kind == nil { + if e.ComplexityRoot.HushHistory.Kind == nil { break } - return e.complexity.HushHistory.Kind(childComplexity), true + return e.ComplexityRoot.HushHistory.Kind(childComplexity), true case "HushHistory.lastUsedAt": - if e.complexity.HushHistory.LastUsedAt == nil { + if e.ComplexityRoot.HushHistory.LastUsedAt == nil { break } - return e.complexity.HushHistory.LastUsedAt(childComplexity), true + return e.ComplexityRoot.HushHistory.LastUsedAt(childComplexity), true case "HushHistory.metadata": - if e.complexity.HushHistory.Metadata == nil { + if e.ComplexityRoot.HushHistory.Metadata == nil { break } - return e.complexity.HushHistory.Metadata(childComplexity), true + return e.ComplexityRoot.HushHistory.Metadata(childComplexity), true case "HushHistory.name": - if e.complexity.HushHistory.Name == nil { + if e.ComplexityRoot.HushHistory.Name == nil { break } - return e.complexity.HushHistory.Name(childComplexity), true + return e.ComplexityRoot.HushHistory.Name(childComplexity), true case "HushHistory.operation": - if e.complexity.HushHistory.Operation == nil { + if e.ComplexityRoot.HushHistory.Operation == nil { break } - return e.complexity.HushHistory.Operation(childComplexity), true + return e.ComplexityRoot.HushHistory.Operation(childComplexity), true case "HushHistory.ownerID": - if e.complexity.HushHistory.OwnerID == nil { + if e.ComplexityRoot.HushHistory.OwnerID == nil { break } - return e.complexity.HushHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.HushHistory.OwnerID(childComplexity), true case "HushHistory.ref": - if e.complexity.HushHistory.Ref == nil { + if e.ComplexityRoot.HushHistory.Ref == nil { break } - return e.complexity.HushHistory.Ref(childComplexity), true + return e.ComplexityRoot.HushHistory.Ref(childComplexity), true case "HushHistory.secretName": - if e.complexity.HushHistory.SecretName == nil { + if e.ComplexityRoot.HushHistory.SecretName == nil { break } - return e.complexity.HushHistory.SecretName(childComplexity), true + return e.ComplexityRoot.HushHistory.SecretName(childComplexity), true case "HushHistory.systemInternalID": - if e.complexity.HushHistory.SystemInternalID == nil { + if e.ComplexityRoot.HushHistory.SystemInternalID == nil { break } - return e.complexity.HushHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.HushHistory.SystemInternalID(childComplexity), true case "HushHistory.systemOwned": - if e.complexity.HushHistory.SystemOwned == nil { + if e.ComplexityRoot.HushHistory.SystemOwned == nil { break } - return e.complexity.HushHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.HushHistory.SystemOwned(childComplexity), true case "HushHistory.updatedAt": - if e.complexity.HushHistory.UpdatedAt == nil { + if e.ComplexityRoot.HushHistory.UpdatedAt == nil { break } - return e.complexity.HushHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.HushHistory.UpdatedAt(childComplexity), true case "HushHistory.updatedBy": - if e.complexity.HushHistory.UpdatedBy == nil { + if e.ComplexityRoot.HushHistory.UpdatedBy == nil { break } - return e.complexity.HushHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.HushHistory.UpdatedBy(childComplexity), true case "HushHistoryConnection.edges": - if e.complexity.HushHistoryConnection.Edges == nil { + if e.ComplexityRoot.HushHistoryConnection.Edges == nil { break } - return e.complexity.HushHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.HushHistoryConnection.Edges(childComplexity), true case "HushHistoryConnection.pageInfo": - if e.complexity.HushHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.HushHistoryConnection.PageInfo == nil { break } - return e.complexity.HushHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.HushHistoryConnection.PageInfo(childComplexity), true case "HushHistoryConnection.totalCount": - if e.complexity.HushHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.HushHistoryConnection.TotalCount == nil { break } - return e.complexity.HushHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.HushHistoryConnection.TotalCount(childComplexity), true case "HushHistoryEdge.cursor": - if e.complexity.HushHistoryEdge.Cursor == nil { + if e.ComplexityRoot.HushHistoryEdge.Cursor == nil { break } - return e.complexity.HushHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.HushHistoryEdge.Cursor(childComplexity), true case "HushHistoryEdge.node": - if e.complexity.HushHistoryEdge.Node == nil { + if e.ComplexityRoot.HushHistoryEdge.Node == nil { break } - return e.complexity.HushHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.HushHistoryEdge.Node(childComplexity), true case "IdentityHolderHistory.alternateEmail": - if e.complexity.IdentityHolderHistory.AlternateEmail == nil { + if e.ComplexityRoot.IdentityHolderHistory.AlternateEmail == nil { break } - return e.complexity.IdentityHolderHistory.AlternateEmail(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.AlternateEmail(childComplexity), true case "IdentityHolderHistory.createdAt": - if e.complexity.IdentityHolderHistory.CreatedAt == nil { + if e.ComplexityRoot.IdentityHolderHistory.CreatedAt == nil { break } - return e.complexity.IdentityHolderHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.CreatedAt(childComplexity), true case "IdentityHolderHistory.createdBy": - if e.complexity.IdentityHolderHistory.CreatedBy == nil { + if e.ComplexityRoot.IdentityHolderHistory.CreatedBy == nil { break } - return e.complexity.IdentityHolderHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.CreatedBy(childComplexity), true case "IdentityHolderHistory.department": - if e.complexity.IdentityHolderHistory.Department == nil { + if e.ComplexityRoot.IdentityHolderHistory.Department == nil { break } - return e.complexity.IdentityHolderHistory.Department(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Department(childComplexity), true case "IdentityHolderHistory.displayID": - if e.complexity.IdentityHolderHistory.DisplayID == nil { + if e.ComplexityRoot.IdentityHolderHistory.DisplayID == nil { break } - return e.complexity.IdentityHolderHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.DisplayID(childComplexity), true case "IdentityHolderHistory.email": - if e.complexity.IdentityHolderHistory.Email == nil { + if e.ComplexityRoot.IdentityHolderHistory.Email == nil { break } - return e.complexity.IdentityHolderHistory.Email(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Email(childComplexity), true case "IdentityHolderHistory.employerEntityID": - if e.complexity.IdentityHolderHistory.EmployerEntityID == nil { + if e.ComplexityRoot.IdentityHolderHistory.EmployerEntityID == nil { break } - return e.complexity.IdentityHolderHistory.EmployerEntityID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.EmployerEntityID(childComplexity), true case "IdentityHolderHistory.endDate": - if e.complexity.IdentityHolderHistory.EndDate == nil { + if e.ComplexityRoot.IdentityHolderHistory.EndDate == nil { break } - return e.complexity.IdentityHolderHistory.EndDate(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.EndDate(childComplexity), true case "IdentityHolderHistory.environmentID": - if e.complexity.IdentityHolderHistory.EnvironmentID == nil { + if e.ComplexityRoot.IdentityHolderHistory.EnvironmentID == nil { break } - return e.complexity.IdentityHolderHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.EnvironmentID(childComplexity), true case "IdentityHolderHistory.environmentName": - if e.complexity.IdentityHolderHistory.EnvironmentName == nil { + if e.ComplexityRoot.IdentityHolderHistory.EnvironmentName == nil { break } - return e.complexity.IdentityHolderHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.EnvironmentName(childComplexity), true case "IdentityHolderHistory.externalReferenceID": - if e.complexity.IdentityHolderHistory.ExternalReferenceID == nil { + if e.ComplexityRoot.IdentityHolderHistory.ExternalReferenceID == nil { break } - return e.complexity.IdentityHolderHistory.ExternalReferenceID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.ExternalReferenceID(childComplexity), true case "IdentityHolderHistory.externalUserID": - if e.complexity.IdentityHolderHistory.ExternalUserID == nil { + if e.ComplexityRoot.IdentityHolderHistory.ExternalUserID == nil { break } - return e.complexity.IdentityHolderHistory.ExternalUserID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.ExternalUserID(childComplexity), true case "IdentityHolderHistory.fullName": - if e.complexity.IdentityHolderHistory.FullName == nil { + if e.ComplexityRoot.IdentityHolderHistory.FullName == nil { break } - return e.complexity.IdentityHolderHistory.FullName(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.FullName(childComplexity), true case "IdentityHolderHistory.historyTime": - if e.complexity.IdentityHolderHistory.HistoryTime == nil { + if e.ComplexityRoot.IdentityHolderHistory.HistoryTime == nil { break } - return e.complexity.IdentityHolderHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.HistoryTime(childComplexity), true case "IdentityHolderHistory.id": - if e.complexity.IdentityHolderHistory.ID == nil { + if e.ComplexityRoot.IdentityHolderHistory.ID == nil { break } - return e.complexity.IdentityHolderHistory.ID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.ID(childComplexity), true case "IdentityHolderHistory.identityHolderType": - if e.complexity.IdentityHolderHistory.IdentityHolderType == nil { + if e.ComplexityRoot.IdentityHolderHistory.IdentityHolderType == nil { break } - return e.complexity.IdentityHolderHistory.IdentityHolderType(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.IdentityHolderType(childComplexity), true case "IdentityHolderHistory.internalOwner": - if e.complexity.IdentityHolderHistory.InternalOwner == nil { + if e.ComplexityRoot.IdentityHolderHistory.InternalOwner == nil { break } - return e.complexity.IdentityHolderHistory.InternalOwner(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.InternalOwner(childComplexity), true case "IdentityHolderHistory.internalOwnerGroupID": - if e.complexity.IdentityHolderHistory.InternalOwnerGroupID == nil { + if e.ComplexityRoot.IdentityHolderHistory.InternalOwnerGroupID == nil { break } - return e.complexity.IdentityHolderHistory.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.InternalOwnerGroupID(childComplexity), true case "IdentityHolderHistory.internalOwnerUserID": - if e.complexity.IdentityHolderHistory.InternalOwnerUserID == nil { + if e.ComplexityRoot.IdentityHolderHistory.InternalOwnerUserID == nil { break } - return e.complexity.IdentityHolderHistory.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.InternalOwnerUserID(childComplexity), true case "IdentityHolderHistory.isActive": - if e.complexity.IdentityHolderHistory.IsActive == nil { + if e.ComplexityRoot.IdentityHolderHistory.IsActive == nil { break } - return e.complexity.IdentityHolderHistory.IsActive(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.IsActive(childComplexity), true case "IdentityHolderHistory.isOpenlaneUser": - if e.complexity.IdentityHolderHistory.IsOpenlaneUser == nil { + if e.ComplexityRoot.IdentityHolderHistory.IsOpenlaneUser == nil { break } - return e.complexity.IdentityHolderHistory.IsOpenlaneUser(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.IsOpenlaneUser(childComplexity), true case "IdentityHolderHistory.location": - if e.complexity.IdentityHolderHistory.Location == nil { + if e.ComplexityRoot.IdentityHolderHistory.Location == nil { break } - return e.complexity.IdentityHolderHistory.Location(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Location(childComplexity), true case "IdentityHolderHistory.metadata": - if e.complexity.IdentityHolderHistory.Metadata == nil { + if e.ComplexityRoot.IdentityHolderHistory.Metadata == nil { break } - return e.complexity.IdentityHolderHistory.Metadata(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Metadata(childComplexity), true case "IdentityHolderHistory.operation": - if e.complexity.IdentityHolderHistory.Operation == nil { + if e.ComplexityRoot.IdentityHolderHistory.Operation == nil { break } - return e.complexity.IdentityHolderHistory.Operation(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Operation(childComplexity), true case "IdentityHolderHistory.ownerID": - if e.complexity.IdentityHolderHistory.OwnerID == nil { + if e.ComplexityRoot.IdentityHolderHistory.OwnerID == nil { break } - return e.complexity.IdentityHolderHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.OwnerID(childComplexity), true case "IdentityHolderHistory.phoneNumber": - if e.complexity.IdentityHolderHistory.PhoneNumber == nil { + if e.ComplexityRoot.IdentityHolderHistory.PhoneNumber == nil { break } - return e.complexity.IdentityHolderHistory.PhoneNumber(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.PhoneNumber(childComplexity), true case "IdentityHolderHistory.ref": - if e.complexity.IdentityHolderHistory.Ref == nil { + if e.ComplexityRoot.IdentityHolderHistory.Ref == nil { break } - return e.complexity.IdentityHolderHistory.Ref(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Ref(childComplexity), true case "IdentityHolderHistory.scopeID": - if e.complexity.IdentityHolderHistory.ScopeID == nil { + if e.ComplexityRoot.IdentityHolderHistory.ScopeID == nil { break } - return e.complexity.IdentityHolderHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.ScopeID(childComplexity), true case "IdentityHolderHistory.scopeName": - if e.complexity.IdentityHolderHistory.ScopeName == nil { + if e.ComplexityRoot.IdentityHolderHistory.ScopeName == nil { break } - return e.complexity.IdentityHolderHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.ScopeName(childComplexity), true case "IdentityHolderHistory.startDate": - if e.complexity.IdentityHolderHistory.StartDate == nil { + if e.ComplexityRoot.IdentityHolderHistory.StartDate == nil { break } - return e.complexity.IdentityHolderHistory.StartDate(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.StartDate(childComplexity), true case "IdentityHolderHistory.status": - if e.complexity.IdentityHolderHistory.Status == nil { + if e.ComplexityRoot.IdentityHolderHistory.Status == nil { break } - return e.complexity.IdentityHolderHistory.Status(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Status(childComplexity), true case "IdentityHolderHistory.tags": - if e.complexity.IdentityHolderHistory.Tags == nil { + if e.ComplexityRoot.IdentityHolderHistory.Tags == nil { break } - return e.complexity.IdentityHolderHistory.Tags(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Tags(childComplexity), true case "IdentityHolderHistory.team": - if e.complexity.IdentityHolderHistory.Team == nil { + if e.ComplexityRoot.IdentityHolderHistory.Team == nil { break } - return e.complexity.IdentityHolderHistory.Team(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Team(childComplexity), true case "IdentityHolderHistory.title": - if e.complexity.IdentityHolderHistory.Title == nil { + if e.ComplexityRoot.IdentityHolderHistory.Title == nil { break } - return e.complexity.IdentityHolderHistory.Title(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.Title(childComplexity), true case "IdentityHolderHistory.updatedAt": - if e.complexity.IdentityHolderHistory.UpdatedAt == nil { + if e.ComplexityRoot.IdentityHolderHistory.UpdatedAt == nil { break } - return e.complexity.IdentityHolderHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.UpdatedAt(childComplexity), true case "IdentityHolderHistory.updatedBy": - if e.complexity.IdentityHolderHistory.UpdatedBy == nil { + if e.ComplexityRoot.IdentityHolderHistory.UpdatedBy == nil { break } - return e.complexity.IdentityHolderHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.UpdatedBy(childComplexity), true case "IdentityHolderHistory.userID": - if e.complexity.IdentityHolderHistory.UserID == nil { + if e.ComplexityRoot.IdentityHolderHistory.UserID == nil { break } - return e.complexity.IdentityHolderHistory.UserID(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.UserID(childComplexity), true case "IdentityHolderHistory.workflowEligibleMarker": - if e.complexity.IdentityHolderHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.IdentityHolderHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.IdentityHolderHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistory.WorkflowEligibleMarker(childComplexity), true case "IdentityHolderHistoryConnection.edges": - if e.complexity.IdentityHolderHistoryConnection.Edges == nil { + if e.ComplexityRoot.IdentityHolderHistoryConnection.Edges == nil { break } - return e.complexity.IdentityHolderHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistoryConnection.Edges(childComplexity), true case "IdentityHolderHistoryConnection.pageInfo": - if e.complexity.IdentityHolderHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.IdentityHolderHistoryConnection.PageInfo == nil { break } - return e.complexity.IdentityHolderHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistoryConnection.PageInfo(childComplexity), true case "IdentityHolderHistoryConnection.totalCount": - if e.complexity.IdentityHolderHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.IdentityHolderHistoryConnection.TotalCount == nil { break } - return e.complexity.IdentityHolderHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistoryConnection.TotalCount(childComplexity), true case "IdentityHolderHistoryEdge.cursor": - if e.complexity.IdentityHolderHistoryEdge.Cursor == nil { + if e.ComplexityRoot.IdentityHolderHistoryEdge.Cursor == nil { break } - return e.complexity.IdentityHolderHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistoryEdge.Cursor(childComplexity), true case "IdentityHolderHistoryEdge.node": - if e.complexity.IdentityHolderHistoryEdge.Node == nil { + if e.ComplexityRoot.IdentityHolderHistoryEdge.Node == nil { break } - return e.complexity.IdentityHolderHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.IdentityHolderHistoryEdge.Node(childComplexity), true case "IntegrationHistory.createdAt": - if e.complexity.IntegrationHistory.CreatedAt == nil { + if e.ComplexityRoot.IntegrationHistory.CreatedAt == nil { break } - return e.complexity.IntegrationHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.CreatedAt(childComplexity), true case "IntegrationHistory.createdBy": - if e.complexity.IntegrationHistory.CreatedBy == nil { + if e.ComplexityRoot.IntegrationHistory.CreatedBy == nil { break } - return e.complexity.IntegrationHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.CreatedBy(childComplexity), true case "IntegrationHistory.description": - if e.complexity.IntegrationHistory.Description == nil { + if e.ComplexityRoot.IntegrationHistory.Description == nil { break } - return e.complexity.IntegrationHistory.Description(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.Description(childComplexity), true case "IntegrationHistory.environmentID": - if e.complexity.IntegrationHistory.EnvironmentID == nil { + if e.ComplexityRoot.IntegrationHistory.EnvironmentID == nil { break } - return e.complexity.IntegrationHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.EnvironmentID(childComplexity), true case "IntegrationHistory.environmentName": - if e.complexity.IntegrationHistory.EnvironmentName == nil { + if e.ComplexityRoot.IntegrationHistory.EnvironmentName == nil { break } - return e.complexity.IntegrationHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.EnvironmentName(childComplexity), true case "IntegrationHistory.historyTime": - if e.complexity.IntegrationHistory.HistoryTime == nil { + if e.ComplexityRoot.IntegrationHistory.HistoryTime == nil { break } - return e.complexity.IntegrationHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.HistoryTime(childComplexity), true case "IntegrationHistory.id": - if e.complexity.IntegrationHistory.ID == nil { + if e.ComplexityRoot.IntegrationHistory.ID == nil { break } - return e.complexity.IntegrationHistory.ID(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.ID(childComplexity), true case "IntegrationHistory.integrationType": - if e.complexity.IntegrationHistory.IntegrationType == nil { + if e.ComplexityRoot.IntegrationHistory.IntegrationType == nil { break } - return e.complexity.IntegrationHistory.IntegrationType(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.IntegrationType(childComplexity), true case "IntegrationHistory.internalNotes": - if e.complexity.IntegrationHistory.InternalNotes == nil { + if e.ComplexityRoot.IntegrationHistory.InternalNotes == nil { break } - return e.complexity.IntegrationHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.InternalNotes(childComplexity), true case "IntegrationHistory.kind": - if e.complexity.IntegrationHistory.Kind == nil { + if e.ComplexityRoot.IntegrationHistory.Kind == nil { break } - return e.complexity.IntegrationHistory.Kind(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.Kind(childComplexity), true case "IntegrationHistory.metadata": - if e.complexity.IntegrationHistory.Metadata == nil { + if e.ComplexityRoot.IntegrationHistory.Metadata == nil { break } - return e.complexity.IntegrationHistory.Metadata(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.Metadata(childComplexity), true case "IntegrationHistory.name": - if e.complexity.IntegrationHistory.Name == nil { + if e.ComplexityRoot.IntegrationHistory.Name == nil { break } - return e.complexity.IntegrationHistory.Name(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.Name(childComplexity), true case "IntegrationHistory.operation": - if e.complexity.IntegrationHistory.Operation == nil { + if e.ComplexityRoot.IntegrationHistory.Operation == nil { break } - return e.complexity.IntegrationHistory.Operation(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.Operation(childComplexity), true case "IntegrationHistory.ownerID": - if e.complexity.IntegrationHistory.OwnerID == nil { + if e.ComplexityRoot.IntegrationHistory.OwnerID == nil { break } - return e.complexity.IntegrationHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.OwnerID(childComplexity), true case "IntegrationHistory.platformID": - if e.complexity.IntegrationHistory.PlatformID == nil { + if e.ComplexityRoot.IntegrationHistory.PlatformID == nil { break } - return e.complexity.IntegrationHistory.PlatformID(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.PlatformID(childComplexity), true case "IntegrationHistory.ref": - if e.complexity.IntegrationHistory.Ref == nil { + if e.ComplexityRoot.IntegrationHistory.Ref == nil { break } - return e.complexity.IntegrationHistory.Ref(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.Ref(childComplexity), true case "IntegrationHistory.scopeID": - if e.complexity.IntegrationHistory.ScopeID == nil { + if e.ComplexityRoot.IntegrationHistory.ScopeID == nil { break } - return e.complexity.IntegrationHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.ScopeID(childComplexity), true case "IntegrationHistory.scopeName": - if e.complexity.IntegrationHistory.ScopeName == nil { + if e.ComplexityRoot.IntegrationHistory.ScopeName == nil { break } - return e.complexity.IntegrationHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.ScopeName(childComplexity), true case "IntegrationHistory.systemInternalID": - if e.complexity.IntegrationHistory.SystemInternalID == nil { + if e.ComplexityRoot.IntegrationHistory.SystemInternalID == nil { break } - return e.complexity.IntegrationHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.SystemInternalID(childComplexity), true case "IntegrationHistory.systemOwned": - if e.complexity.IntegrationHistory.SystemOwned == nil { + if e.ComplexityRoot.IntegrationHistory.SystemOwned == nil { break } - return e.complexity.IntegrationHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.SystemOwned(childComplexity), true case "IntegrationHistory.tags": - if e.complexity.IntegrationHistory.Tags == nil { + if e.ComplexityRoot.IntegrationHistory.Tags == nil { break } - return e.complexity.IntegrationHistory.Tags(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.Tags(childComplexity), true case "IntegrationHistory.updatedAt": - if e.complexity.IntegrationHistory.UpdatedAt == nil { + if e.ComplexityRoot.IntegrationHistory.UpdatedAt == nil { break } - return e.complexity.IntegrationHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.UpdatedAt(childComplexity), true case "IntegrationHistory.updatedBy": - if e.complexity.IntegrationHistory.UpdatedBy == nil { + if e.ComplexityRoot.IntegrationHistory.UpdatedBy == nil { break } - return e.complexity.IntegrationHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.IntegrationHistory.UpdatedBy(childComplexity), true case "IntegrationHistoryConnection.edges": - if e.complexity.IntegrationHistoryConnection.Edges == nil { + if e.ComplexityRoot.IntegrationHistoryConnection.Edges == nil { break } - return e.complexity.IntegrationHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.IntegrationHistoryConnection.Edges(childComplexity), true case "IntegrationHistoryConnection.pageInfo": - if e.complexity.IntegrationHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.IntegrationHistoryConnection.PageInfo == nil { break } - return e.complexity.IntegrationHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.IntegrationHistoryConnection.PageInfo(childComplexity), true case "IntegrationHistoryConnection.totalCount": - if e.complexity.IntegrationHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.IntegrationHistoryConnection.TotalCount == nil { break } - return e.complexity.IntegrationHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.IntegrationHistoryConnection.TotalCount(childComplexity), true case "IntegrationHistoryEdge.cursor": - if e.complexity.IntegrationHistoryEdge.Cursor == nil { + if e.ComplexityRoot.IntegrationHistoryEdge.Cursor == nil { break } - return e.complexity.IntegrationHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.IntegrationHistoryEdge.Cursor(childComplexity), true case "IntegrationHistoryEdge.node": - if e.complexity.IntegrationHistoryEdge.Node == nil { + if e.ComplexityRoot.IntegrationHistoryEdge.Node == nil { break } - return e.complexity.IntegrationHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.IntegrationHistoryEdge.Node(childComplexity), true case "InternalPolicyHistory.approvalRequired": - if e.complexity.InternalPolicyHistory.ApprovalRequired == nil { + if e.ComplexityRoot.InternalPolicyHistory.ApprovalRequired == nil { break } - return e.complexity.InternalPolicyHistory.ApprovalRequired(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ApprovalRequired(childComplexity), true case "InternalPolicyHistory.approverID": - if e.complexity.InternalPolicyHistory.ApproverID == nil { + if e.ComplexityRoot.InternalPolicyHistory.ApproverID == nil { break } - return e.complexity.InternalPolicyHistory.ApproverID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ApproverID(childComplexity), true case "InternalPolicyHistory.controlSuggestions": - if e.complexity.InternalPolicyHistory.ControlSuggestions == nil { + if e.ComplexityRoot.InternalPolicyHistory.ControlSuggestions == nil { break } - return e.complexity.InternalPolicyHistory.ControlSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ControlSuggestions(childComplexity), true case "InternalPolicyHistory.createdAt": - if e.complexity.InternalPolicyHistory.CreatedAt == nil { + if e.ComplexityRoot.InternalPolicyHistory.CreatedAt == nil { break } - return e.complexity.InternalPolicyHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.CreatedAt(childComplexity), true case "InternalPolicyHistory.createdBy": - if e.complexity.InternalPolicyHistory.CreatedBy == nil { + if e.ComplexityRoot.InternalPolicyHistory.CreatedBy == nil { break } - return e.complexity.InternalPolicyHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.CreatedBy(childComplexity), true case "InternalPolicyHistory.delegateID": - if e.complexity.InternalPolicyHistory.DelegateID == nil { + if e.ComplexityRoot.InternalPolicyHistory.DelegateID == nil { break } - return e.complexity.InternalPolicyHistory.DelegateID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.DelegateID(childComplexity), true case "InternalPolicyHistory.details": - if e.complexity.InternalPolicyHistory.Details == nil { + if e.ComplexityRoot.InternalPolicyHistory.Details == nil { break } - return e.complexity.InternalPolicyHistory.Details(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Details(childComplexity), true case "InternalPolicyHistory.detailsJSON": - if e.complexity.InternalPolicyHistory.DetailsJSON == nil { + if e.ComplexityRoot.InternalPolicyHistory.DetailsJSON == nil { break } - return e.complexity.InternalPolicyHistory.DetailsJSON(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.DetailsJSON(childComplexity), true case "InternalPolicyHistory.dismissedControlSuggestions": - if e.complexity.InternalPolicyHistory.DismissedControlSuggestions == nil { + if e.ComplexityRoot.InternalPolicyHistory.DismissedControlSuggestions == nil { break } - return e.complexity.InternalPolicyHistory.DismissedControlSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.DismissedControlSuggestions(childComplexity), true case "InternalPolicyHistory.dismissedImprovementSuggestions": - if e.complexity.InternalPolicyHistory.DismissedImprovementSuggestions == nil { + if e.ComplexityRoot.InternalPolicyHistory.DismissedImprovementSuggestions == nil { break } - return e.complexity.InternalPolicyHistory.DismissedImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.DismissedImprovementSuggestions(childComplexity), true case "InternalPolicyHistory.dismissedTagSuggestions": - if e.complexity.InternalPolicyHistory.DismissedTagSuggestions == nil { + if e.ComplexityRoot.InternalPolicyHistory.DismissedTagSuggestions == nil { break } - return e.complexity.InternalPolicyHistory.DismissedTagSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.DismissedTagSuggestions(childComplexity), true case "InternalPolicyHistory.displayID": - if e.complexity.InternalPolicyHistory.DisplayID == nil { + if e.ComplexityRoot.InternalPolicyHistory.DisplayID == nil { break } - return e.complexity.InternalPolicyHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.DisplayID(childComplexity), true case "InternalPolicyHistory.environmentID": - if e.complexity.InternalPolicyHistory.EnvironmentID == nil { + if e.ComplexityRoot.InternalPolicyHistory.EnvironmentID == nil { break } - return e.complexity.InternalPolicyHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.EnvironmentID(childComplexity), true case "InternalPolicyHistory.environmentName": - if e.complexity.InternalPolicyHistory.EnvironmentName == nil { + if e.ComplexityRoot.InternalPolicyHistory.EnvironmentName == nil { break } - return e.complexity.InternalPolicyHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.EnvironmentName(childComplexity), true case "InternalPolicyHistory.fileID": - if e.complexity.InternalPolicyHistory.FileID == nil { + if e.ComplexityRoot.InternalPolicyHistory.FileID == nil { break } - return e.complexity.InternalPolicyHistory.FileID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.FileID(childComplexity), true case "InternalPolicyHistory.historyTime": - if e.complexity.InternalPolicyHistory.HistoryTime == nil { + if e.ComplexityRoot.InternalPolicyHistory.HistoryTime == nil { break } - return e.complexity.InternalPolicyHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.HistoryTime(childComplexity), true case "InternalPolicyHistory.id": - if e.complexity.InternalPolicyHistory.ID == nil { + if e.ComplexityRoot.InternalPolicyHistory.ID == nil { break } - return e.complexity.InternalPolicyHistory.ID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ID(childComplexity), true case "InternalPolicyHistory.improvementSuggestions": - if e.complexity.InternalPolicyHistory.ImprovementSuggestions == nil { + if e.ComplexityRoot.InternalPolicyHistory.ImprovementSuggestions == nil { break } - return e.complexity.InternalPolicyHistory.ImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ImprovementSuggestions(childComplexity), true case "InternalPolicyHistory.internalNotes": - if e.complexity.InternalPolicyHistory.InternalNotes == nil { + if e.ComplexityRoot.InternalPolicyHistory.InternalNotes == nil { break } - return e.complexity.InternalPolicyHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.InternalNotes(childComplexity), true case "InternalPolicyHistory.internalPolicyKindID": - if e.complexity.InternalPolicyHistory.InternalPolicyKindID == nil { + if e.ComplexityRoot.InternalPolicyHistory.InternalPolicyKindID == nil { break } - return e.complexity.InternalPolicyHistory.InternalPolicyKindID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.InternalPolicyKindID(childComplexity), true case "InternalPolicyHistory.internalPolicyKindName": - if e.complexity.InternalPolicyHistory.InternalPolicyKindName == nil { + if e.ComplexityRoot.InternalPolicyHistory.InternalPolicyKindName == nil { break } - return e.complexity.InternalPolicyHistory.InternalPolicyKindName(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.InternalPolicyKindName(childComplexity), true case "InternalPolicyHistory.name": - if e.complexity.InternalPolicyHistory.Name == nil { + if e.ComplexityRoot.InternalPolicyHistory.Name == nil { break } - return e.complexity.InternalPolicyHistory.Name(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Name(childComplexity), true case "InternalPolicyHistory.operation": - if e.complexity.InternalPolicyHistory.Operation == nil { + if e.ComplexityRoot.InternalPolicyHistory.Operation == nil { break } - return e.complexity.InternalPolicyHistory.Operation(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Operation(childComplexity), true case "InternalPolicyHistory.ownerID": - if e.complexity.InternalPolicyHistory.OwnerID == nil { + if e.ComplexityRoot.InternalPolicyHistory.OwnerID == nil { break } - return e.complexity.InternalPolicyHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.OwnerID(childComplexity), true case "InternalPolicyHistory.ref": - if e.complexity.InternalPolicyHistory.Ref == nil { + if e.ComplexityRoot.InternalPolicyHistory.Ref == nil { break } - return e.complexity.InternalPolicyHistory.Ref(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Ref(childComplexity), true case "InternalPolicyHistory.reviewDue": - if e.complexity.InternalPolicyHistory.ReviewDue == nil { + if e.ComplexityRoot.InternalPolicyHistory.ReviewDue == nil { break } - return e.complexity.InternalPolicyHistory.ReviewDue(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ReviewDue(childComplexity), true case "InternalPolicyHistory.reviewFrequency": - if e.complexity.InternalPolicyHistory.ReviewFrequency == nil { + if e.ComplexityRoot.InternalPolicyHistory.ReviewFrequency == nil { break } - return e.complexity.InternalPolicyHistory.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ReviewFrequency(childComplexity), true case "InternalPolicyHistory.revision": - if e.complexity.InternalPolicyHistory.Revision == nil { + if e.ComplexityRoot.InternalPolicyHistory.Revision == nil { break } - return e.complexity.InternalPolicyHistory.Revision(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Revision(childComplexity), true case "InternalPolicyHistory.scopeID": - if e.complexity.InternalPolicyHistory.ScopeID == nil { + if e.ComplexityRoot.InternalPolicyHistory.ScopeID == nil { break } - return e.complexity.InternalPolicyHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ScopeID(childComplexity), true case "InternalPolicyHistory.scopeName": - if e.complexity.InternalPolicyHistory.ScopeName == nil { + if e.ComplexityRoot.InternalPolicyHistory.ScopeName == nil { break } - return e.complexity.InternalPolicyHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.ScopeName(childComplexity), true case "InternalPolicyHistory.status": - if e.complexity.InternalPolicyHistory.Status == nil { + if e.ComplexityRoot.InternalPolicyHistory.Status == nil { break } - return e.complexity.InternalPolicyHistory.Status(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Status(childComplexity), true case "InternalPolicyHistory.summary": - if e.complexity.InternalPolicyHistory.Summary == nil { + if e.ComplexityRoot.InternalPolicyHistory.Summary == nil { break } - return e.complexity.InternalPolicyHistory.Summary(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Summary(childComplexity), true case "InternalPolicyHistory.systemInternalID": - if e.complexity.InternalPolicyHistory.SystemInternalID == nil { + if e.ComplexityRoot.InternalPolicyHistory.SystemInternalID == nil { break } - return e.complexity.InternalPolicyHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.SystemInternalID(childComplexity), true case "InternalPolicyHistory.systemOwned": - if e.complexity.InternalPolicyHistory.SystemOwned == nil { + if e.ComplexityRoot.InternalPolicyHistory.SystemOwned == nil { break } - return e.complexity.InternalPolicyHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.SystemOwned(childComplexity), true case "InternalPolicyHistory.tagSuggestions": - if e.complexity.InternalPolicyHistory.TagSuggestions == nil { + if e.ComplexityRoot.InternalPolicyHistory.TagSuggestions == nil { break } - return e.complexity.InternalPolicyHistory.TagSuggestions(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.TagSuggestions(childComplexity), true case "InternalPolicyHistory.tags": - if e.complexity.InternalPolicyHistory.Tags == nil { + if e.ComplexityRoot.InternalPolicyHistory.Tags == nil { break } - return e.complexity.InternalPolicyHistory.Tags(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.Tags(childComplexity), true case "InternalPolicyHistory.url": - if e.complexity.InternalPolicyHistory.URL == nil { + if e.ComplexityRoot.InternalPolicyHistory.URL == nil { break } - return e.complexity.InternalPolicyHistory.URL(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.URL(childComplexity), true case "InternalPolicyHistory.updatedAt": - if e.complexity.InternalPolicyHistory.UpdatedAt == nil { + if e.ComplexityRoot.InternalPolicyHistory.UpdatedAt == nil { break } - return e.complexity.InternalPolicyHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.UpdatedAt(childComplexity), true case "InternalPolicyHistory.updatedBy": - if e.complexity.InternalPolicyHistory.UpdatedBy == nil { + if e.ComplexityRoot.InternalPolicyHistory.UpdatedBy == nil { break } - return e.complexity.InternalPolicyHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.UpdatedBy(childComplexity), true case "InternalPolicyHistory.workflowEligibleMarker": - if e.complexity.InternalPolicyHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.InternalPolicyHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.InternalPolicyHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistory.WorkflowEligibleMarker(childComplexity), true case "InternalPolicyHistoryConnection.edges": - if e.complexity.InternalPolicyHistoryConnection.Edges == nil { + if e.ComplexityRoot.InternalPolicyHistoryConnection.Edges == nil { break } - return e.complexity.InternalPolicyHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistoryConnection.Edges(childComplexity), true case "InternalPolicyHistoryConnection.pageInfo": - if e.complexity.InternalPolicyHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.InternalPolicyHistoryConnection.PageInfo == nil { break } - return e.complexity.InternalPolicyHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistoryConnection.PageInfo(childComplexity), true case "InternalPolicyHistoryConnection.totalCount": - if e.complexity.InternalPolicyHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.InternalPolicyHistoryConnection.TotalCount == nil { break } - return e.complexity.InternalPolicyHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistoryConnection.TotalCount(childComplexity), true case "InternalPolicyHistoryEdge.cursor": - if e.complexity.InternalPolicyHistoryEdge.Cursor == nil { + if e.ComplexityRoot.InternalPolicyHistoryEdge.Cursor == nil { break } - return e.complexity.InternalPolicyHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistoryEdge.Cursor(childComplexity), true case "InternalPolicyHistoryEdge.node": - if e.complexity.InternalPolicyHistoryEdge.Node == nil { + if e.ComplexityRoot.InternalPolicyHistoryEdge.Node == nil { break } - return e.complexity.InternalPolicyHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.InternalPolicyHistoryEdge.Node(childComplexity), true case "JobTemplateHistory.configuration": - if e.complexity.JobTemplateHistory.Configuration == nil { + if e.ComplexityRoot.JobTemplateHistory.Configuration == nil { break } - return e.complexity.JobTemplateHistory.Configuration(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Configuration(childComplexity), true case "JobTemplateHistory.createdAt": - if e.complexity.JobTemplateHistory.CreatedAt == nil { + if e.ComplexityRoot.JobTemplateHistory.CreatedAt == nil { break } - return e.complexity.JobTemplateHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.CreatedAt(childComplexity), true case "JobTemplateHistory.createdBy": - if e.complexity.JobTemplateHistory.CreatedBy == nil { + if e.ComplexityRoot.JobTemplateHistory.CreatedBy == nil { break } - return e.complexity.JobTemplateHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.CreatedBy(childComplexity), true case "JobTemplateHistory.cron": - if e.complexity.JobTemplateHistory.Cron == nil { + if e.ComplexityRoot.JobTemplateHistory.Cron == nil { break } - return e.complexity.JobTemplateHistory.Cron(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Cron(childComplexity), true case "JobTemplateHistory.description": - if e.complexity.JobTemplateHistory.Description == nil { + if e.ComplexityRoot.JobTemplateHistory.Description == nil { break } - return e.complexity.JobTemplateHistory.Description(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Description(childComplexity), true case "JobTemplateHistory.displayID": - if e.complexity.JobTemplateHistory.DisplayID == nil { + if e.ComplexityRoot.JobTemplateHistory.DisplayID == nil { break } - return e.complexity.JobTemplateHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.DisplayID(childComplexity), true case "JobTemplateHistory.downloadURL": - if e.complexity.JobTemplateHistory.DownloadURL == nil { + if e.ComplexityRoot.JobTemplateHistory.DownloadURL == nil { break } - return e.complexity.JobTemplateHistory.DownloadURL(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.DownloadURL(childComplexity), true case "JobTemplateHistory.historyTime": - if e.complexity.JobTemplateHistory.HistoryTime == nil { + if e.ComplexityRoot.JobTemplateHistory.HistoryTime == nil { break } - return e.complexity.JobTemplateHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.HistoryTime(childComplexity), true case "JobTemplateHistory.id": - if e.complexity.JobTemplateHistory.ID == nil { + if e.ComplexityRoot.JobTemplateHistory.ID == nil { break } - return e.complexity.JobTemplateHistory.ID(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.ID(childComplexity), true case "JobTemplateHistory.internalNotes": - if e.complexity.JobTemplateHistory.InternalNotes == nil { + if e.ComplexityRoot.JobTemplateHistory.InternalNotes == nil { break } - return e.complexity.JobTemplateHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.InternalNotes(childComplexity), true case "JobTemplateHistory.operation": - if e.complexity.JobTemplateHistory.Operation == nil { + if e.ComplexityRoot.JobTemplateHistory.Operation == nil { break } - return e.complexity.JobTemplateHistory.Operation(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Operation(childComplexity), true case "JobTemplateHistory.ownerID": - if e.complexity.JobTemplateHistory.OwnerID == nil { + if e.ComplexityRoot.JobTemplateHistory.OwnerID == nil { break } - return e.complexity.JobTemplateHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.OwnerID(childComplexity), true case "JobTemplateHistory.platform": - if e.complexity.JobTemplateHistory.Platform == nil { + if e.ComplexityRoot.JobTemplateHistory.Platform == nil { break } - return e.complexity.JobTemplateHistory.Platform(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Platform(childComplexity), true case "JobTemplateHistory.ref": - if e.complexity.JobTemplateHistory.Ref == nil { + if e.ComplexityRoot.JobTemplateHistory.Ref == nil { break } - return e.complexity.JobTemplateHistory.Ref(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Ref(childComplexity), true case "JobTemplateHistory.systemInternalID": - if e.complexity.JobTemplateHistory.SystemInternalID == nil { + if e.ComplexityRoot.JobTemplateHistory.SystemInternalID == nil { break } - return e.complexity.JobTemplateHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.SystemInternalID(childComplexity), true case "JobTemplateHistory.systemOwned": - if e.complexity.JobTemplateHistory.SystemOwned == nil { + if e.ComplexityRoot.JobTemplateHistory.SystemOwned == nil { break } - return e.complexity.JobTemplateHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.SystemOwned(childComplexity), true case "JobTemplateHistory.tags": - if e.complexity.JobTemplateHistory.Tags == nil { + if e.ComplexityRoot.JobTemplateHistory.Tags == nil { break } - return e.complexity.JobTemplateHistory.Tags(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Tags(childComplexity), true case "JobTemplateHistory.title": - if e.complexity.JobTemplateHistory.Title == nil { + if e.ComplexityRoot.JobTemplateHistory.Title == nil { break } - return e.complexity.JobTemplateHistory.Title(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.Title(childComplexity), true case "JobTemplateHistory.updatedAt": - if e.complexity.JobTemplateHistory.UpdatedAt == nil { + if e.ComplexityRoot.JobTemplateHistory.UpdatedAt == nil { break } - return e.complexity.JobTemplateHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.UpdatedAt(childComplexity), true case "JobTemplateHistory.updatedBy": - if e.complexity.JobTemplateHistory.UpdatedBy == nil { + if e.ComplexityRoot.JobTemplateHistory.UpdatedBy == nil { break } - return e.complexity.JobTemplateHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.JobTemplateHistory.UpdatedBy(childComplexity), true case "JobTemplateHistoryConnection.edges": - if e.complexity.JobTemplateHistoryConnection.Edges == nil { + if e.ComplexityRoot.JobTemplateHistoryConnection.Edges == nil { break } - return e.complexity.JobTemplateHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.JobTemplateHistoryConnection.Edges(childComplexity), true case "JobTemplateHistoryConnection.pageInfo": - if e.complexity.JobTemplateHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.JobTemplateHistoryConnection.PageInfo == nil { break } - return e.complexity.JobTemplateHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.JobTemplateHistoryConnection.PageInfo(childComplexity), true case "JobTemplateHistoryConnection.totalCount": - if e.complexity.JobTemplateHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.JobTemplateHistoryConnection.TotalCount == nil { break } - return e.complexity.JobTemplateHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.JobTemplateHistoryConnection.TotalCount(childComplexity), true case "JobTemplateHistoryEdge.cursor": - if e.complexity.JobTemplateHistoryEdge.Cursor == nil { + if e.ComplexityRoot.JobTemplateHistoryEdge.Cursor == nil { break } - return e.complexity.JobTemplateHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.JobTemplateHistoryEdge.Cursor(childComplexity), true case "JobTemplateHistoryEdge.node": - if e.complexity.JobTemplateHistoryEdge.Node == nil { + if e.ComplexityRoot.JobTemplateHistoryEdge.Node == nil { break } - return e.complexity.JobTemplateHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.JobTemplateHistoryEdge.Node(childComplexity), true case "MappableDomainHistory.createdAt": - if e.complexity.MappableDomainHistory.CreatedAt == nil { + if e.ComplexityRoot.MappableDomainHistory.CreatedAt == nil { break } - return e.complexity.MappableDomainHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.CreatedAt(childComplexity), true case "MappableDomainHistory.createdBy": - if e.complexity.MappableDomainHistory.CreatedBy == nil { + if e.ComplexityRoot.MappableDomainHistory.CreatedBy == nil { break } - return e.complexity.MappableDomainHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.CreatedBy(childComplexity), true case "MappableDomainHistory.historyTime": - if e.complexity.MappableDomainHistory.HistoryTime == nil { + if e.ComplexityRoot.MappableDomainHistory.HistoryTime == nil { break } - return e.complexity.MappableDomainHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.HistoryTime(childComplexity), true case "MappableDomainHistory.id": - if e.complexity.MappableDomainHistory.ID == nil { + if e.ComplexityRoot.MappableDomainHistory.ID == nil { break } - return e.complexity.MappableDomainHistory.ID(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.ID(childComplexity), true case "MappableDomainHistory.name": - if e.complexity.MappableDomainHistory.Name == nil { + if e.ComplexityRoot.MappableDomainHistory.Name == nil { break } - return e.complexity.MappableDomainHistory.Name(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.Name(childComplexity), true case "MappableDomainHistory.operation": - if e.complexity.MappableDomainHistory.Operation == nil { + if e.ComplexityRoot.MappableDomainHistory.Operation == nil { break } - return e.complexity.MappableDomainHistory.Operation(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.Operation(childComplexity), true case "MappableDomainHistory.ref": - if e.complexity.MappableDomainHistory.Ref == nil { + if e.ComplexityRoot.MappableDomainHistory.Ref == nil { break } - return e.complexity.MappableDomainHistory.Ref(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.Ref(childComplexity), true case "MappableDomainHistory.tags": - if e.complexity.MappableDomainHistory.Tags == nil { + if e.ComplexityRoot.MappableDomainHistory.Tags == nil { break } - return e.complexity.MappableDomainHistory.Tags(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.Tags(childComplexity), true case "MappableDomainHistory.updatedAt": - if e.complexity.MappableDomainHistory.UpdatedAt == nil { + if e.ComplexityRoot.MappableDomainHistory.UpdatedAt == nil { break } - return e.complexity.MappableDomainHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.UpdatedAt(childComplexity), true case "MappableDomainHistory.updatedBy": - if e.complexity.MappableDomainHistory.UpdatedBy == nil { + if e.ComplexityRoot.MappableDomainHistory.UpdatedBy == nil { break } - return e.complexity.MappableDomainHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.UpdatedBy(childComplexity), true case "MappableDomainHistory.zoneID": - if e.complexity.MappableDomainHistory.ZoneID == nil { + if e.ComplexityRoot.MappableDomainHistory.ZoneID == nil { break } - return e.complexity.MappableDomainHistory.ZoneID(childComplexity), true + return e.ComplexityRoot.MappableDomainHistory.ZoneID(childComplexity), true case "MappableDomainHistoryConnection.edges": - if e.complexity.MappableDomainHistoryConnection.Edges == nil { + if e.ComplexityRoot.MappableDomainHistoryConnection.Edges == nil { break } - return e.complexity.MappableDomainHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.MappableDomainHistoryConnection.Edges(childComplexity), true case "MappableDomainHistoryConnection.pageInfo": - if e.complexity.MappableDomainHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.MappableDomainHistoryConnection.PageInfo == nil { break } - return e.complexity.MappableDomainHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.MappableDomainHistoryConnection.PageInfo(childComplexity), true case "MappableDomainHistoryConnection.totalCount": - if e.complexity.MappableDomainHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.MappableDomainHistoryConnection.TotalCount == nil { break } - return e.complexity.MappableDomainHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.MappableDomainHistoryConnection.TotalCount(childComplexity), true case "MappableDomainHistoryEdge.cursor": - if e.complexity.MappableDomainHistoryEdge.Cursor == nil { + if e.ComplexityRoot.MappableDomainHistoryEdge.Cursor == nil { break } - return e.complexity.MappableDomainHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.MappableDomainHistoryEdge.Cursor(childComplexity), true case "MappableDomainHistoryEdge.node": - if e.complexity.MappableDomainHistoryEdge.Node == nil { + if e.ComplexityRoot.MappableDomainHistoryEdge.Node == nil { break } - return e.complexity.MappableDomainHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.MappableDomainHistoryEdge.Node(childComplexity), true case "MappedControlHistory.confidence": - if e.complexity.MappedControlHistory.Confidence == nil { + if e.ComplexityRoot.MappedControlHistory.Confidence == nil { break } - return e.complexity.MappedControlHistory.Confidence(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.Confidence(childComplexity), true case "MappedControlHistory.createdAt": - if e.complexity.MappedControlHistory.CreatedAt == nil { + if e.ComplexityRoot.MappedControlHistory.CreatedAt == nil { break } - return e.complexity.MappedControlHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.CreatedAt(childComplexity), true case "MappedControlHistory.createdBy": - if e.complexity.MappedControlHistory.CreatedBy == nil { + if e.ComplexityRoot.MappedControlHistory.CreatedBy == nil { break } - return e.complexity.MappedControlHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.CreatedBy(childComplexity), true case "MappedControlHistory.historyTime": - if e.complexity.MappedControlHistory.HistoryTime == nil { + if e.ComplexityRoot.MappedControlHistory.HistoryTime == nil { break } - return e.complexity.MappedControlHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.HistoryTime(childComplexity), true case "MappedControlHistory.id": - if e.complexity.MappedControlHistory.ID == nil { + if e.ComplexityRoot.MappedControlHistory.ID == nil { break } - return e.complexity.MappedControlHistory.ID(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.ID(childComplexity), true case "MappedControlHistory.internalNotes": - if e.complexity.MappedControlHistory.InternalNotes == nil { + if e.ComplexityRoot.MappedControlHistory.InternalNotes == nil { break } - return e.complexity.MappedControlHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.InternalNotes(childComplexity), true case "MappedControlHistory.mappingType": - if e.complexity.MappedControlHistory.MappingType == nil { + if e.ComplexityRoot.MappedControlHistory.MappingType == nil { break } - return e.complexity.MappedControlHistory.MappingType(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.MappingType(childComplexity), true case "MappedControlHistory.operation": - if e.complexity.MappedControlHistory.Operation == nil { + if e.ComplexityRoot.MappedControlHistory.Operation == nil { break } - return e.complexity.MappedControlHistory.Operation(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.Operation(childComplexity), true case "MappedControlHistory.ownerID": - if e.complexity.MappedControlHistory.OwnerID == nil { + if e.ComplexityRoot.MappedControlHistory.OwnerID == nil { break } - return e.complexity.MappedControlHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.OwnerID(childComplexity), true case "MappedControlHistory.ref": - if e.complexity.MappedControlHistory.Ref == nil { + if e.ComplexityRoot.MappedControlHistory.Ref == nil { break } - return e.complexity.MappedControlHistory.Ref(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.Ref(childComplexity), true case "MappedControlHistory.relation": - if e.complexity.MappedControlHistory.Relation == nil { + if e.ComplexityRoot.MappedControlHistory.Relation == nil { break } - return e.complexity.MappedControlHistory.Relation(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.Relation(childComplexity), true case "MappedControlHistory.source": - if e.complexity.MappedControlHistory.Source == nil { + if e.ComplexityRoot.MappedControlHistory.Source == nil { break } - return e.complexity.MappedControlHistory.Source(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.Source(childComplexity), true case "MappedControlHistory.systemInternalID": - if e.complexity.MappedControlHistory.SystemInternalID == nil { + if e.ComplexityRoot.MappedControlHistory.SystemInternalID == nil { break } - return e.complexity.MappedControlHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.SystemInternalID(childComplexity), true case "MappedControlHistory.systemOwned": - if e.complexity.MappedControlHistory.SystemOwned == nil { + if e.ComplexityRoot.MappedControlHistory.SystemOwned == nil { break } - return e.complexity.MappedControlHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.SystemOwned(childComplexity), true case "MappedControlHistory.tags": - if e.complexity.MappedControlHistory.Tags == nil { + if e.ComplexityRoot.MappedControlHistory.Tags == nil { break } - return e.complexity.MappedControlHistory.Tags(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.Tags(childComplexity), true case "MappedControlHistory.updatedAt": - if e.complexity.MappedControlHistory.UpdatedAt == nil { + if e.ComplexityRoot.MappedControlHistory.UpdatedAt == nil { break } - return e.complexity.MappedControlHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.UpdatedAt(childComplexity), true case "MappedControlHistory.updatedBy": - if e.complexity.MappedControlHistory.UpdatedBy == nil { + if e.ComplexityRoot.MappedControlHistory.UpdatedBy == nil { break } - return e.complexity.MappedControlHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.MappedControlHistory.UpdatedBy(childComplexity), true case "MappedControlHistoryConnection.edges": - if e.complexity.MappedControlHistoryConnection.Edges == nil { + if e.ComplexityRoot.MappedControlHistoryConnection.Edges == nil { break } - return e.complexity.MappedControlHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.MappedControlHistoryConnection.Edges(childComplexity), true case "MappedControlHistoryConnection.pageInfo": - if e.complexity.MappedControlHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.MappedControlHistoryConnection.PageInfo == nil { break } - return e.complexity.MappedControlHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.MappedControlHistoryConnection.PageInfo(childComplexity), true case "MappedControlHistoryConnection.totalCount": - if e.complexity.MappedControlHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.MappedControlHistoryConnection.TotalCount == nil { break } - return e.complexity.MappedControlHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.MappedControlHistoryConnection.TotalCount(childComplexity), true case "MappedControlHistoryEdge.cursor": - if e.complexity.MappedControlHistoryEdge.Cursor == nil { + if e.ComplexityRoot.MappedControlHistoryEdge.Cursor == nil { break } - return e.complexity.MappedControlHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.MappedControlHistoryEdge.Cursor(childComplexity), true case "MappedControlHistoryEdge.node": - if e.complexity.MappedControlHistoryEdge.Node == nil { + if e.ComplexityRoot.MappedControlHistoryEdge.Node == nil { break } - return e.complexity.MappedControlHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.MappedControlHistoryEdge.Node(childComplexity), true case "NarrativeHistory.createdAt": - if e.complexity.NarrativeHistory.CreatedAt == nil { + if e.ComplexityRoot.NarrativeHistory.CreatedAt == nil { break } - return e.complexity.NarrativeHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.CreatedAt(childComplexity), true case "NarrativeHistory.createdBy": - if e.complexity.NarrativeHistory.CreatedBy == nil { + if e.ComplexityRoot.NarrativeHistory.CreatedBy == nil { break } - return e.complexity.NarrativeHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.CreatedBy(childComplexity), true case "NarrativeHistory.description": - if e.complexity.NarrativeHistory.Description == nil { + if e.ComplexityRoot.NarrativeHistory.Description == nil { break } - return e.complexity.NarrativeHistory.Description(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.Description(childComplexity), true case "NarrativeHistory.details": - if e.complexity.NarrativeHistory.Details == nil { + if e.ComplexityRoot.NarrativeHistory.Details == nil { break } - return e.complexity.NarrativeHistory.Details(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.Details(childComplexity), true case "NarrativeHistory.displayID": - if e.complexity.NarrativeHistory.DisplayID == nil { + if e.ComplexityRoot.NarrativeHistory.DisplayID == nil { break } - return e.complexity.NarrativeHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.DisplayID(childComplexity), true case "NarrativeHistory.historyTime": - if e.complexity.NarrativeHistory.HistoryTime == nil { + if e.ComplexityRoot.NarrativeHistory.HistoryTime == nil { break } - return e.complexity.NarrativeHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.HistoryTime(childComplexity), true case "NarrativeHistory.id": - if e.complexity.NarrativeHistory.ID == nil { + if e.ComplexityRoot.NarrativeHistory.ID == nil { break } - return e.complexity.NarrativeHistory.ID(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.ID(childComplexity), true case "NarrativeHistory.internalNotes": - if e.complexity.NarrativeHistory.InternalNotes == nil { + if e.ComplexityRoot.NarrativeHistory.InternalNotes == nil { break } - return e.complexity.NarrativeHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.InternalNotes(childComplexity), true case "NarrativeHistory.name": - if e.complexity.NarrativeHistory.Name == nil { + if e.ComplexityRoot.NarrativeHistory.Name == nil { break } - return e.complexity.NarrativeHistory.Name(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.Name(childComplexity), true case "NarrativeHistory.operation": - if e.complexity.NarrativeHistory.Operation == nil { + if e.ComplexityRoot.NarrativeHistory.Operation == nil { break } - return e.complexity.NarrativeHistory.Operation(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.Operation(childComplexity), true case "NarrativeHistory.ownerID": - if e.complexity.NarrativeHistory.OwnerID == nil { + if e.ComplexityRoot.NarrativeHistory.OwnerID == nil { break } - return e.complexity.NarrativeHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.OwnerID(childComplexity), true case "NarrativeHistory.ref": - if e.complexity.NarrativeHistory.Ref == nil { + if e.ComplexityRoot.NarrativeHistory.Ref == nil { break } - return e.complexity.NarrativeHistory.Ref(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.Ref(childComplexity), true case "NarrativeHistory.systemInternalID": - if e.complexity.NarrativeHistory.SystemInternalID == nil { + if e.ComplexityRoot.NarrativeHistory.SystemInternalID == nil { break } - return e.complexity.NarrativeHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.SystemInternalID(childComplexity), true case "NarrativeHistory.systemOwned": - if e.complexity.NarrativeHistory.SystemOwned == nil { + if e.ComplexityRoot.NarrativeHistory.SystemOwned == nil { break } - return e.complexity.NarrativeHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.SystemOwned(childComplexity), true case "NarrativeHistory.tags": - if e.complexity.NarrativeHistory.Tags == nil { + if e.ComplexityRoot.NarrativeHistory.Tags == nil { break } - return e.complexity.NarrativeHistory.Tags(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.Tags(childComplexity), true case "NarrativeHistory.updatedAt": - if e.complexity.NarrativeHistory.UpdatedAt == nil { + if e.ComplexityRoot.NarrativeHistory.UpdatedAt == nil { break } - return e.complexity.NarrativeHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.UpdatedAt(childComplexity), true case "NarrativeHistory.updatedBy": - if e.complexity.NarrativeHistory.UpdatedBy == nil { + if e.ComplexityRoot.NarrativeHistory.UpdatedBy == nil { break } - return e.complexity.NarrativeHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.NarrativeHistory.UpdatedBy(childComplexity), true case "NarrativeHistoryConnection.edges": - if e.complexity.NarrativeHistoryConnection.Edges == nil { + if e.ComplexityRoot.NarrativeHistoryConnection.Edges == nil { break } - return e.complexity.NarrativeHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.NarrativeHistoryConnection.Edges(childComplexity), true case "NarrativeHistoryConnection.pageInfo": - if e.complexity.NarrativeHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.NarrativeHistoryConnection.PageInfo == nil { break } - return e.complexity.NarrativeHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NarrativeHistoryConnection.PageInfo(childComplexity), true case "NarrativeHistoryConnection.totalCount": - if e.complexity.NarrativeHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.NarrativeHistoryConnection.TotalCount == nil { break } - return e.complexity.NarrativeHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NarrativeHistoryConnection.TotalCount(childComplexity), true case "NarrativeHistoryEdge.cursor": - if e.complexity.NarrativeHistoryEdge.Cursor == nil { + if e.ComplexityRoot.NarrativeHistoryEdge.Cursor == nil { break } - return e.complexity.NarrativeHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NarrativeHistoryEdge.Cursor(childComplexity), true case "NarrativeHistoryEdge.node": - if e.complexity.NarrativeHistoryEdge.Node == nil { + if e.ComplexityRoot.NarrativeHistoryEdge.Node == nil { break } - return e.complexity.NarrativeHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.NarrativeHistoryEdge.Node(childComplexity), true case "NoteHistory.createdAt": - if e.complexity.NoteHistory.CreatedAt == nil { + if e.ComplexityRoot.NoteHistory.CreatedAt == nil { break } - return e.complexity.NoteHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.NoteHistory.CreatedAt(childComplexity), true case "NoteHistory.createdBy": - if e.complexity.NoteHistory.CreatedBy == nil { + if e.ComplexityRoot.NoteHistory.CreatedBy == nil { break } - return e.complexity.NoteHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.NoteHistory.CreatedBy(childComplexity), true case "NoteHistory.discussionID": - if e.complexity.NoteHistory.DiscussionID == nil { + if e.ComplexityRoot.NoteHistory.DiscussionID == nil { break } - return e.complexity.NoteHistory.DiscussionID(childComplexity), true + return e.ComplexityRoot.NoteHistory.DiscussionID(childComplexity), true case "NoteHistory.displayID": - if e.complexity.NoteHistory.DisplayID == nil { + if e.ComplexityRoot.NoteHistory.DisplayID == nil { break } - return e.complexity.NoteHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.NoteHistory.DisplayID(childComplexity), true case "NoteHistory.historyTime": - if e.complexity.NoteHistory.HistoryTime == nil { + if e.ComplexityRoot.NoteHistory.HistoryTime == nil { break } - return e.complexity.NoteHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.NoteHistory.HistoryTime(childComplexity), true case "NoteHistory.id": - if e.complexity.NoteHistory.ID == nil { + if e.ComplexityRoot.NoteHistory.ID == nil { break } - return e.complexity.NoteHistory.ID(childComplexity), true + return e.ComplexityRoot.NoteHistory.ID(childComplexity), true case "NoteHistory.isEdited": - if e.complexity.NoteHistory.IsEdited == nil { + if e.ComplexityRoot.NoteHistory.IsEdited == nil { break } - return e.complexity.NoteHistory.IsEdited(childComplexity), true + return e.ComplexityRoot.NoteHistory.IsEdited(childComplexity), true case "NoteHistory.noteRef": - if e.complexity.NoteHistory.NoteRef == nil { + if e.ComplexityRoot.NoteHistory.NoteRef == nil { break } - return e.complexity.NoteHistory.NoteRef(childComplexity), true + return e.ComplexityRoot.NoteHistory.NoteRef(childComplexity), true case "NoteHistory.operation": - if e.complexity.NoteHistory.Operation == nil { + if e.ComplexityRoot.NoteHistory.Operation == nil { break } - return e.complexity.NoteHistory.Operation(childComplexity), true + return e.ComplexityRoot.NoteHistory.Operation(childComplexity), true case "NoteHistory.ownerID": - if e.complexity.NoteHistory.OwnerID == nil { + if e.ComplexityRoot.NoteHistory.OwnerID == nil { break } - return e.complexity.NoteHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.NoteHistory.OwnerID(childComplexity), true case "NoteHistory.ref": - if e.complexity.NoteHistory.Ref == nil { + if e.ComplexityRoot.NoteHistory.Ref == nil { break } - return e.complexity.NoteHistory.Ref(childComplexity), true + return e.ComplexityRoot.NoteHistory.Ref(childComplexity), true case "NoteHistory.text": - if e.complexity.NoteHistory.Text == nil { + if e.ComplexityRoot.NoteHistory.Text == nil { break } - return e.complexity.NoteHistory.Text(childComplexity), true + return e.ComplexityRoot.NoteHistory.Text(childComplexity), true case "NoteHistory.textJSON": - if e.complexity.NoteHistory.TextJSON == nil { + if e.ComplexityRoot.NoteHistory.TextJSON == nil { break } - return e.complexity.NoteHistory.TextJSON(childComplexity), true + return e.ComplexityRoot.NoteHistory.TextJSON(childComplexity), true case "NoteHistory.title": - if e.complexity.NoteHistory.Title == nil { + if e.ComplexityRoot.NoteHistory.Title == nil { break } - return e.complexity.NoteHistory.Title(childComplexity), true + return e.ComplexityRoot.NoteHistory.Title(childComplexity), true case "NoteHistory.trustCenterID": - if e.complexity.NoteHistory.TrustCenterID == nil { + if e.ComplexityRoot.NoteHistory.TrustCenterID == nil { break } - return e.complexity.NoteHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.NoteHistory.TrustCenterID(childComplexity), true case "NoteHistory.updatedAt": - if e.complexity.NoteHistory.UpdatedAt == nil { + if e.ComplexityRoot.NoteHistory.UpdatedAt == nil { break } - return e.complexity.NoteHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.NoteHistory.UpdatedAt(childComplexity), true case "NoteHistory.updatedBy": - if e.complexity.NoteHistory.UpdatedBy == nil { + if e.ComplexityRoot.NoteHistory.UpdatedBy == nil { break } - return e.complexity.NoteHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.NoteHistory.UpdatedBy(childComplexity), true case "NoteHistoryConnection.edges": - if e.complexity.NoteHistoryConnection.Edges == nil { + if e.ComplexityRoot.NoteHistoryConnection.Edges == nil { break } - return e.complexity.NoteHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.NoteHistoryConnection.Edges(childComplexity), true case "NoteHistoryConnection.pageInfo": - if e.complexity.NoteHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.NoteHistoryConnection.PageInfo == nil { break } - return e.complexity.NoteHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NoteHistoryConnection.PageInfo(childComplexity), true case "NoteHistoryConnection.totalCount": - if e.complexity.NoteHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.NoteHistoryConnection.TotalCount == nil { break } - return e.complexity.NoteHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NoteHistoryConnection.TotalCount(childComplexity), true case "NoteHistoryEdge.cursor": - if e.complexity.NoteHistoryEdge.Cursor == nil { + if e.ComplexityRoot.NoteHistoryEdge.Cursor == nil { break } - return e.complexity.NoteHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NoteHistoryEdge.Cursor(childComplexity), true case "NoteHistoryEdge.node": - if e.complexity.NoteHistoryEdge.Node == nil { + if e.ComplexityRoot.NoteHistoryEdge.Node == nil { break } - return e.complexity.NoteHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.NoteHistoryEdge.Node(childComplexity), true case "NotificationPreferenceHistory.cadence": - if e.complexity.NotificationPreferenceHistory.Cadence == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Cadence == nil { break } - return e.complexity.NotificationPreferenceHistory.Cadence(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Cadence(childComplexity), true case "NotificationPreferenceHistory.channel": - if e.complexity.NotificationPreferenceHistory.Channel == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Channel == nil { break } - return e.complexity.NotificationPreferenceHistory.Channel(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Channel(childComplexity), true case "NotificationPreferenceHistory.config": - if e.complexity.NotificationPreferenceHistory.Config == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Config == nil { break } - return e.complexity.NotificationPreferenceHistory.Config(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Config(childComplexity), true case "NotificationPreferenceHistory.createdAt": - if e.complexity.NotificationPreferenceHistory.CreatedAt == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.CreatedAt == nil { break } - return e.complexity.NotificationPreferenceHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.CreatedAt(childComplexity), true case "NotificationPreferenceHistory.createdBy": - if e.complexity.NotificationPreferenceHistory.CreatedBy == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.CreatedBy == nil { break } - return e.complexity.NotificationPreferenceHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.CreatedBy(childComplexity), true case "NotificationPreferenceHistory.destination": - if e.complexity.NotificationPreferenceHistory.Destination == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Destination == nil { break } - return e.complexity.NotificationPreferenceHistory.Destination(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Destination(childComplexity), true case "NotificationPreferenceHistory.enabled": - if e.complexity.NotificationPreferenceHistory.Enabled == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Enabled == nil { break } - return e.complexity.NotificationPreferenceHistory.Enabled(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Enabled(childComplexity), true case "NotificationPreferenceHistory.historyTime": - if e.complexity.NotificationPreferenceHistory.HistoryTime == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.HistoryTime == nil { break } - return e.complexity.NotificationPreferenceHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.HistoryTime(childComplexity), true case "NotificationPreferenceHistory.id": - if e.complexity.NotificationPreferenceHistory.ID == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.ID == nil { break } - return e.complexity.NotificationPreferenceHistory.ID(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.ID(childComplexity), true case "NotificationPreferenceHistory.isDefault": - if e.complexity.NotificationPreferenceHistory.IsDefault == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.IsDefault == nil { break } - return e.complexity.NotificationPreferenceHistory.IsDefault(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.IsDefault(childComplexity), true case "NotificationPreferenceHistory.lastError": - if e.complexity.NotificationPreferenceHistory.LastError == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.LastError == nil { break } - return e.complexity.NotificationPreferenceHistory.LastError(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.LastError(childComplexity), true case "NotificationPreferenceHistory.lastUsedAt": - if e.complexity.NotificationPreferenceHistory.LastUsedAt == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.LastUsedAt == nil { break } - return e.complexity.NotificationPreferenceHistory.LastUsedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.LastUsedAt(childComplexity), true case "NotificationPreferenceHistory.metadata": - if e.complexity.NotificationPreferenceHistory.Metadata == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Metadata == nil { break } - return e.complexity.NotificationPreferenceHistory.Metadata(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Metadata(childComplexity), true case "NotificationPreferenceHistory.muteUntil": - if e.complexity.NotificationPreferenceHistory.MuteUntil == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.MuteUntil == nil { break } - return e.complexity.NotificationPreferenceHistory.MuteUntil(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.MuteUntil(childComplexity), true case "NotificationPreferenceHistory.operation": - if e.complexity.NotificationPreferenceHistory.Operation == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Operation == nil { break } - return e.complexity.NotificationPreferenceHistory.Operation(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Operation(childComplexity), true case "NotificationPreferenceHistory.ownerID": - if e.complexity.NotificationPreferenceHistory.OwnerID == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.OwnerID == nil { break } - return e.complexity.NotificationPreferenceHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.OwnerID(childComplexity), true case "NotificationPreferenceHistory.priority": - if e.complexity.NotificationPreferenceHistory.Priority == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Priority == nil { break } - return e.complexity.NotificationPreferenceHistory.Priority(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Priority(childComplexity), true case "NotificationPreferenceHistory.provider": - if e.complexity.NotificationPreferenceHistory.Provider == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Provider == nil { break } - return e.complexity.NotificationPreferenceHistory.Provider(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Provider(childComplexity), true case "NotificationPreferenceHistory.quietHoursEnd": - if e.complexity.NotificationPreferenceHistory.QuietHoursEnd == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.QuietHoursEnd == nil { break } - return e.complexity.NotificationPreferenceHistory.QuietHoursEnd(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.QuietHoursEnd(childComplexity), true case "NotificationPreferenceHistory.quietHoursStart": - if e.complexity.NotificationPreferenceHistory.QuietHoursStart == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.QuietHoursStart == nil { break } - return e.complexity.NotificationPreferenceHistory.QuietHoursStart(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.QuietHoursStart(childComplexity), true case "NotificationPreferenceHistory.ref": - if e.complexity.NotificationPreferenceHistory.Ref == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Ref == nil { break } - return e.complexity.NotificationPreferenceHistory.Ref(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Ref(childComplexity), true case "NotificationPreferenceHistory.status": - if e.complexity.NotificationPreferenceHistory.Status == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Status == nil { break } - return e.complexity.NotificationPreferenceHistory.Status(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Status(childComplexity), true case "NotificationPreferenceHistory.templateID": - if e.complexity.NotificationPreferenceHistory.TemplateID == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.TemplateID == nil { break } - return e.complexity.NotificationPreferenceHistory.TemplateID(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.TemplateID(childComplexity), true case "NotificationPreferenceHistory.timezone": - if e.complexity.NotificationPreferenceHistory.Timezone == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.Timezone == nil { break } - return e.complexity.NotificationPreferenceHistory.Timezone(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.Timezone(childComplexity), true case "NotificationPreferenceHistory.topicOverrides": - if e.complexity.NotificationPreferenceHistory.TopicOverrides == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.TopicOverrides == nil { break } - return e.complexity.NotificationPreferenceHistory.TopicOverrides(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.TopicOverrides(childComplexity), true case "NotificationPreferenceHistory.topicPatterns": - if e.complexity.NotificationPreferenceHistory.TopicPatterns == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.TopicPatterns == nil { break } - return e.complexity.NotificationPreferenceHistory.TopicPatterns(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.TopicPatterns(childComplexity), true case "NotificationPreferenceHistory.updatedAt": - if e.complexity.NotificationPreferenceHistory.UpdatedAt == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.UpdatedAt == nil { break } - return e.complexity.NotificationPreferenceHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.UpdatedAt(childComplexity), true case "NotificationPreferenceHistory.updatedBy": - if e.complexity.NotificationPreferenceHistory.UpdatedBy == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.UpdatedBy == nil { break } - return e.complexity.NotificationPreferenceHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.UpdatedBy(childComplexity), true case "NotificationPreferenceHistory.userID": - if e.complexity.NotificationPreferenceHistory.UserID == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.UserID == nil { break } - return e.complexity.NotificationPreferenceHistory.UserID(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.UserID(childComplexity), true case "NotificationPreferenceHistory.verifiedAt": - if e.complexity.NotificationPreferenceHistory.VerifiedAt == nil { + if e.ComplexityRoot.NotificationPreferenceHistory.VerifiedAt == nil { break } - return e.complexity.NotificationPreferenceHistory.VerifiedAt(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistory.VerifiedAt(childComplexity), true case "NotificationPreferenceHistoryConnection.edges": - if e.complexity.NotificationPreferenceHistoryConnection.Edges == nil { + if e.ComplexityRoot.NotificationPreferenceHistoryConnection.Edges == nil { break } - return e.complexity.NotificationPreferenceHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistoryConnection.Edges(childComplexity), true case "NotificationPreferenceHistoryConnection.pageInfo": - if e.complexity.NotificationPreferenceHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.NotificationPreferenceHistoryConnection.PageInfo == nil { break } - return e.complexity.NotificationPreferenceHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistoryConnection.PageInfo(childComplexity), true case "NotificationPreferenceHistoryConnection.totalCount": - if e.complexity.NotificationPreferenceHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.NotificationPreferenceHistoryConnection.TotalCount == nil { break } - return e.complexity.NotificationPreferenceHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistoryConnection.TotalCount(childComplexity), true case "NotificationPreferenceHistoryEdge.cursor": - if e.complexity.NotificationPreferenceHistoryEdge.Cursor == nil { + if e.ComplexityRoot.NotificationPreferenceHistoryEdge.Cursor == nil { break } - return e.complexity.NotificationPreferenceHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistoryEdge.Cursor(childComplexity), true case "NotificationPreferenceHistoryEdge.node": - if e.complexity.NotificationPreferenceHistoryEdge.Node == nil { + if e.ComplexityRoot.NotificationPreferenceHistoryEdge.Node == nil { break } - return e.complexity.NotificationPreferenceHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.NotificationPreferenceHistoryEdge.Node(childComplexity), true case "NotificationTemplateHistory.active": - if e.complexity.NotificationTemplateHistory.Active == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Active == nil { break } - return e.complexity.NotificationTemplateHistory.Active(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Active(childComplexity), true case "NotificationTemplateHistory.blocks": - if e.complexity.NotificationTemplateHistory.Blocks == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Blocks == nil { break } - return e.complexity.NotificationTemplateHistory.Blocks(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Blocks(childComplexity), true case "NotificationTemplateHistory.bodyTemplate": - if e.complexity.NotificationTemplateHistory.BodyTemplate == nil { + if e.ComplexityRoot.NotificationTemplateHistory.BodyTemplate == nil { break } - return e.complexity.NotificationTemplateHistory.BodyTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.BodyTemplate(childComplexity), true case "NotificationTemplateHistory.channel": - if e.complexity.NotificationTemplateHistory.Channel == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Channel == nil { break } - return e.complexity.NotificationTemplateHistory.Channel(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Channel(childComplexity), true case "NotificationTemplateHistory.createdAt": - if e.complexity.NotificationTemplateHistory.CreatedAt == nil { + if e.ComplexityRoot.NotificationTemplateHistory.CreatedAt == nil { break } - return e.complexity.NotificationTemplateHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.CreatedAt(childComplexity), true case "NotificationTemplateHistory.createdBy": - if e.complexity.NotificationTemplateHistory.CreatedBy == nil { + if e.ComplexityRoot.NotificationTemplateHistory.CreatedBy == nil { break } - return e.complexity.NotificationTemplateHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.CreatedBy(childComplexity), true case "NotificationTemplateHistory.description": - if e.complexity.NotificationTemplateHistory.Description == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Description == nil { break } - return e.complexity.NotificationTemplateHistory.Description(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Description(childComplexity), true case "NotificationTemplateHistory.emailTemplateID": - if e.complexity.NotificationTemplateHistory.EmailTemplateID == nil { + if e.ComplexityRoot.NotificationTemplateHistory.EmailTemplateID == nil { break } - return e.complexity.NotificationTemplateHistory.EmailTemplateID(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.EmailTemplateID(childComplexity), true case "NotificationTemplateHistory.format": - if e.complexity.NotificationTemplateHistory.Format == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Format == nil { break } - return e.complexity.NotificationTemplateHistory.Format(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Format(childComplexity), true case "NotificationTemplateHistory.historyTime": - if e.complexity.NotificationTemplateHistory.HistoryTime == nil { + if e.ComplexityRoot.NotificationTemplateHistory.HistoryTime == nil { break } - return e.complexity.NotificationTemplateHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.HistoryTime(childComplexity), true case "NotificationTemplateHistory.id": - if e.complexity.NotificationTemplateHistory.ID == nil { + if e.ComplexityRoot.NotificationTemplateHistory.ID == nil { break } - return e.complexity.NotificationTemplateHistory.ID(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.ID(childComplexity), true case "NotificationTemplateHistory.integrationID": - if e.complexity.NotificationTemplateHistory.IntegrationID == nil { + if e.ComplexityRoot.NotificationTemplateHistory.IntegrationID == nil { break } - return e.complexity.NotificationTemplateHistory.IntegrationID(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.IntegrationID(childComplexity), true case "NotificationTemplateHistory.internalNotes": - if e.complexity.NotificationTemplateHistory.InternalNotes == nil { + if e.ComplexityRoot.NotificationTemplateHistory.InternalNotes == nil { break } - return e.complexity.NotificationTemplateHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.InternalNotes(childComplexity), true case "NotificationTemplateHistory.jsonconfig": - if e.complexity.NotificationTemplateHistory.Jsonconfig == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Jsonconfig == nil { break } - return e.complexity.NotificationTemplateHistory.Jsonconfig(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Jsonconfig(childComplexity), true case "NotificationTemplateHistory.key": - if e.complexity.NotificationTemplateHistory.Key == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Key == nil { break } - return e.complexity.NotificationTemplateHistory.Key(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Key(childComplexity), true case "NotificationTemplateHistory.locale": - if e.complexity.NotificationTemplateHistory.Locale == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Locale == nil { break } - return e.complexity.NotificationTemplateHistory.Locale(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Locale(childComplexity), true case "NotificationTemplateHistory.metadata": - if e.complexity.NotificationTemplateHistory.Metadata == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Metadata == nil { break } - return e.complexity.NotificationTemplateHistory.Metadata(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Metadata(childComplexity), true case "NotificationTemplateHistory.name": - if e.complexity.NotificationTemplateHistory.Name == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Name == nil { break } - return e.complexity.NotificationTemplateHistory.Name(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Name(childComplexity), true case "NotificationTemplateHistory.operation": - if e.complexity.NotificationTemplateHistory.Operation == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Operation == nil { break } - return e.complexity.NotificationTemplateHistory.Operation(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Operation(childComplexity), true case "NotificationTemplateHistory.ownerID": - if e.complexity.NotificationTemplateHistory.OwnerID == nil { + if e.ComplexityRoot.NotificationTemplateHistory.OwnerID == nil { break } - return e.complexity.NotificationTemplateHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.OwnerID(childComplexity), true case "NotificationTemplateHistory.ref": - if e.complexity.NotificationTemplateHistory.Ref == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Ref == nil { break } - return e.complexity.NotificationTemplateHistory.Ref(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Ref(childComplexity), true case "NotificationTemplateHistory.subjectTemplate": - if e.complexity.NotificationTemplateHistory.SubjectTemplate == nil { + if e.ComplexityRoot.NotificationTemplateHistory.SubjectTemplate == nil { break } - return e.complexity.NotificationTemplateHistory.SubjectTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.SubjectTemplate(childComplexity), true case "NotificationTemplateHistory.systemInternalID": - if e.complexity.NotificationTemplateHistory.SystemInternalID == nil { + if e.ComplexityRoot.NotificationTemplateHistory.SystemInternalID == nil { break } - return e.complexity.NotificationTemplateHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.SystemInternalID(childComplexity), true case "NotificationTemplateHistory.systemOwned": - if e.complexity.NotificationTemplateHistory.SystemOwned == nil { + if e.ComplexityRoot.NotificationTemplateHistory.SystemOwned == nil { break } - return e.complexity.NotificationTemplateHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.SystemOwned(childComplexity), true case "NotificationTemplateHistory.titleTemplate": - if e.complexity.NotificationTemplateHistory.TitleTemplate == nil { + if e.ComplexityRoot.NotificationTemplateHistory.TitleTemplate == nil { break } - return e.complexity.NotificationTemplateHistory.TitleTemplate(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.TitleTemplate(childComplexity), true case "NotificationTemplateHistory.topicPattern": - if e.complexity.NotificationTemplateHistory.TopicPattern == nil { + if e.ComplexityRoot.NotificationTemplateHistory.TopicPattern == nil { break } - return e.complexity.NotificationTemplateHistory.TopicPattern(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.TopicPattern(childComplexity), true case "NotificationTemplateHistory.uischema": - if e.complexity.NotificationTemplateHistory.Uischema == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Uischema == nil { break } - return e.complexity.NotificationTemplateHistory.Uischema(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Uischema(childComplexity), true case "NotificationTemplateHistory.updatedAt": - if e.complexity.NotificationTemplateHistory.UpdatedAt == nil { + if e.ComplexityRoot.NotificationTemplateHistory.UpdatedAt == nil { break } - return e.complexity.NotificationTemplateHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.UpdatedAt(childComplexity), true case "NotificationTemplateHistory.updatedBy": - if e.complexity.NotificationTemplateHistory.UpdatedBy == nil { + if e.ComplexityRoot.NotificationTemplateHistory.UpdatedBy == nil { break } - return e.complexity.NotificationTemplateHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.UpdatedBy(childComplexity), true case "NotificationTemplateHistory.version": - if e.complexity.NotificationTemplateHistory.Version == nil { + if e.ComplexityRoot.NotificationTemplateHistory.Version == nil { break } - return e.complexity.NotificationTemplateHistory.Version(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.Version(childComplexity), true case "NotificationTemplateHistory.workflowDefinitionID": - if e.complexity.NotificationTemplateHistory.WorkflowDefinitionID == nil { + if e.ComplexityRoot.NotificationTemplateHistory.WorkflowDefinitionID == nil { break } - return e.complexity.NotificationTemplateHistory.WorkflowDefinitionID(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistory.WorkflowDefinitionID(childComplexity), true case "NotificationTemplateHistoryConnection.edges": - if e.complexity.NotificationTemplateHistoryConnection.Edges == nil { + if e.ComplexityRoot.NotificationTemplateHistoryConnection.Edges == nil { break } - return e.complexity.NotificationTemplateHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistoryConnection.Edges(childComplexity), true case "NotificationTemplateHistoryConnection.pageInfo": - if e.complexity.NotificationTemplateHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.NotificationTemplateHistoryConnection.PageInfo == nil { break } - return e.complexity.NotificationTemplateHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistoryConnection.PageInfo(childComplexity), true case "NotificationTemplateHistoryConnection.totalCount": - if e.complexity.NotificationTemplateHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.NotificationTemplateHistoryConnection.TotalCount == nil { break } - return e.complexity.NotificationTemplateHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistoryConnection.TotalCount(childComplexity), true case "NotificationTemplateHistoryEdge.cursor": - if e.complexity.NotificationTemplateHistoryEdge.Cursor == nil { + if e.ComplexityRoot.NotificationTemplateHistoryEdge.Cursor == nil { break } - return e.complexity.NotificationTemplateHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistoryEdge.Cursor(childComplexity), true case "NotificationTemplateHistoryEdge.node": - if e.complexity.NotificationTemplateHistoryEdge.Node == nil { + if e.ComplexityRoot.NotificationTemplateHistoryEdge.Node == nil { break } - return e.complexity.NotificationTemplateHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.NotificationTemplateHistoryEdge.Node(childComplexity), true case "OrgMembershipHistory.createdAt": - if e.complexity.OrgMembershipHistory.CreatedAt == nil { + if e.ComplexityRoot.OrgMembershipHistory.CreatedAt == nil { break } - return e.complexity.OrgMembershipHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.CreatedAt(childComplexity), true case "OrgMembershipHistory.createdBy": - if e.complexity.OrgMembershipHistory.CreatedBy == nil { + if e.ComplexityRoot.OrgMembershipHistory.CreatedBy == nil { break } - return e.complexity.OrgMembershipHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.CreatedBy(childComplexity), true case "OrgMembershipHistory.historyTime": - if e.complexity.OrgMembershipHistory.HistoryTime == nil { + if e.ComplexityRoot.OrgMembershipHistory.HistoryTime == nil { break } - return e.complexity.OrgMembershipHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.HistoryTime(childComplexity), true case "OrgMembershipHistory.id": - if e.complexity.OrgMembershipHistory.ID == nil { + if e.ComplexityRoot.OrgMembershipHistory.ID == nil { break } - return e.complexity.OrgMembershipHistory.ID(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.ID(childComplexity), true case "OrgMembershipHistory.operation": - if e.complexity.OrgMembershipHistory.Operation == nil { + if e.ComplexityRoot.OrgMembershipHistory.Operation == nil { break } - return e.complexity.OrgMembershipHistory.Operation(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.Operation(childComplexity), true case "OrgMembershipHistory.organizationID": - if e.complexity.OrgMembershipHistory.OrganizationID == nil { + if e.ComplexityRoot.OrgMembershipHistory.OrganizationID == nil { break } - return e.complexity.OrgMembershipHistory.OrganizationID(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.OrganizationID(childComplexity), true case "OrgMembershipHistory.ref": - if e.complexity.OrgMembershipHistory.Ref == nil { + if e.ComplexityRoot.OrgMembershipHistory.Ref == nil { break } - return e.complexity.OrgMembershipHistory.Ref(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.Ref(childComplexity), true case "OrgMembershipHistory.role": - if e.complexity.OrgMembershipHistory.Role == nil { + if e.ComplexityRoot.OrgMembershipHistory.Role == nil { break } - return e.complexity.OrgMembershipHistory.Role(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.Role(childComplexity), true case "OrgMembershipHistory.updatedAt": - if e.complexity.OrgMembershipHistory.UpdatedAt == nil { + if e.ComplexityRoot.OrgMembershipHistory.UpdatedAt == nil { break } - return e.complexity.OrgMembershipHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.UpdatedAt(childComplexity), true case "OrgMembershipHistory.updatedBy": - if e.complexity.OrgMembershipHistory.UpdatedBy == nil { + if e.ComplexityRoot.OrgMembershipHistory.UpdatedBy == nil { break } - return e.complexity.OrgMembershipHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.UpdatedBy(childComplexity), true case "OrgMembershipHistory.userID": - if e.complexity.OrgMembershipHistory.UserID == nil { + if e.ComplexityRoot.OrgMembershipHistory.UserID == nil { break } - return e.complexity.OrgMembershipHistory.UserID(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistory.UserID(childComplexity), true case "OrgMembershipHistoryConnection.edges": - if e.complexity.OrgMembershipHistoryConnection.Edges == nil { + if e.ComplexityRoot.OrgMembershipHistoryConnection.Edges == nil { break } - return e.complexity.OrgMembershipHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistoryConnection.Edges(childComplexity), true case "OrgMembershipHistoryConnection.pageInfo": - if e.complexity.OrgMembershipHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.OrgMembershipHistoryConnection.PageInfo == nil { break } - return e.complexity.OrgMembershipHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistoryConnection.PageInfo(childComplexity), true case "OrgMembershipHistoryConnection.totalCount": - if e.complexity.OrgMembershipHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.OrgMembershipHistoryConnection.TotalCount == nil { break } - return e.complexity.OrgMembershipHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistoryConnection.TotalCount(childComplexity), true case "OrgMembershipHistoryEdge.cursor": - if e.complexity.OrgMembershipHistoryEdge.Cursor == nil { + if e.ComplexityRoot.OrgMembershipHistoryEdge.Cursor == nil { break } - return e.complexity.OrgMembershipHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistoryEdge.Cursor(childComplexity), true case "OrgMembershipHistoryEdge.node": - if e.complexity.OrgMembershipHistoryEdge.Node == nil { + if e.ComplexityRoot.OrgMembershipHistoryEdge.Node == nil { break } - return e.complexity.OrgMembershipHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.OrgMembershipHistoryEdge.Node(childComplexity), true case "OrgSubscriptionHistory.active": - if e.complexity.OrgSubscriptionHistory.Active == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.Active == nil { break } - return e.complexity.OrgSubscriptionHistory.Active(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.Active(childComplexity), true case "OrgSubscriptionHistory.createdAt": - if e.complexity.OrgSubscriptionHistory.CreatedAt == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.CreatedAt == nil { break } - return e.complexity.OrgSubscriptionHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.CreatedAt(childComplexity), true case "OrgSubscriptionHistory.createdBy": - if e.complexity.OrgSubscriptionHistory.CreatedBy == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.CreatedBy == nil { break } - return e.complexity.OrgSubscriptionHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.CreatedBy(childComplexity), true case "OrgSubscriptionHistory.daysUntilDue": - if e.complexity.OrgSubscriptionHistory.DaysUntilDue == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.DaysUntilDue == nil { break } - return e.complexity.OrgSubscriptionHistory.DaysUntilDue(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.DaysUntilDue(childComplexity), true case "OrgSubscriptionHistory.expiresAt": - if e.complexity.OrgSubscriptionHistory.ExpiresAt == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.ExpiresAt == nil { break } - return e.complexity.OrgSubscriptionHistory.ExpiresAt(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.ExpiresAt(childComplexity), true case "OrgSubscriptionHistory.historyTime": - if e.complexity.OrgSubscriptionHistory.HistoryTime == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.HistoryTime == nil { break } - return e.complexity.OrgSubscriptionHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.HistoryTime(childComplexity), true case "OrgSubscriptionHistory.id": - if e.complexity.OrgSubscriptionHistory.ID == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.ID == nil { break } - return e.complexity.OrgSubscriptionHistory.ID(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.ID(childComplexity), true case "OrgSubscriptionHistory.operation": - if e.complexity.OrgSubscriptionHistory.Operation == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.Operation == nil { break } - return e.complexity.OrgSubscriptionHistory.Operation(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.Operation(childComplexity), true case "OrgSubscriptionHistory.ownerID": - if e.complexity.OrgSubscriptionHistory.OwnerID == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.OwnerID == nil { break } - return e.complexity.OrgSubscriptionHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.OwnerID(childComplexity), true case "OrgSubscriptionHistory.ref": - if e.complexity.OrgSubscriptionHistory.Ref == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.Ref == nil { break } - return e.complexity.OrgSubscriptionHistory.Ref(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.Ref(childComplexity), true case "OrgSubscriptionHistory.stripeSubscriptionID": - if e.complexity.OrgSubscriptionHistory.StripeSubscriptionID == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.StripeSubscriptionID == nil { break } - return e.complexity.OrgSubscriptionHistory.StripeSubscriptionID(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.StripeSubscriptionID(childComplexity), true case "OrgSubscriptionHistory.stripeSubscriptionStatus": - if e.complexity.OrgSubscriptionHistory.StripeSubscriptionStatus == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.StripeSubscriptionStatus == nil { break } - return e.complexity.OrgSubscriptionHistory.StripeSubscriptionStatus(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.StripeSubscriptionStatus(childComplexity), true case "OrgSubscriptionHistory.tags": - if e.complexity.OrgSubscriptionHistory.Tags == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.Tags == nil { break } - return e.complexity.OrgSubscriptionHistory.Tags(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.Tags(childComplexity), true case "OrgSubscriptionHistory.trialExpiresAt": - if e.complexity.OrgSubscriptionHistory.TrialExpiresAt == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.TrialExpiresAt == nil { break } - return e.complexity.OrgSubscriptionHistory.TrialExpiresAt(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.TrialExpiresAt(childComplexity), true case "OrgSubscriptionHistory.updatedAt": - if e.complexity.OrgSubscriptionHistory.UpdatedAt == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.UpdatedAt == nil { break } - return e.complexity.OrgSubscriptionHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.UpdatedAt(childComplexity), true case "OrgSubscriptionHistory.updatedBy": - if e.complexity.OrgSubscriptionHistory.UpdatedBy == nil { + if e.ComplexityRoot.OrgSubscriptionHistory.UpdatedBy == nil { break } - return e.complexity.OrgSubscriptionHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistory.UpdatedBy(childComplexity), true case "OrgSubscriptionHistoryConnection.edges": - if e.complexity.OrgSubscriptionHistoryConnection.Edges == nil { + if e.ComplexityRoot.OrgSubscriptionHistoryConnection.Edges == nil { break } - return e.complexity.OrgSubscriptionHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistoryConnection.Edges(childComplexity), true case "OrgSubscriptionHistoryConnection.pageInfo": - if e.complexity.OrgSubscriptionHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.OrgSubscriptionHistoryConnection.PageInfo == nil { break } - return e.complexity.OrgSubscriptionHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistoryConnection.PageInfo(childComplexity), true case "OrgSubscriptionHistoryConnection.totalCount": - if e.complexity.OrgSubscriptionHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.OrgSubscriptionHistoryConnection.TotalCount == nil { break } - return e.complexity.OrgSubscriptionHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistoryConnection.TotalCount(childComplexity), true case "OrgSubscriptionHistoryEdge.cursor": - if e.complexity.OrgSubscriptionHistoryEdge.Cursor == nil { + if e.ComplexityRoot.OrgSubscriptionHistoryEdge.Cursor == nil { break } - return e.complexity.OrgSubscriptionHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistoryEdge.Cursor(childComplexity), true case "OrgSubscriptionHistoryEdge.node": - if e.complexity.OrgSubscriptionHistoryEdge.Node == nil { + if e.ComplexityRoot.OrgSubscriptionHistoryEdge.Node == nil { break } - return e.complexity.OrgSubscriptionHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.OrgSubscriptionHistoryEdge.Node(childComplexity), true case "OrganizationHistory.avatarLocalFileID": - if e.complexity.OrganizationHistory.AvatarLocalFileID == nil { + if e.ComplexityRoot.OrganizationHistory.AvatarLocalFileID == nil { break } - return e.complexity.OrganizationHistory.AvatarLocalFileID(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.AvatarLocalFileID(childComplexity), true case "OrganizationHistory.avatarRemoteURL": - if e.complexity.OrganizationHistory.AvatarRemoteURL == nil { + if e.ComplexityRoot.OrganizationHistory.AvatarRemoteURL == nil { break } - return e.complexity.OrganizationHistory.AvatarRemoteURL(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.AvatarRemoteURL(childComplexity), true case "OrganizationHistory.avatarUpdatedAt": - if e.complexity.OrganizationHistory.AvatarUpdatedAt == nil { + if e.ComplexityRoot.OrganizationHistory.AvatarUpdatedAt == nil { break } - return e.complexity.OrganizationHistory.AvatarUpdatedAt(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.AvatarUpdatedAt(childComplexity), true case "OrganizationHistory.createdAt": - if e.complexity.OrganizationHistory.CreatedAt == nil { + if e.ComplexityRoot.OrganizationHistory.CreatedAt == nil { break } - return e.complexity.OrganizationHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.CreatedAt(childComplexity), true case "OrganizationHistory.createdBy": - if e.complexity.OrganizationHistory.CreatedBy == nil { + if e.ComplexityRoot.OrganizationHistory.CreatedBy == nil { break } - return e.complexity.OrganizationHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.CreatedBy(childComplexity), true case "OrganizationHistory.dedicatedDb": - if e.complexity.OrganizationHistory.DedicatedDb == nil { + if e.ComplexityRoot.OrganizationHistory.DedicatedDb == nil { break } - return e.complexity.OrganizationHistory.DedicatedDb(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.DedicatedDb(childComplexity), true case "OrganizationHistory.description": - if e.complexity.OrganizationHistory.Description == nil { + if e.ComplexityRoot.OrganizationHistory.Description == nil { break } - return e.complexity.OrganizationHistory.Description(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.Description(childComplexity), true case "OrganizationHistory.displayName": - if e.complexity.OrganizationHistory.DisplayName == nil { + if e.ComplexityRoot.OrganizationHistory.DisplayName == nil { break } - return e.complexity.OrganizationHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.DisplayName(childComplexity), true case "OrganizationHistory.historyTime": - if e.complexity.OrganizationHistory.HistoryTime == nil { + if e.ComplexityRoot.OrganizationHistory.HistoryTime == nil { break } - return e.complexity.OrganizationHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.HistoryTime(childComplexity), true case "OrganizationHistory.id": - if e.complexity.OrganizationHistory.ID == nil { + if e.ComplexityRoot.OrganizationHistory.ID == nil { break } - return e.complexity.OrganizationHistory.ID(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.ID(childComplexity), true case "OrganizationHistory.name": - if e.complexity.OrganizationHistory.Name == nil { + if e.ComplexityRoot.OrganizationHistory.Name == nil { break } - return e.complexity.OrganizationHistory.Name(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.Name(childComplexity), true case "OrganizationHistory.operation": - if e.complexity.OrganizationHistory.Operation == nil { + if e.ComplexityRoot.OrganizationHistory.Operation == nil { break } - return e.complexity.OrganizationHistory.Operation(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.Operation(childComplexity), true case "OrganizationHistory.personalOrg": - if e.complexity.OrganizationHistory.PersonalOrg == nil { + if e.ComplexityRoot.OrganizationHistory.PersonalOrg == nil { break } - return e.complexity.OrganizationHistory.PersonalOrg(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.PersonalOrg(childComplexity), true case "OrganizationHistory.ref": - if e.complexity.OrganizationHistory.Ref == nil { + if e.ComplexityRoot.OrganizationHistory.Ref == nil { break } - return e.complexity.OrganizationHistory.Ref(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.Ref(childComplexity), true case "OrganizationHistory.stripeCustomerID": - if e.complexity.OrganizationHistory.StripeCustomerID == nil { + if e.ComplexityRoot.OrganizationHistory.StripeCustomerID == nil { break } - return e.complexity.OrganizationHistory.StripeCustomerID(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.StripeCustomerID(childComplexity), true case "OrganizationHistory.tags": - if e.complexity.OrganizationHistory.Tags == nil { + if e.ComplexityRoot.OrganizationHistory.Tags == nil { break } - return e.complexity.OrganizationHistory.Tags(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.Tags(childComplexity), true case "OrganizationHistory.updatedAt": - if e.complexity.OrganizationHistory.UpdatedAt == nil { + if e.ComplexityRoot.OrganizationHistory.UpdatedAt == nil { break } - return e.complexity.OrganizationHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.UpdatedAt(childComplexity), true case "OrganizationHistory.updatedBy": - if e.complexity.OrganizationHistory.UpdatedBy == nil { + if e.ComplexityRoot.OrganizationHistory.UpdatedBy == nil { break } - return e.complexity.OrganizationHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.OrganizationHistory.UpdatedBy(childComplexity), true case "OrganizationHistoryConnection.edges": - if e.complexity.OrganizationHistoryConnection.Edges == nil { + if e.ComplexityRoot.OrganizationHistoryConnection.Edges == nil { break } - return e.complexity.OrganizationHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrganizationHistoryConnection.Edges(childComplexity), true case "OrganizationHistoryConnection.pageInfo": - if e.complexity.OrganizationHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.OrganizationHistoryConnection.PageInfo == nil { break } - return e.complexity.OrganizationHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrganizationHistoryConnection.PageInfo(childComplexity), true case "OrganizationHistoryConnection.totalCount": - if e.complexity.OrganizationHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.OrganizationHistoryConnection.TotalCount == nil { break } - return e.complexity.OrganizationHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrganizationHistoryConnection.TotalCount(childComplexity), true case "OrganizationHistoryEdge.cursor": - if e.complexity.OrganizationHistoryEdge.Cursor == nil { + if e.ComplexityRoot.OrganizationHistoryEdge.Cursor == nil { break } - return e.complexity.OrganizationHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrganizationHistoryEdge.Cursor(childComplexity), true case "OrganizationHistoryEdge.node": - if e.complexity.OrganizationHistoryEdge.Node == nil { + if e.ComplexityRoot.OrganizationHistoryEdge.Node == nil { break } - return e.complexity.OrganizationHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.OrganizationHistoryEdge.Node(childComplexity), true case "OrganizationSettingHistory.allowMatchingDomainsAutojoin": - if e.complexity.OrganizationSettingHistory.AllowMatchingDomainsAutojoin == nil { + if e.ComplexityRoot.OrganizationSettingHistory.AllowMatchingDomainsAutojoin == nil { break } - return e.complexity.OrganizationSettingHistory.AllowMatchingDomainsAutojoin(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.AllowMatchingDomainsAutojoin(childComplexity), true case "OrganizationSettingHistory.allowedEmailDomains": - if e.complexity.OrganizationSettingHistory.AllowedEmailDomains == nil { + if e.ComplexityRoot.OrganizationSettingHistory.AllowedEmailDomains == nil { break } - return e.complexity.OrganizationSettingHistory.AllowedEmailDomains(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.AllowedEmailDomains(childComplexity), true case "OrganizationSettingHistory.billingAddress": - if e.complexity.OrganizationSettingHistory.BillingAddress == nil { + if e.ComplexityRoot.OrganizationSettingHistory.BillingAddress == nil { break } - return e.complexity.OrganizationSettingHistory.BillingAddress(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.BillingAddress(childComplexity), true case "OrganizationSettingHistory.billingContact": - if e.complexity.OrganizationSettingHistory.BillingContact == nil { + if e.ComplexityRoot.OrganizationSettingHistory.BillingContact == nil { break } - return e.complexity.OrganizationSettingHistory.BillingContact(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.BillingContact(childComplexity), true case "OrganizationSettingHistory.billingEmail": - if e.complexity.OrganizationSettingHistory.BillingEmail == nil { + if e.ComplexityRoot.OrganizationSettingHistory.BillingEmail == nil { break } - return e.complexity.OrganizationSettingHistory.BillingEmail(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.BillingEmail(childComplexity), true case "OrganizationSettingHistory.billingNotificationsEnabled": - if e.complexity.OrganizationSettingHistory.BillingNotificationsEnabled == nil { + if e.ComplexityRoot.OrganizationSettingHistory.BillingNotificationsEnabled == nil { break } - return e.complexity.OrganizationSettingHistory.BillingNotificationsEnabled(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.BillingNotificationsEnabled(childComplexity), true case "OrganizationSettingHistory.billingPhone": - if e.complexity.OrganizationSettingHistory.BillingPhone == nil { + if e.ComplexityRoot.OrganizationSettingHistory.BillingPhone == nil { break } - return e.complexity.OrganizationSettingHistory.BillingPhone(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.BillingPhone(childComplexity), true case "OrganizationSettingHistory.complianceWebhookToken": - if e.complexity.OrganizationSettingHistory.ComplianceWebhookToken == nil { + if e.ComplexityRoot.OrganizationSettingHistory.ComplianceWebhookToken == nil { break } - return e.complexity.OrganizationSettingHistory.ComplianceWebhookToken(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.ComplianceWebhookToken(childComplexity), true case "OrganizationSettingHistory.createdAt": - if e.complexity.OrganizationSettingHistory.CreatedAt == nil { + if e.ComplexityRoot.OrganizationSettingHistory.CreatedAt == nil { break } - return e.complexity.OrganizationSettingHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.CreatedAt(childComplexity), true case "OrganizationSettingHistory.createdBy": - if e.complexity.OrganizationSettingHistory.CreatedBy == nil { + if e.ComplexityRoot.OrganizationSettingHistory.CreatedBy == nil { break } - return e.complexity.OrganizationSettingHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.CreatedBy(childComplexity), true case "OrganizationSettingHistory.domains": - if e.complexity.OrganizationSettingHistory.Domains == nil { + if e.ComplexityRoot.OrganizationSettingHistory.Domains == nil { break } - return e.complexity.OrganizationSettingHistory.Domains(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.Domains(childComplexity), true case "OrganizationSettingHistory.geoLocation": - if e.complexity.OrganizationSettingHistory.GeoLocation == nil { + if e.ComplexityRoot.OrganizationSettingHistory.GeoLocation == nil { break } - return e.complexity.OrganizationSettingHistory.GeoLocation(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.GeoLocation(childComplexity), true case "OrganizationSettingHistory.historyTime": - if e.complexity.OrganizationSettingHistory.HistoryTime == nil { + if e.ComplexityRoot.OrganizationSettingHistory.HistoryTime == nil { break } - return e.complexity.OrganizationSettingHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.HistoryTime(childComplexity), true case "OrganizationSettingHistory.id": - if e.complexity.OrganizationSettingHistory.ID == nil { + if e.ComplexityRoot.OrganizationSettingHistory.ID == nil { break } - return e.complexity.OrganizationSettingHistory.ID(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.ID(childComplexity), true case "OrganizationSettingHistory.identityProvider": - if e.complexity.OrganizationSettingHistory.IdentityProvider == nil { + if e.ComplexityRoot.OrganizationSettingHistory.IdentityProvider == nil { break } - return e.complexity.OrganizationSettingHistory.IdentityProvider(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.IdentityProvider(childComplexity), true case "OrganizationSettingHistory.identityProviderAuthTested": - if e.complexity.OrganizationSettingHistory.IdentityProviderAuthTested == nil { + if e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderAuthTested == nil { break } - return e.complexity.OrganizationSettingHistory.IdentityProviderAuthTested(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderAuthTested(childComplexity), true case "OrganizationSettingHistory.identityProviderClientID": - if e.complexity.OrganizationSettingHistory.IdentityProviderClientID == nil { + if e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderClientID == nil { break } - return e.complexity.OrganizationSettingHistory.IdentityProviderClientID(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderClientID(childComplexity), true case "OrganizationSettingHistory.identityProviderClientSecret": - if e.complexity.OrganizationSettingHistory.IdentityProviderClientSecret == nil { + if e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderClientSecret == nil { break } - return e.complexity.OrganizationSettingHistory.IdentityProviderClientSecret(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderClientSecret(childComplexity), true case "OrganizationSettingHistory.identityProviderEntityID": - if e.complexity.OrganizationSettingHistory.IdentityProviderEntityID == nil { + if e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderEntityID == nil { break } - return e.complexity.OrganizationSettingHistory.IdentityProviderEntityID(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderEntityID(childComplexity), true case "OrganizationSettingHistory.identityProviderLoginEnforced": - if e.complexity.OrganizationSettingHistory.IdentityProviderLoginEnforced == nil { + if e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderLoginEnforced == nil { break } - return e.complexity.OrganizationSettingHistory.IdentityProviderLoginEnforced(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderLoginEnforced(childComplexity), true case "OrganizationSettingHistory.identityProviderMetadataEndpoint": - if e.complexity.OrganizationSettingHistory.IdentityProviderMetadataEndpoint == nil { + if e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderMetadataEndpoint == nil { break } - return e.complexity.OrganizationSettingHistory.IdentityProviderMetadataEndpoint(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.IdentityProviderMetadataEndpoint(childComplexity), true case "OrganizationSettingHistory.multifactorAuthEnforced": - if e.complexity.OrganizationSettingHistory.MultifactorAuthEnforced == nil { + if e.ComplexityRoot.OrganizationSettingHistory.MultifactorAuthEnforced == nil { break } - return e.complexity.OrganizationSettingHistory.MultifactorAuthEnforced(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.MultifactorAuthEnforced(childComplexity), true case "OrganizationSettingHistory.oidcDiscoveryEndpoint": - if e.complexity.OrganizationSettingHistory.OidcDiscoveryEndpoint == nil { + if e.ComplexityRoot.OrganizationSettingHistory.OidcDiscoveryEndpoint == nil { break } - return e.complexity.OrganizationSettingHistory.OidcDiscoveryEndpoint(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.OidcDiscoveryEndpoint(childComplexity), true case "OrganizationSettingHistory.operation": - if e.complexity.OrganizationSettingHistory.Operation == nil { + if e.ComplexityRoot.OrganizationSettingHistory.Operation == nil { break } - return e.complexity.OrganizationSettingHistory.Operation(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.Operation(childComplexity), true case "OrganizationSettingHistory.organizationID": - if e.complexity.OrganizationSettingHistory.OrganizationID == nil { + if e.ComplexityRoot.OrganizationSettingHistory.OrganizationID == nil { break } - return e.complexity.OrganizationSettingHistory.OrganizationID(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.OrganizationID(childComplexity), true case "OrganizationSettingHistory.paymentMethodAdded": - if e.complexity.OrganizationSettingHistory.PaymentMethodAdded == nil { + if e.ComplexityRoot.OrganizationSettingHistory.PaymentMethodAdded == nil { break } - return e.complexity.OrganizationSettingHistory.PaymentMethodAdded(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.PaymentMethodAdded(childComplexity), true case "OrganizationSettingHistory.ref": - if e.complexity.OrganizationSettingHistory.Ref == nil { + if e.ComplexityRoot.OrganizationSettingHistory.Ref == nil { break } - return e.complexity.OrganizationSettingHistory.Ref(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.Ref(childComplexity), true case "OrganizationSettingHistory.samlCert": - if e.complexity.OrganizationSettingHistory.SamlCert == nil { + if e.ComplexityRoot.OrganizationSettingHistory.SamlCert == nil { break } - return e.complexity.OrganizationSettingHistory.SamlCert(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.SamlCert(childComplexity), true case "OrganizationSettingHistory.samlIssuer": - if e.complexity.OrganizationSettingHistory.SamlIssuer == nil { + if e.ComplexityRoot.OrganizationSettingHistory.SamlIssuer == nil { break } - return e.complexity.OrganizationSettingHistory.SamlIssuer(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.SamlIssuer(childComplexity), true case "OrganizationSettingHistory.samlSigninURL": - if e.complexity.OrganizationSettingHistory.SamlSigninURL == nil { + if e.ComplexityRoot.OrganizationSettingHistory.SamlSigninURL == nil { break } - return e.complexity.OrganizationSettingHistory.SamlSigninURL(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.SamlSigninURL(childComplexity), true case "OrganizationSettingHistory.tags": - if e.complexity.OrganizationSettingHistory.Tags == nil { + if e.ComplexityRoot.OrganizationSettingHistory.Tags == nil { break } - return e.complexity.OrganizationSettingHistory.Tags(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.Tags(childComplexity), true case "OrganizationSettingHistory.taxIdentifier": - if e.complexity.OrganizationSettingHistory.TaxIdentifier == nil { + if e.ComplexityRoot.OrganizationSettingHistory.TaxIdentifier == nil { break } - return e.complexity.OrganizationSettingHistory.TaxIdentifier(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.TaxIdentifier(childComplexity), true case "OrganizationSettingHistory.updatedAt": - if e.complexity.OrganizationSettingHistory.UpdatedAt == nil { + if e.ComplexityRoot.OrganizationSettingHistory.UpdatedAt == nil { break } - return e.complexity.OrganizationSettingHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.UpdatedAt(childComplexity), true case "OrganizationSettingHistory.updatedBy": - if e.complexity.OrganizationSettingHistory.UpdatedBy == nil { + if e.ComplexityRoot.OrganizationSettingHistory.UpdatedBy == nil { break } - return e.complexity.OrganizationSettingHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistory.UpdatedBy(childComplexity), true case "OrganizationSettingHistoryConnection.edges": - if e.complexity.OrganizationSettingHistoryConnection.Edges == nil { + if e.ComplexityRoot.OrganizationSettingHistoryConnection.Edges == nil { break } - return e.complexity.OrganizationSettingHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistoryConnection.Edges(childComplexity), true case "OrganizationSettingHistoryConnection.pageInfo": - if e.complexity.OrganizationSettingHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.OrganizationSettingHistoryConnection.PageInfo == nil { break } - return e.complexity.OrganizationSettingHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistoryConnection.PageInfo(childComplexity), true case "OrganizationSettingHistoryConnection.totalCount": - if e.complexity.OrganizationSettingHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.OrganizationSettingHistoryConnection.TotalCount == nil { break } - return e.complexity.OrganizationSettingHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistoryConnection.TotalCount(childComplexity), true case "OrganizationSettingHistoryEdge.cursor": - if e.complexity.OrganizationSettingHistoryEdge.Cursor == nil { + if e.ComplexityRoot.OrganizationSettingHistoryEdge.Cursor == nil { break } - return e.complexity.OrganizationSettingHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistoryEdge.Cursor(childComplexity), true case "OrganizationSettingHistoryEdge.node": - if e.complexity.OrganizationSettingHistoryEdge.Node == nil { + if e.ComplexityRoot.OrganizationSettingHistoryEdge.Node == nil { break } - return e.complexity.OrganizationSettingHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.OrganizationSettingHistoryEdge.Node(childComplexity), true case "PageInfo.endCursor": - if e.complexity.PageInfo.EndCursor == nil { + if e.ComplexityRoot.PageInfo.EndCursor == nil { break } - return e.complexity.PageInfo.EndCursor(childComplexity), true + return e.ComplexityRoot.PageInfo.EndCursor(childComplexity), true case "PageInfo.hasNextPage": - if e.complexity.PageInfo.HasNextPage == nil { + if e.ComplexityRoot.PageInfo.HasNextPage == nil { break } - return e.complexity.PageInfo.HasNextPage(childComplexity), true + return e.ComplexityRoot.PageInfo.HasNextPage(childComplexity), true case "PageInfo.hasPreviousPage": - if e.complexity.PageInfo.HasPreviousPage == nil { + if e.ComplexityRoot.PageInfo.HasPreviousPage == nil { break } - return e.complexity.PageInfo.HasPreviousPage(childComplexity), true + return e.ComplexityRoot.PageInfo.HasPreviousPage(childComplexity), true case "PageInfo.startCursor": - if e.complexity.PageInfo.StartCursor == nil { + if e.ComplexityRoot.PageInfo.StartCursor == nil { break } - return e.complexity.PageInfo.StartCursor(childComplexity), true + return e.ComplexityRoot.PageInfo.StartCursor(childComplexity), true case "PlatformHistory.accessModelID": - if e.complexity.PlatformHistory.AccessModelID == nil { + if e.ComplexityRoot.PlatformHistory.AccessModelID == nil { break } - return e.complexity.PlatformHistory.AccessModelID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.AccessModelID(childComplexity), true case "PlatformHistory.accessModelName": - if e.complexity.PlatformHistory.AccessModelName == nil { + if e.ComplexityRoot.PlatformHistory.AccessModelName == nil { break } - return e.complexity.PlatformHistory.AccessModelName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.AccessModelName(childComplexity), true case "PlatformHistory.businessOwner": - if e.complexity.PlatformHistory.BusinessOwner == nil { + if e.ComplexityRoot.PlatformHistory.BusinessOwner == nil { break } - return e.complexity.PlatformHistory.BusinessOwner(childComplexity), true + return e.ComplexityRoot.PlatformHistory.BusinessOwner(childComplexity), true case "PlatformHistory.businessOwnerGroupID": - if e.complexity.PlatformHistory.BusinessOwnerGroupID == nil { + if e.ComplexityRoot.PlatformHistory.BusinessOwnerGroupID == nil { break } - return e.complexity.PlatformHistory.BusinessOwnerGroupID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.BusinessOwnerGroupID(childComplexity), true case "PlatformHistory.businessOwnerUserID": - if e.complexity.PlatformHistory.BusinessOwnerUserID == nil { + if e.ComplexityRoot.PlatformHistory.BusinessOwnerUserID == nil { break } - return e.complexity.PlatformHistory.BusinessOwnerUserID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.BusinessOwnerUserID(childComplexity), true case "PlatformHistory.businessPurpose": - if e.complexity.PlatformHistory.BusinessPurpose == nil { + if e.ComplexityRoot.PlatformHistory.BusinessPurpose == nil { break } - return e.complexity.PlatformHistory.BusinessPurpose(childComplexity), true + return e.ComplexityRoot.PlatformHistory.BusinessPurpose(childComplexity), true case "PlatformHistory.containsPii": - if e.complexity.PlatformHistory.ContainsPii == nil { + if e.ComplexityRoot.PlatformHistory.ContainsPii == nil { break } - return e.complexity.PlatformHistory.ContainsPii(childComplexity), true + return e.ComplexityRoot.PlatformHistory.ContainsPii(childComplexity), true case "PlatformHistory.costCenter": - if e.complexity.PlatformHistory.CostCenter == nil { + if e.ComplexityRoot.PlatformHistory.CostCenter == nil { break } - return e.complexity.PlatformHistory.CostCenter(childComplexity), true + return e.ComplexityRoot.PlatformHistory.CostCenter(childComplexity), true case "PlatformHistory.createdAt": - if e.complexity.PlatformHistory.CreatedAt == nil { + if e.ComplexityRoot.PlatformHistory.CreatedAt == nil { break } - return e.complexity.PlatformHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.PlatformHistory.CreatedAt(childComplexity), true case "PlatformHistory.createdBy": - if e.complexity.PlatformHistory.CreatedBy == nil { + if e.ComplexityRoot.PlatformHistory.CreatedBy == nil { break } - return e.complexity.PlatformHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.PlatformHistory.CreatedBy(childComplexity), true case "PlatformHistory.criticalityID": - if e.complexity.PlatformHistory.CriticalityID == nil { + if e.ComplexityRoot.PlatformHistory.CriticalityID == nil { break } - return e.complexity.PlatformHistory.CriticalityID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.CriticalityID(childComplexity), true case "PlatformHistory.criticalityName": - if e.complexity.PlatformHistory.CriticalityName == nil { + if e.ComplexityRoot.PlatformHistory.CriticalityName == nil { break } - return e.complexity.PlatformHistory.CriticalityName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.CriticalityName(childComplexity), true case "PlatformHistory.dataFlowSummary": - if e.complexity.PlatformHistory.DataFlowSummary == nil { + if e.ComplexityRoot.PlatformHistory.DataFlowSummary == nil { break } - return e.complexity.PlatformHistory.DataFlowSummary(childComplexity), true + return e.ComplexityRoot.PlatformHistory.DataFlowSummary(childComplexity), true case "PlatformHistory.description": - if e.complexity.PlatformHistory.Description == nil { + if e.ComplexityRoot.PlatformHistory.Description == nil { break } - return e.complexity.PlatformHistory.Description(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Description(childComplexity), true case "PlatformHistory.displayID": - if e.complexity.PlatformHistory.DisplayID == nil { + if e.ComplexityRoot.PlatformHistory.DisplayID == nil { break } - return e.complexity.PlatformHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.DisplayID(childComplexity), true case "PlatformHistory.encryptionStatusID": - if e.complexity.PlatformHistory.EncryptionStatusID == nil { + if e.ComplexityRoot.PlatformHistory.EncryptionStatusID == nil { break } - return e.complexity.PlatformHistory.EncryptionStatusID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.EncryptionStatusID(childComplexity), true case "PlatformHistory.encryptionStatusName": - if e.complexity.PlatformHistory.EncryptionStatusName == nil { + if e.ComplexityRoot.PlatformHistory.EncryptionStatusName == nil { break } - return e.complexity.PlatformHistory.EncryptionStatusName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.EncryptionStatusName(childComplexity), true case "PlatformHistory.environmentID": - if e.complexity.PlatformHistory.EnvironmentID == nil { + if e.ComplexityRoot.PlatformHistory.EnvironmentID == nil { break } - return e.complexity.PlatformHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.EnvironmentID(childComplexity), true case "PlatformHistory.environmentName": - if e.complexity.PlatformHistory.EnvironmentName == nil { + if e.ComplexityRoot.PlatformHistory.EnvironmentName == nil { break } - return e.complexity.PlatformHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.EnvironmentName(childComplexity), true case "PlatformHistory.estimatedMonthlyCost": - if e.complexity.PlatformHistory.EstimatedMonthlyCost == nil { + if e.ComplexityRoot.PlatformHistory.EstimatedMonthlyCost == nil { break } - return e.complexity.PlatformHistory.EstimatedMonthlyCost(childComplexity), true + return e.ComplexityRoot.PlatformHistory.EstimatedMonthlyCost(childComplexity), true case "PlatformHistory.externalReferenceID": - if e.complexity.PlatformHistory.ExternalReferenceID == nil { + if e.ComplexityRoot.PlatformHistory.ExternalReferenceID == nil { break } - return e.complexity.PlatformHistory.ExternalReferenceID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.ExternalReferenceID(childComplexity), true case "PlatformHistory.historyTime": - if e.complexity.PlatformHistory.HistoryTime == nil { + if e.ComplexityRoot.PlatformHistory.HistoryTime == nil { break } - return e.complexity.PlatformHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.PlatformHistory.HistoryTime(childComplexity), true case "PlatformHistory.id": - if e.complexity.PlatformHistory.ID == nil { + if e.ComplexityRoot.PlatformHistory.ID == nil { break } - return e.complexity.PlatformHistory.ID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.ID(childComplexity), true case "PlatformHistory.internalOwner": - if e.complexity.PlatformHistory.InternalOwner == nil { + if e.ComplexityRoot.PlatformHistory.InternalOwner == nil { break } - return e.complexity.PlatformHistory.InternalOwner(childComplexity), true + return e.ComplexityRoot.PlatformHistory.InternalOwner(childComplexity), true case "PlatformHistory.internalOwnerGroupID": - if e.complexity.PlatformHistory.InternalOwnerGroupID == nil { + if e.ComplexityRoot.PlatformHistory.InternalOwnerGroupID == nil { break } - return e.complexity.PlatformHistory.InternalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.InternalOwnerGroupID(childComplexity), true case "PlatformHistory.internalOwnerUserID": - if e.complexity.PlatformHistory.InternalOwnerUserID == nil { + if e.ComplexityRoot.PlatformHistory.InternalOwnerUserID == nil { break } - return e.complexity.PlatformHistory.InternalOwnerUserID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.InternalOwnerUserID(childComplexity), true case "PlatformHistory.metadata": - if e.complexity.PlatformHistory.Metadata == nil { + if e.ComplexityRoot.PlatformHistory.Metadata == nil { break } - return e.complexity.PlatformHistory.Metadata(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Metadata(childComplexity), true case "PlatformHistory.name": - if e.complexity.PlatformHistory.Name == nil { + if e.ComplexityRoot.PlatformHistory.Name == nil { break } - return e.complexity.PlatformHistory.Name(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Name(childComplexity), true case "PlatformHistory.operation": - if e.complexity.PlatformHistory.Operation == nil { + if e.ComplexityRoot.PlatformHistory.Operation == nil { break } - return e.complexity.PlatformHistory.Operation(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Operation(childComplexity), true case "PlatformHistory.ownerID": - if e.complexity.PlatformHistory.OwnerID == nil { + if e.ComplexityRoot.PlatformHistory.OwnerID == nil { break } - return e.complexity.PlatformHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.OwnerID(childComplexity), true case "PlatformHistory.physicalLocation": - if e.complexity.PlatformHistory.PhysicalLocation == nil { + if e.ComplexityRoot.PlatformHistory.PhysicalLocation == nil { break } - return e.complexity.PlatformHistory.PhysicalLocation(childComplexity), true + return e.ComplexityRoot.PlatformHistory.PhysicalLocation(childComplexity), true case "PlatformHistory.platformDataClassificationID": - if e.complexity.PlatformHistory.PlatformDataClassificationID == nil { + if e.ComplexityRoot.PlatformHistory.PlatformDataClassificationID == nil { break } - return e.complexity.PlatformHistory.PlatformDataClassificationID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.PlatformDataClassificationID(childComplexity), true case "PlatformHistory.platformDataClassificationName": - if e.complexity.PlatformHistory.PlatformDataClassificationName == nil { + if e.ComplexityRoot.PlatformHistory.PlatformDataClassificationName == nil { break } - return e.complexity.PlatformHistory.PlatformDataClassificationName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.PlatformDataClassificationName(childComplexity), true case "PlatformHistory.platformKindID": - if e.complexity.PlatformHistory.PlatformKindID == nil { + if e.ComplexityRoot.PlatformHistory.PlatformKindID == nil { break } - return e.complexity.PlatformHistory.PlatformKindID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.PlatformKindID(childComplexity), true case "PlatformHistory.platformKindName": - if e.complexity.PlatformHistory.PlatformKindName == nil { + if e.ComplexityRoot.PlatformHistory.PlatformKindName == nil { break } - return e.complexity.PlatformHistory.PlatformKindName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.PlatformKindName(childComplexity), true case "PlatformHistory.platformOwnerID": - if e.complexity.PlatformHistory.PlatformOwnerID == nil { + if e.ComplexityRoot.PlatformHistory.PlatformOwnerID == nil { break } - return e.complexity.PlatformHistory.PlatformOwnerID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.PlatformOwnerID(childComplexity), true case "PlatformHistory.purchaseDate": - if e.complexity.PlatformHistory.PurchaseDate == nil { + if e.ComplexityRoot.PlatformHistory.PurchaseDate == nil { break } - return e.complexity.PlatformHistory.PurchaseDate(childComplexity), true + return e.ComplexityRoot.PlatformHistory.PurchaseDate(childComplexity), true case "PlatformHistory.ref": - if e.complexity.PlatformHistory.Ref == nil { + if e.ComplexityRoot.PlatformHistory.Ref == nil { break } - return e.complexity.PlatformHistory.Ref(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Ref(childComplexity), true case "PlatformHistory.region": - if e.complexity.PlatformHistory.Region == nil { + if e.ComplexityRoot.PlatformHistory.Region == nil { break } - return e.complexity.PlatformHistory.Region(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Region(childComplexity), true case "PlatformHistory.scopeID": - if e.complexity.PlatformHistory.ScopeID == nil { + if e.ComplexityRoot.PlatformHistory.ScopeID == nil { break } - return e.complexity.PlatformHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.ScopeID(childComplexity), true case "PlatformHistory.scopeName": - if e.complexity.PlatformHistory.ScopeName == nil { + if e.ComplexityRoot.PlatformHistory.ScopeName == nil { break } - return e.complexity.PlatformHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.ScopeName(childComplexity), true case "PlatformHistory.scopeStatement": - if e.complexity.PlatformHistory.ScopeStatement == nil { + if e.ComplexityRoot.PlatformHistory.ScopeStatement == nil { break } - return e.complexity.PlatformHistory.ScopeStatement(childComplexity), true + return e.ComplexityRoot.PlatformHistory.ScopeStatement(childComplexity), true case "PlatformHistory.securityOwner": - if e.complexity.PlatformHistory.SecurityOwner == nil { + if e.ComplexityRoot.PlatformHistory.SecurityOwner == nil { break } - return e.complexity.PlatformHistory.SecurityOwner(childComplexity), true + return e.ComplexityRoot.PlatformHistory.SecurityOwner(childComplexity), true case "PlatformHistory.securityOwnerGroupID": - if e.complexity.PlatformHistory.SecurityOwnerGroupID == nil { + if e.ComplexityRoot.PlatformHistory.SecurityOwnerGroupID == nil { break } - return e.complexity.PlatformHistory.SecurityOwnerGroupID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.SecurityOwnerGroupID(childComplexity), true case "PlatformHistory.securityOwnerUserID": - if e.complexity.PlatformHistory.SecurityOwnerUserID == nil { + if e.ComplexityRoot.PlatformHistory.SecurityOwnerUserID == nil { break } - return e.complexity.PlatformHistory.SecurityOwnerUserID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.SecurityOwnerUserID(childComplexity), true case "PlatformHistory.securityTierID": - if e.complexity.PlatformHistory.SecurityTierID == nil { + if e.ComplexityRoot.PlatformHistory.SecurityTierID == nil { break } - return e.complexity.PlatformHistory.SecurityTierID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.SecurityTierID(childComplexity), true case "PlatformHistory.securityTierName": - if e.complexity.PlatformHistory.SecurityTierName == nil { + if e.ComplexityRoot.PlatformHistory.SecurityTierName == nil { break } - return e.complexity.PlatformHistory.SecurityTierName(childComplexity), true + return e.ComplexityRoot.PlatformHistory.SecurityTierName(childComplexity), true case "PlatformHistory.sourceIdentifier": - if e.complexity.PlatformHistory.SourceIdentifier == nil { + if e.ComplexityRoot.PlatformHistory.SourceIdentifier == nil { break } - return e.complexity.PlatformHistory.SourceIdentifier(childComplexity), true + return e.ComplexityRoot.PlatformHistory.SourceIdentifier(childComplexity), true case "PlatformHistory.sourceType": - if e.complexity.PlatformHistory.SourceType == nil { + if e.ComplexityRoot.PlatformHistory.SourceType == nil { break } - return e.complexity.PlatformHistory.SourceType(childComplexity), true + return e.ComplexityRoot.PlatformHistory.SourceType(childComplexity), true case "PlatformHistory.status": - if e.complexity.PlatformHistory.Status == nil { + if e.ComplexityRoot.PlatformHistory.Status == nil { break } - return e.complexity.PlatformHistory.Status(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Status(childComplexity), true case "PlatformHistory.tags": - if e.complexity.PlatformHistory.Tags == nil { + if e.ComplexityRoot.PlatformHistory.Tags == nil { break } - return e.complexity.PlatformHistory.Tags(childComplexity), true + return e.ComplexityRoot.PlatformHistory.Tags(childComplexity), true case "PlatformHistory.technicalOwner": - if e.complexity.PlatformHistory.TechnicalOwner == nil { + if e.ComplexityRoot.PlatformHistory.TechnicalOwner == nil { break } - return e.complexity.PlatformHistory.TechnicalOwner(childComplexity), true + return e.ComplexityRoot.PlatformHistory.TechnicalOwner(childComplexity), true case "PlatformHistory.technicalOwnerGroupID": - if e.complexity.PlatformHistory.TechnicalOwnerGroupID == nil { + if e.ComplexityRoot.PlatformHistory.TechnicalOwnerGroupID == nil { break } - return e.complexity.PlatformHistory.TechnicalOwnerGroupID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.TechnicalOwnerGroupID(childComplexity), true case "PlatformHistory.technicalOwnerUserID": - if e.complexity.PlatformHistory.TechnicalOwnerUserID == nil { + if e.ComplexityRoot.PlatformHistory.TechnicalOwnerUserID == nil { break } - return e.complexity.PlatformHistory.TechnicalOwnerUserID(childComplexity), true + return e.ComplexityRoot.PlatformHistory.TechnicalOwnerUserID(childComplexity), true case "PlatformHistory.trustBoundaryDescription": - if e.complexity.PlatformHistory.TrustBoundaryDescription == nil { + if e.ComplexityRoot.PlatformHistory.TrustBoundaryDescription == nil { break } - return e.complexity.PlatformHistory.TrustBoundaryDescription(childComplexity), true + return e.ComplexityRoot.PlatformHistory.TrustBoundaryDescription(childComplexity), true case "PlatformHistory.updatedAt": - if e.complexity.PlatformHistory.UpdatedAt == nil { + if e.ComplexityRoot.PlatformHistory.UpdatedAt == nil { break } - return e.complexity.PlatformHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.PlatformHistory.UpdatedAt(childComplexity), true case "PlatformHistory.updatedBy": - if e.complexity.PlatformHistory.UpdatedBy == nil { + if e.ComplexityRoot.PlatformHistory.UpdatedBy == nil { break } - return e.complexity.PlatformHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.PlatformHistory.UpdatedBy(childComplexity), true case "PlatformHistory.workflowEligibleMarker": - if e.complexity.PlatformHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.PlatformHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.PlatformHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.PlatformHistory.WorkflowEligibleMarker(childComplexity), true case "PlatformHistoryConnection.edges": - if e.complexity.PlatformHistoryConnection.Edges == nil { + if e.ComplexityRoot.PlatformHistoryConnection.Edges == nil { break } - return e.complexity.PlatformHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.PlatformHistoryConnection.Edges(childComplexity), true case "PlatformHistoryConnection.pageInfo": - if e.complexity.PlatformHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.PlatformHistoryConnection.PageInfo == nil { break } - return e.complexity.PlatformHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.PlatformHistoryConnection.PageInfo(childComplexity), true case "PlatformHistoryConnection.totalCount": - if e.complexity.PlatformHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.PlatformHistoryConnection.TotalCount == nil { break } - return e.complexity.PlatformHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.PlatformHistoryConnection.TotalCount(childComplexity), true case "PlatformHistoryEdge.cursor": - if e.complexity.PlatformHistoryEdge.Cursor == nil { + if e.ComplexityRoot.PlatformHistoryEdge.Cursor == nil { break } - return e.complexity.PlatformHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.PlatformHistoryEdge.Cursor(childComplexity), true case "PlatformHistoryEdge.node": - if e.complexity.PlatformHistoryEdge.Node == nil { + if e.ComplexityRoot.PlatformHistoryEdge.Node == nil { break } - return e.complexity.PlatformHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.PlatformHistoryEdge.Node(childComplexity), true case "ProcedureHistory.approvalRequired": - if e.complexity.ProcedureHistory.ApprovalRequired == nil { + if e.ComplexityRoot.ProcedureHistory.ApprovalRequired == nil { break } - return e.complexity.ProcedureHistory.ApprovalRequired(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ApprovalRequired(childComplexity), true case "ProcedureHistory.approverID": - if e.complexity.ProcedureHistory.ApproverID == nil { + if e.ComplexityRoot.ProcedureHistory.ApproverID == nil { break } - return e.complexity.ProcedureHistory.ApproverID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ApproverID(childComplexity), true case "ProcedureHistory.controlSuggestions": - if e.complexity.ProcedureHistory.ControlSuggestions == nil { + if e.ComplexityRoot.ProcedureHistory.ControlSuggestions == nil { break } - return e.complexity.ProcedureHistory.ControlSuggestions(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ControlSuggestions(childComplexity), true case "ProcedureHistory.createdAt": - if e.complexity.ProcedureHistory.CreatedAt == nil { + if e.ComplexityRoot.ProcedureHistory.CreatedAt == nil { break } - return e.complexity.ProcedureHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.CreatedAt(childComplexity), true case "ProcedureHistory.createdBy": - if e.complexity.ProcedureHistory.CreatedBy == nil { + if e.ComplexityRoot.ProcedureHistory.CreatedBy == nil { break } - return e.complexity.ProcedureHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.CreatedBy(childComplexity), true case "ProcedureHistory.delegateID": - if e.complexity.ProcedureHistory.DelegateID == nil { + if e.ComplexityRoot.ProcedureHistory.DelegateID == nil { break } - return e.complexity.ProcedureHistory.DelegateID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.DelegateID(childComplexity), true case "ProcedureHistory.details": - if e.complexity.ProcedureHistory.Details == nil { + if e.ComplexityRoot.ProcedureHistory.Details == nil { break } - return e.complexity.ProcedureHistory.Details(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Details(childComplexity), true case "ProcedureHistory.detailsJSON": - if e.complexity.ProcedureHistory.DetailsJSON == nil { + if e.ComplexityRoot.ProcedureHistory.DetailsJSON == nil { break } - return e.complexity.ProcedureHistory.DetailsJSON(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.DetailsJSON(childComplexity), true case "ProcedureHistory.dismissedControlSuggestions": - if e.complexity.ProcedureHistory.DismissedControlSuggestions == nil { + if e.ComplexityRoot.ProcedureHistory.DismissedControlSuggestions == nil { break } - return e.complexity.ProcedureHistory.DismissedControlSuggestions(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.DismissedControlSuggestions(childComplexity), true case "ProcedureHistory.dismissedImprovementSuggestions": - if e.complexity.ProcedureHistory.DismissedImprovementSuggestions == nil { + if e.ComplexityRoot.ProcedureHistory.DismissedImprovementSuggestions == nil { break } - return e.complexity.ProcedureHistory.DismissedImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.DismissedImprovementSuggestions(childComplexity), true case "ProcedureHistory.dismissedTagSuggestions": - if e.complexity.ProcedureHistory.DismissedTagSuggestions == nil { + if e.ComplexityRoot.ProcedureHistory.DismissedTagSuggestions == nil { break } - return e.complexity.ProcedureHistory.DismissedTagSuggestions(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.DismissedTagSuggestions(childComplexity), true case "ProcedureHistory.displayID": - if e.complexity.ProcedureHistory.DisplayID == nil { + if e.ComplexityRoot.ProcedureHistory.DisplayID == nil { break } - return e.complexity.ProcedureHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.DisplayID(childComplexity), true case "ProcedureHistory.environmentID": - if e.complexity.ProcedureHistory.EnvironmentID == nil { + if e.ComplexityRoot.ProcedureHistory.EnvironmentID == nil { break } - return e.complexity.ProcedureHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.EnvironmentID(childComplexity), true case "ProcedureHistory.environmentName": - if e.complexity.ProcedureHistory.EnvironmentName == nil { + if e.ComplexityRoot.ProcedureHistory.EnvironmentName == nil { break } - return e.complexity.ProcedureHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.EnvironmentName(childComplexity), true case "ProcedureHistory.fileID": - if e.complexity.ProcedureHistory.FileID == nil { + if e.ComplexityRoot.ProcedureHistory.FileID == nil { break } - return e.complexity.ProcedureHistory.FileID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.FileID(childComplexity), true case "ProcedureHistory.historyTime": - if e.complexity.ProcedureHistory.HistoryTime == nil { + if e.ComplexityRoot.ProcedureHistory.HistoryTime == nil { break } - return e.complexity.ProcedureHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.HistoryTime(childComplexity), true case "ProcedureHistory.id": - if e.complexity.ProcedureHistory.ID == nil { + if e.ComplexityRoot.ProcedureHistory.ID == nil { break } - return e.complexity.ProcedureHistory.ID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ID(childComplexity), true case "ProcedureHistory.improvementSuggestions": - if e.complexity.ProcedureHistory.ImprovementSuggestions == nil { + if e.ComplexityRoot.ProcedureHistory.ImprovementSuggestions == nil { break } - return e.complexity.ProcedureHistory.ImprovementSuggestions(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ImprovementSuggestions(childComplexity), true case "ProcedureHistory.internalNotes": - if e.complexity.ProcedureHistory.InternalNotes == nil { + if e.ComplexityRoot.ProcedureHistory.InternalNotes == nil { break } - return e.complexity.ProcedureHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.InternalNotes(childComplexity), true case "ProcedureHistory.name": - if e.complexity.ProcedureHistory.Name == nil { + if e.ComplexityRoot.ProcedureHistory.Name == nil { break } - return e.complexity.ProcedureHistory.Name(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Name(childComplexity), true case "ProcedureHistory.operation": - if e.complexity.ProcedureHistory.Operation == nil { + if e.ComplexityRoot.ProcedureHistory.Operation == nil { break } - return e.complexity.ProcedureHistory.Operation(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Operation(childComplexity), true case "ProcedureHistory.ownerID": - if e.complexity.ProcedureHistory.OwnerID == nil { + if e.ComplexityRoot.ProcedureHistory.OwnerID == nil { break } - return e.complexity.ProcedureHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.OwnerID(childComplexity), true case "ProcedureHistory.procedureKindID": - if e.complexity.ProcedureHistory.ProcedureKindID == nil { + if e.ComplexityRoot.ProcedureHistory.ProcedureKindID == nil { break } - return e.complexity.ProcedureHistory.ProcedureKindID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ProcedureKindID(childComplexity), true case "ProcedureHistory.procedureKindName": - if e.complexity.ProcedureHistory.ProcedureKindName == nil { + if e.ComplexityRoot.ProcedureHistory.ProcedureKindName == nil { break } - return e.complexity.ProcedureHistory.ProcedureKindName(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ProcedureKindName(childComplexity), true case "ProcedureHistory.ref": - if e.complexity.ProcedureHistory.Ref == nil { + if e.ComplexityRoot.ProcedureHistory.Ref == nil { break } - return e.complexity.ProcedureHistory.Ref(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Ref(childComplexity), true case "ProcedureHistory.reviewDue": - if e.complexity.ProcedureHistory.ReviewDue == nil { + if e.ComplexityRoot.ProcedureHistory.ReviewDue == nil { break } - return e.complexity.ProcedureHistory.ReviewDue(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ReviewDue(childComplexity), true case "ProcedureHistory.reviewFrequency": - if e.complexity.ProcedureHistory.ReviewFrequency == nil { + if e.ComplexityRoot.ProcedureHistory.ReviewFrequency == nil { break } - return e.complexity.ProcedureHistory.ReviewFrequency(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ReviewFrequency(childComplexity), true case "ProcedureHistory.revision": - if e.complexity.ProcedureHistory.Revision == nil { + if e.ComplexityRoot.ProcedureHistory.Revision == nil { break } - return e.complexity.ProcedureHistory.Revision(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Revision(childComplexity), true case "ProcedureHistory.scopeID": - if e.complexity.ProcedureHistory.ScopeID == nil { + if e.ComplexityRoot.ProcedureHistory.ScopeID == nil { break } - return e.complexity.ProcedureHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ScopeID(childComplexity), true case "ProcedureHistory.scopeName": - if e.complexity.ProcedureHistory.ScopeName == nil { + if e.ComplexityRoot.ProcedureHistory.ScopeName == nil { break } - return e.complexity.ProcedureHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.ScopeName(childComplexity), true case "ProcedureHistory.status": - if e.complexity.ProcedureHistory.Status == nil { + if e.ComplexityRoot.ProcedureHistory.Status == nil { break } - return e.complexity.ProcedureHistory.Status(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Status(childComplexity), true case "ProcedureHistory.summary": - if e.complexity.ProcedureHistory.Summary == nil { + if e.ComplexityRoot.ProcedureHistory.Summary == nil { break } - return e.complexity.ProcedureHistory.Summary(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Summary(childComplexity), true case "ProcedureHistory.systemInternalID": - if e.complexity.ProcedureHistory.SystemInternalID == nil { + if e.ComplexityRoot.ProcedureHistory.SystemInternalID == nil { break } - return e.complexity.ProcedureHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.SystemInternalID(childComplexity), true case "ProcedureHistory.systemOwned": - if e.complexity.ProcedureHistory.SystemOwned == nil { + if e.ComplexityRoot.ProcedureHistory.SystemOwned == nil { break } - return e.complexity.ProcedureHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.SystemOwned(childComplexity), true case "ProcedureHistory.tagSuggestions": - if e.complexity.ProcedureHistory.TagSuggestions == nil { + if e.ComplexityRoot.ProcedureHistory.TagSuggestions == nil { break } - return e.complexity.ProcedureHistory.TagSuggestions(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.TagSuggestions(childComplexity), true case "ProcedureHistory.tags": - if e.complexity.ProcedureHistory.Tags == nil { + if e.ComplexityRoot.ProcedureHistory.Tags == nil { break } - return e.complexity.ProcedureHistory.Tags(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.Tags(childComplexity), true case "ProcedureHistory.url": - if e.complexity.ProcedureHistory.URL == nil { + if e.ComplexityRoot.ProcedureHistory.URL == nil { break } - return e.complexity.ProcedureHistory.URL(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.URL(childComplexity), true case "ProcedureHistory.updatedAt": - if e.complexity.ProcedureHistory.UpdatedAt == nil { + if e.ComplexityRoot.ProcedureHistory.UpdatedAt == nil { break } - return e.complexity.ProcedureHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.UpdatedAt(childComplexity), true case "ProcedureHistory.updatedBy": - if e.complexity.ProcedureHistory.UpdatedBy == nil { + if e.ComplexityRoot.ProcedureHistory.UpdatedBy == nil { break } - return e.complexity.ProcedureHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.UpdatedBy(childComplexity), true case "ProcedureHistory.workflowEligibleMarker": - if e.complexity.ProcedureHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.ProcedureHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.ProcedureHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.ProcedureHistory.WorkflowEligibleMarker(childComplexity), true case "ProcedureHistoryConnection.edges": - if e.complexity.ProcedureHistoryConnection.Edges == nil { + if e.ComplexityRoot.ProcedureHistoryConnection.Edges == nil { break } - return e.complexity.ProcedureHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ProcedureHistoryConnection.Edges(childComplexity), true case "ProcedureHistoryConnection.pageInfo": - if e.complexity.ProcedureHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ProcedureHistoryConnection.PageInfo == nil { break } - return e.complexity.ProcedureHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ProcedureHistoryConnection.PageInfo(childComplexity), true case "ProcedureHistoryConnection.totalCount": - if e.complexity.ProcedureHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ProcedureHistoryConnection.TotalCount == nil { break } - return e.complexity.ProcedureHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ProcedureHistoryConnection.TotalCount(childComplexity), true case "ProcedureHistoryEdge.cursor": - if e.complexity.ProcedureHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ProcedureHistoryEdge.Cursor == nil { break } - return e.complexity.ProcedureHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ProcedureHistoryEdge.Cursor(childComplexity), true case "ProcedureHistoryEdge.node": - if e.complexity.ProcedureHistoryEdge.Node == nil { + if e.ComplexityRoot.ProcedureHistoryEdge.Node == nil { break } - return e.complexity.ProcedureHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ProcedureHistoryEdge.Node(childComplexity), true case "ProgramHistory.auditFirm": - if e.complexity.ProgramHistory.AuditFirm == nil { + if e.ComplexityRoot.ProgramHistory.AuditFirm == nil { break } - return e.complexity.ProgramHistory.AuditFirm(childComplexity), true + return e.ComplexityRoot.ProgramHistory.AuditFirm(childComplexity), true case "ProgramHistory.auditor": - if e.complexity.ProgramHistory.Auditor == nil { + if e.ComplexityRoot.ProgramHistory.Auditor == nil { break } - return e.complexity.ProgramHistory.Auditor(childComplexity), true + return e.ComplexityRoot.ProgramHistory.Auditor(childComplexity), true case "ProgramHistory.auditorEmail": - if e.complexity.ProgramHistory.AuditorEmail == nil { + if e.ComplexityRoot.ProgramHistory.AuditorEmail == nil { break } - return e.complexity.ProgramHistory.AuditorEmail(childComplexity), true + return e.ComplexityRoot.ProgramHistory.AuditorEmail(childComplexity), true case "ProgramHistory.auditorReadComments": - if e.complexity.ProgramHistory.AuditorReadComments == nil { + if e.ComplexityRoot.ProgramHistory.AuditorReadComments == nil { break } - return e.complexity.ProgramHistory.AuditorReadComments(childComplexity), true + return e.ComplexityRoot.ProgramHistory.AuditorReadComments(childComplexity), true case "ProgramHistory.auditorReady": - if e.complexity.ProgramHistory.AuditorReady == nil { + if e.ComplexityRoot.ProgramHistory.AuditorReady == nil { break } - return e.complexity.ProgramHistory.AuditorReady(childComplexity), true + return e.ComplexityRoot.ProgramHistory.AuditorReady(childComplexity), true case "ProgramHistory.auditorWriteComments": - if e.complexity.ProgramHistory.AuditorWriteComments == nil { + if e.ComplexityRoot.ProgramHistory.AuditorWriteComments == nil { break } - return e.complexity.ProgramHistory.AuditorWriteComments(childComplexity), true + return e.ComplexityRoot.ProgramHistory.AuditorWriteComments(childComplexity), true case "ProgramHistory.createdAt": - if e.complexity.ProgramHistory.CreatedAt == nil { + if e.ComplexityRoot.ProgramHistory.CreatedAt == nil { break } - return e.complexity.ProgramHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ProgramHistory.CreatedAt(childComplexity), true case "ProgramHistory.createdBy": - if e.complexity.ProgramHistory.CreatedBy == nil { + if e.ComplexityRoot.ProgramHistory.CreatedBy == nil { break } - return e.complexity.ProgramHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ProgramHistory.CreatedBy(childComplexity), true case "ProgramHistory.description": - if e.complexity.ProgramHistory.Description == nil { + if e.ComplexityRoot.ProgramHistory.Description == nil { break } - return e.complexity.ProgramHistory.Description(childComplexity), true + return e.ComplexityRoot.ProgramHistory.Description(childComplexity), true case "ProgramHistory.displayID": - if e.complexity.ProgramHistory.DisplayID == nil { + if e.ComplexityRoot.ProgramHistory.DisplayID == nil { break } - return e.complexity.ProgramHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.ProgramHistory.DisplayID(childComplexity), true case "ProgramHistory.endDate": - if e.complexity.ProgramHistory.EndDate == nil { + if e.ComplexityRoot.ProgramHistory.EndDate == nil { break } - return e.complexity.ProgramHistory.EndDate(childComplexity), true + return e.ComplexityRoot.ProgramHistory.EndDate(childComplexity), true case "ProgramHistory.frameworkName": - if e.complexity.ProgramHistory.FrameworkName == nil { + if e.ComplexityRoot.ProgramHistory.FrameworkName == nil { break } - return e.complexity.ProgramHistory.FrameworkName(childComplexity), true + return e.ComplexityRoot.ProgramHistory.FrameworkName(childComplexity), true case "ProgramHistory.historyTime": - if e.complexity.ProgramHistory.HistoryTime == nil { + if e.ComplexityRoot.ProgramHistory.HistoryTime == nil { break } - return e.complexity.ProgramHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ProgramHistory.HistoryTime(childComplexity), true case "ProgramHistory.id": - if e.complexity.ProgramHistory.ID == nil { + if e.ComplexityRoot.ProgramHistory.ID == nil { break } - return e.complexity.ProgramHistory.ID(childComplexity), true + return e.ComplexityRoot.ProgramHistory.ID(childComplexity), true case "ProgramHistory.name": - if e.complexity.ProgramHistory.Name == nil { + if e.ComplexityRoot.ProgramHistory.Name == nil { break } - return e.complexity.ProgramHistory.Name(childComplexity), true + return e.ComplexityRoot.ProgramHistory.Name(childComplexity), true case "ProgramHistory.operation": - if e.complexity.ProgramHistory.Operation == nil { + if e.ComplexityRoot.ProgramHistory.Operation == nil { break } - return e.complexity.ProgramHistory.Operation(childComplexity), true + return e.ComplexityRoot.ProgramHistory.Operation(childComplexity), true case "ProgramHistory.ownerID": - if e.complexity.ProgramHistory.OwnerID == nil { + if e.ComplexityRoot.ProgramHistory.OwnerID == nil { break } - return e.complexity.ProgramHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ProgramHistory.OwnerID(childComplexity), true case "ProgramHistory.programKindID": - if e.complexity.ProgramHistory.ProgramKindID == nil { + if e.ComplexityRoot.ProgramHistory.ProgramKindID == nil { break } - return e.complexity.ProgramHistory.ProgramKindID(childComplexity), true + return e.ComplexityRoot.ProgramHistory.ProgramKindID(childComplexity), true case "ProgramHistory.programKindName": - if e.complexity.ProgramHistory.ProgramKindName == nil { + if e.ComplexityRoot.ProgramHistory.ProgramKindName == nil { break } - return e.complexity.ProgramHistory.ProgramKindName(childComplexity), true + return e.ComplexityRoot.ProgramHistory.ProgramKindName(childComplexity), true case "ProgramHistory.programOwnerID": - if e.complexity.ProgramHistory.ProgramOwnerID == nil { + if e.ComplexityRoot.ProgramHistory.ProgramOwnerID == nil { break } - return e.complexity.ProgramHistory.ProgramOwnerID(childComplexity), true + return e.ComplexityRoot.ProgramHistory.ProgramOwnerID(childComplexity), true case "ProgramHistory.ref": - if e.complexity.ProgramHistory.Ref == nil { + if e.ComplexityRoot.ProgramHistory.Ref == nil { break } - return e.complexity.ProgramHistory.Ref(childComplexity), true + return e.ComplexityRoot.ProgramHistory.Ref(childComplexity), true case "ProgramHistory.startDate": - if e.complexity.ProgramHistory.StartDate == nil { + if e.ComplexityRoot.ProgramHistory.StartDate == nil { break } - return e.complexity.ProgramHistory.StartDate(childComplexity), true + return e.ComplexityRoot.ProgramHistory.StartDate(childComplexity), true case "ProgramHistory.status": - if e.complexity.ProgramHistory.Status == nil { + if e.ComplexityRoot.ProgramHistory.Status == nil { break } - return e.complexity.ProgramHistory.Status(childComplexity), true + return e.ComplexityRoot.ProgramHistory.Status(childComplexity), true case "ProgramHistory.tags": - if e.complexity.ProgramHistory.Tags == nil { + if e.ComplexityRoot.ProgramHistory.Tags == nil { break } - return e.complexity.ProgramHistory.Tags(childComplexity), true + return e.ComplexityRoot.ProgramHistory.Tags(childComplexity), true case "ProgramHistory.updatedAt": - if e.complexity.ProgramHistory.UpdatedAt == nil { + if e.ComplexityRoot.ProgramHistory.UpdatedAt == nil { break } - return e.complexity.ProgramHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ProgramHistory.UpdatedAt(childComplexity), true case "ProgramHistory.updatedBy": - if e.complexity.ProgramHistory.UpdatedBy == nil { + if e.ComplexityRoot.ProgramHistory.UpdatedBy == nil { break } - return e.complexity.ProgramHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ProgramHistory.UpdatedBy(childComplexity), true case "ProgramHistoryConnection.edges": - if e.complexity.ProgramHistoryConnection.Edges == nil { + if e.ComplexityRoot.ProgramHistoryConnection.Edges == nil { break } - return e.complexity.ProgramHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ProgramHistoryConnection.Edges(childComplexity), true case "ProgramHistoryConnection.pageInfo": - if e.complexity.ProgramHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ProgramHistoryConnection.PageInfo == nil { break } - return e.complexity.ProgramHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ProgramHistoryConnection.PageInfo(childComplexity), true case "ProgramHistoryConnection.totalCount": - if e.complexity.ProgramHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ProgramHistoryConnection.TotalCount == nil { break } - return e.complexity.ProgramHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ProgramHistoryConnection.TotalCount(childComplexity), true case "ProgramHistoryEdge.cursor": - if e.complexity.ProgramHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ProgramHistoryEdge.Cursor == nil { break } - return e.complexity.ProgramHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ProgramHistoryEdge.Cursor(childComplexity), true case "ProgramHistoryEdge.node": - if e.complexity.ProgramHistoryEdge.Node == nil { + if e.ComplexityRoot.ProgramHistoryEdge.Node == nil { break } - return e.complexity.ProgramHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ProgramHistoryEdge.Node(childComplexity), true case "ProgramMembershipHistory.createdAt": - if e.complexity.ProgramMembershipHistory.CreatedAt == nil { + if e.ComplexityRoot.ProgramMembershipHistory.CreatedAt == nil { break } - return e.complexity.ProgramMembershipHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.CreatedAt(childComplexity), true case "ProgramMembershipHistory.createdBy": - if e.complexity.ProgramMembershipHistory.CreatedBy == nil { + if e.ComplexityRoot.ProgramMembershipHistory.CreatedBy == nil { break } - return e.complexity.ProgramMembershipHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.CreatedBy(childComplexity), true case "ProgramMembershipHistory.historyTime": - if e.complexity.ProgramMembershipHistory.HistoryTime == nil { + if e.ComplexityRoot.ProgramMembershipHistory.HistoryTime == nil { break } - return e.complexity.ProgramMembershipHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.HistoryTime(childComplexity), true case "ProgramMembershipHistory.id": - if e.complexity.ProgramMembershipHistory.ID == nil { + if e.ComplexityRoot.ProgramMembershipHistory.ID == nil { break } - return e.complexity.ProgramMembershipHistory.ID(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.ID(childComplexity), true case "ProgramMembershipHistory.operation": - if e.complexity.ProgramMembershipHistory.Operation == nil { + if e.ComplexityRoot.ProgramMembershipHistory.Operation == nil { break } - return e.complexity.ProgramMembershipHistory.Operation(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.Operation(childComplexity), true case "ProgramMembershipHistory.programID": - if e.complexity.ProgramMembershipHistory.ProgramID == nil { + if e.ComplexityRoot.ProgramMembershipHistory.ProgramID == nil { break } - return e.complexity.ProgramMembershipHistory.ProgramID(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.ProgramID(childComplexity), true case "ProgramMembershipHistory.ref": - if e.complexity.ProgramMembershipHistory.Ref == nil { + if e.ComplexityRoot.ProgramMembershipHistory.Ref == nil { break } - return e.complexity.ProgramMembershipHistory.Ref(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.Ref(childComplexity), true case "ProgramMembershipHistory.role": - if e.complexity.ProgramMembershipHistory.Role == nil { + if e.ComplexityRoot.ProgramMembershipHistory.Role == nil { break } - return e.complexity.ProgramMembershipHistory.Role(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.Role(childComplexity), true case "ProgramMembershipHistory.updatedAt": - if e.complexity.ProgramMembershipHistory.UpdatedAt == nil { + if e.ComplexityRoot.ProgramMembershipHistory.UpdatedAt == nil { break } - return e.complexity.ProgramMembershipHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.UpdatedAt(childComplexity), true case "ProgramMembershipHistory.updatedBy": - if e.complexity.ProgramMembershipHistory.UpdatedBy == nil { + if e.ComplexityRoot.ProgramMembershipHistory.UpdatedBy == nil { break } - return e.complexity.ProgramMembershipHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.UpdatedBy(childComplexity), true case "ProgramMembershipHistory.userID": - if e.complexity.ProgramMembershipHistory.UserID == nil { + if e.ComplexityRoot.ProgramMembershipHistory.UserID == nil { break } - return e.complexity.ProgramMembershipHistory.UserID(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistory.UserID(childComplexity), true case "ProgramMembershipHistoryConnection.edges": - if e.complexity.ProgramMembershipHistoryConnection.Edges == nil { + if e.ComplexityRoot.ProgramMembershipHistoryConnection.Edges == nil { break } - return e.complexity.ProgramMembershipHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistoryConnection.Edges(childComplexity), true case "ProgramMembershipHistoryConnection.pageInfo": - if e.complexity.ProgramMembershipHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ProgramMembershipHistoryConnection.PageInfo == nil { break } - return e.complexity.ProgramMembershipHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistoryConnection.PageInfo(childComplexity), true case "ProgramMembershipHistoryConnection.totalCount": - if e.complexity.ProgramMembershipHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ProgramMembershipHistoryConnection.TotalCount == nil { break } - return e.complexity.ProgramMembershipHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistoryConnection.TotalCount(childComplexity), true case "ProgramMembershipHistoryEdge.cursor": - if e.complexity.ProgramMembershipHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ProgramMembershipHistoryEdge.Cursor == nil { break } - return e.complexity.ProgramMembershipHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistoryEdge.Cursor(childComplexity), true case "ProgramMembershipHistoryEdge.node": - if e.complexity.ProgramMembershipHistoryEdge.Node == nil { + if e.ComplexityRoot.ProgramMembershipHistoryEdge.Node == nil { break } - return e.complexity.ProgramMembershipHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ProgramMembershipHistoryEdge.Node(childComplexity), true case "Query.actionPlanHistories": - if e.complexity.Query.ActionPlanHistories == nil { + if e.ComplexityRoot.Query.ActionPlanHistories == nil { break } @@ -13592,10 +13575,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ActionPlanHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ActionPlanHistoryOrder), args["where"].(*historygenerated.ActionPlanHistoryWhereInput)), true + return e.ComplexityRoot.Query.ActionPlanHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ActionPlanHistoryOrder), args["where"].(*historygenerated.ActionPlanHistoryWhereInput)), true case "Query.assessmentHistories": - if e.complexity.Query.AssessmentHistories == nil { + if e.ComplexityRoot.Query.AssessmentHistories == nil { break } @@ -13604,10 +13587,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssessmentHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.AssessmentHistoryOrder), args["where"].(*historygenerated.AssessmentHistoryWhereInput)), true + return e.ComplexityRoot.Query.AssessmentHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.AssessmentHistoryOrder), args["where"].(*historygenerated.AssessmentHistoryWhereInput)), true case "Query.assessmentResponseHistories": - if e.complexity.Query.AssessmentResponseHistories == nil { + if e.ComplexityRoot.Query.AssessmentResponseHistories == nil { break } @@ -13616,10 +13599,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssessmentResponseHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.AssessmentResponseHistoryOrder), args["where"].(*historygenerated.AssessmentResponseHistoryWhereInput)), true + return e.ComplexityRoot.Query.AssessmentResponseHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.AssessmentResponseHistoryOrder), args["where"].(*historygenerated.AssessmentResponseHistoryWhereInput)), true case "Query.assetHistories": - if e.complexity.Query.AssetHistories == nil { + if e.ComplexityRoot.Query.AssetHistories == nil { break } @@ -13628,10 +13611,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.AssetHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.AssetHistoryOrder), args["where"].(*historygenerated.AssetHistoryWhereInput)), true + return e.ComplexityRoot.Query.AssetHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.AssetHistoryOrder), args["where"].(*historygenerated.AssetHistoryWhereInput)), true case "Query.campaignHistories": - if e.complexity.Query.CampaignHistories == nil { + if e.ComplexityRoot.Query.CampaignHistories == nil { break } @@ -13640,10 +13623,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CampaignHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.CampaignHistoryOrder), args["where"].(*historygenerated.CampaignHistoryWhereInput)), true + return e.ComplexityRoot.Query.CampaignHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.CampaignHistoryOrder), args["where"].(*historygenerated.CampaignHistoryWhereInput)), true case "Query.campaignTargetHistories": - if e.complexity.Query.CampaignTargetHistories == nil { + if e.ComplexityRoot.Query.CampaignTargetHistories == nil { break } @@ -13652,10 +13635,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CampaignTargetHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.CampaignTargetHistoryOrder), args["where"].(*historygenerated.CampaignTargetHistoryWhereInput)), true + return e.ComplexityRoot.Query.CampaignTargetHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.CampaignTargetHistoryOrder), args["where"].(*historygenerated.CampaignTargetHistoryWhereInput)), true case "Query.contactHistories": - if e.complexity.Query.ContactHistories == nil { + if e.ComplexityRoot.Query.ContactHistories == nil { break } @@ -13664,10 +13647,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ContactHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ContactHistoryOrder), args["where"].(*historygenerated.ContactHistoryWhereInput)), true + return e.ComplexityRoot.Query.ContactHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ContactHistoryOrder), args["where"].(*historygenerated.ContactHistoryWhereInput)), true case "Query.controlHistories": - if e.complexity.Query.ControlHistories == nil { + if e.ComplexityRoot.Query.ControlHistories == nil { break } @@ -13676,10 +13659,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ControlHistoryOrder), args["where"].(*historygenerated.ControlHistoryWhereInput)), true + return e.ComplexityRoot.Query.ControlHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ControlHistoryOrder), args["where"].(*historygenerated.ControlHistoryWhereInput)), true case "Query.controlImplementationHistories": - if e.complexity.Query.ControlImplementationHistories == nil { + if e.ComplexityRoot.Query.ControlImplementationHistories == nil { break } @@ -13688,10 +13671,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlImplementationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ControlImplementationHistoryOrder), args["where"].(*historygenerated.ControlImplementationHistoryWhereInput)), true + return e.ComplexityRoot.Query.ControlImplementationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ControlImplementationHistoryOrder), args["where"].(*historygenerated.ControlImplementationHistoryWhereInput)), true case "Query.controlObjectiveHistories": - if e.complexity.Query.ControlObjectiveHistories == nil { + if e.ComplexityRoot.Query.ControlObjectiveHistories == nil { break } @@ -13700,10 +13683,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ControlObjectiveHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ControlObjectiveHistoryOrder), args["where"].(*historygenerated.ControlObjectiveHistoryWhereInput)), true + return e.ComplexityRoot.Query.ControlObjectiveHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ControlObjectiveHistoryOrder), args["where"].(*historygenerated.ControlObjectiveHistoryWhereInput)), true case "Query.customDomainHistories": - if e.complexity.Query.CustomDomainHistories == nil { + if e.ComplexityRoot.Query.CustomDomainHistories == nil { break } @@ -13712,10 +13695,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.CustomDomainHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.CustomDomainHistoryOrder), args["where"].(*historygenerated.CustomDomainHistoryWhereInput)), true + return e.ComplexityRoot.Query.CustomDomainHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.CustomDomainHistoryOrder), args["where"].(*historygenerated.CustomDomainHistoryWhereInput)), true case "Query.dnsVerificationHistories": - if e.complexity.Query.DNSVerificationHistories == nil { + if e.ComplexityRoot.Query.DNSVerificationHistories == nil { break } @@ -13724,10 +13707,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DNSVerificationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DNSVerificationHistoryOrder), args["where"].(*historygenerated.DNSVerificationHistoryWhereInput)), true + return e.ComplexityRoot.Query.DNSVerificationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DNSVerificationHistoryOrder), args["where"].(*historygenerated.DNSVerificationHistoryWhereInput)), true case "Query.directoryAccountHistories": - if e.complexity.Query.DirectoryAccountHistories == nil { + if e.ComplexityRoot.Query.DirectoryAccountHistories == nil { break } @@ -13736,10 +13719,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryAccountHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DirectoryAccountHistoryOrder), args["where"].(*historygenerated.DirectoryAccountHistoryWhereInput)), true + return e.ComplexityRoot.Query.DirectoryAccountHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DirectoryAccountHistoryOrder), args["where"].(*historygenerated.DirectoryAccountHistoryWhereInput)), true case "Query.directoryGroupHistories": - if e.complexity.Query.DirectoryGroupHistories == nil { + if e.ComplexityRoot.Query.DirectoryGroupHistories == nil { break } @@ -13748,10 +13731,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryGroupHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DirectoryGroupHistoryOrder), args["where"].(*historygenerated.DirectoryGroupHistoryWhereInput)), true + return e.ComplexityRoot.Query.DirectoryGroupHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DirectoryGroupHistoryOrder), args["where"].(*historygenerated.DirectoryGroupHistoryWhereInput)), true case "Query.directoryMembershipHistories": - if e.complexity.Query.DirectoryMembershipHistories == nil { + if e.ComplexityRoot.Query.DirectoryMembershipHistories == nil { break } @@ -13760,10 +13743,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DirectoryMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DirectoryMembershipHistoryOrder), args["where"].(*historygenerated.DirectoryMembershipHistoryWhereInput)), true + return e.ComplexityRoot.Query.DirectoryMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DirectoryMembershipHistoryOrder), args["where"].(*historygenerated.DirectoryMembershipHistoryWhereInput)), true case "Query.discussionHistories": - if e.complexity.Query.DiscussionHistories == nil { + if e.ComplexityRoot.Query.DiscussionHistories == nil { break } @@ -13772,10 +13755,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DiscussionHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DiscussionHistoryOrder), args["where"].(*historygenerated.DiscussionHistoryWhereInput)), true + return e.ComplexityRoot.Query.DiscussionHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DiscussionHistoryOrder), args["where"].(*historygenerated.DiscussionHistoryWhereInput)), true case "Query.documentDataHistories": - if e.complexity.Query.DocumentDataHistories == nil { + if e.ComplexityRoot.Query.DocumentDataHistories == nil { break } @@ -13784,10 +13767,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.DocumentDataHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DocumentDataHistoryOrder), args["where"].(*historygenerated.DocumentDataHistoryWhereInput)), true + return e.ComplexityRoot.Query.DocumentDataHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.DocumentDataHistoryOrder), args["where"].(*historygenerated.DocumentDataHistoryWhereInput)), true case "Query.emailBrandingHistories": - if e.complexity.Query.EmailBrandingHistories == nil { + if e.ComplexityRoot.Query.EmailBrandingHistories == nil { break } @@ -13796,10 +13779,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailBrandingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EmailBrandingHistoryOrder), args["where"].(*historygenerated.EmailBrandingHistoryWhereInput)), true + return e.ComplexityRoot.Query.EmailBrandingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EmailBrandingHistoryOrder), args["where"].(*historygenerated.EmailBrandingHistoryWhereInput)), true case "Query.emailTemplateHistories": - if e.complexity.Query.EmailTemplateHistories == nil { + if e.ComplexityRoot.Query.EmailTemplateHistories == nil { break } @@ -13808,10 +13791,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EmailTemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EmailTemplateHistoryOrder), args["where"].(*historygenerated.EmailTemplateHistoryWhereInput)), true + return e.ComplexityRoot.Query.EmailTemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EmailTemplateHistoryOrder), args["where"].(*historygenerated.EmailTemplateHistoryWhereInput)), true case "Query.entityHistories": - if e.complexity.Query.EntityHistories == nil { + if e.ComplexityRoot.Query.EntityHistories == nil { break } @@ -13820,10 +13803,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EntityHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EntityHistoryOrder), args["where"].(*historygenerated.EntityHistoryWhereInput)), true + return e.ComplexityRoot.Query.EntityHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EntityHistoryOrder), args["where"].(*historygenerated.EntityHistoryWhereInput)), true case "Query.entityTypeHistories": - if e.complexity.Query.EntityTypeHistories == nil { + if e.ComplexityRoot.Query.EntityTypeHistories == nil { break } @@ -13832,10 +13815,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EntityTypeHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EntityTypeHistoryOrder), args["where"].(*historygenerated.EntityTypeHistoryWhereInput)), true + return e.ComplexityRoot.Query.EntityTypeHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EntityTypeHistoryOrder), args["where"].(*historygenerated.EntityTypeHistoryWhereInput)), true case "Query.evidenceHistories": - if e.complexity.Query.EvidenceHistories == nil { + if e.ComplexityRoot.Query.EvidenceHistories == nil { break } @@ -13844,10 +13827,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.EvidenceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EvidenceHistoryOrder), args["where"].(*historygenerated.EvidenceHistoryWhereInput)), true + return e.ComplexityRoot.Query.EvidenceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.EvidenceHistoryOrder), args["where"].(*historygenerated.EvidenceHistoryWhereInput)), true case "Query.fileHistories": - if e.complexity.Query.FileHistories == nil { + if e.ComplexityRoot.Query.FileHistories == nil { break } @@ -13856,10 +13839,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.FileHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.FileHistoryOrder), args["where"].(*historygenerated.FileHistoryWhereInput)), true + return e.ComplexityRoot.Query.FileHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.FileHistoryOrder), args["where"].(*historygenerated.FileHistoryWhereInput)), true case "Query.findingControlHistories": - if e.complexity.Query.FindingControlHistories == nil { + if e.ComplexityRoot.Query.FindingControlHistories == nil { break } @@ -13868,10 +13851,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.FindingControlHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.FindingControlHistoryOrder), args["where"].(*historygenerated.FindingControlHistoryWhereInput)), true + return e.ComplexityRoot.Query.FindingControlHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.FindingControlHistoryOrder), args["where"].(*historygenerated.FindingControlHistoryWhereInput)), true case "Query.findingHistories": - if e.complexity.Query.FindingHistories == nil { + if e.ComplexityRoot.Query.FindingHistories == nil { break } @@ -13880,10 +13863,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.FindingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.FindingHistoryOrder), args["where"].(*historygenerated.FindingHistoryWhereInput)), true + return e.ComplexityRoot.Query.FindingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.FindingHistoryOrder), args["where"].(*historygenerated.FindingHistoryWhereInput)), true case "Query.groupHistories": - if e.complexity.Query.GroupHistories == nil { + if e.ComplexityRoot.Query.GroupHistories == nil { break } @@ -13892,10 +13875,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.GroupHistoryOrder), args["where"].(*historygenerated.GroupHistoryWhereInput)), true + return e.ComplexityRoot.Query.GroupHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.GroupHistoryOrder), args["where"].(*historygenerated.GroupHistoryWhereInput)), true case "Query.groupMembershipHistories": - if e.complexity.Query.GroupMembershipHistories == nil { + if e.ComplexityRoot.Query.GroupMembershipHistories == nil { break } @@ -13904,10 +13887,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.GroupMembershipHistoryOrder), args["where"].(*historygenerated.GroupMembershipHistoryWhereInput)), true + return e.ComplexityRoot.Query.GroupMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.GroupMembershipHistoryOrder), args["where"].(*historygenerated.GroupMembershipHistoryWhereInput)), true case "Query.groupSettingHistories": - if e.complexity.Query.GroupSettingHistories == nil { + if e.ComplexityRoot.Query.GroupSettingHistories == nil { break } @@ -13916,10 +13899,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.GroupSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.GroupSettingHistoryOrder), args["where"].(*historygenerated.GroupSettingHistoryWhereInput)), true + return e.ComplexityRoot.Query.GroupSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.GroupSettingHistoryOrder), args["where"].(*historygenerated.GroupSettingHistoryWhereInput)), true case "Query.hushHistories": - if e.complexity.Query.HushHistories == nil { + if e.ComplexityRoot.Query.HushHistories == nil { break } @@ -13928,10 +13911,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.HushHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.HushHistoryOrder), args["where"].(*historygenerated.HushHistoryWhereInput)), true + return e.ComplexityRoot.Query.HushHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.HushHistoryOrder), args["where"].(*historygenerated.HushHistoryWhereInput)), true case "Query.identityHolderHistories": - if e.complexity.Query.IdentityHolderHistories == nil { + if e.ComplexityRoot.Query.IdentityHolderHistories == nil { break } @@ -13940,10 +13923,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.IdentityHolderHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.IdentityHolderHistoryOrder), args["where"].(*historygenerated.IdentityHolderHistoryWhereInput)), true + return e.ComplexityRoot.Query.IdentityHolderHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.IdentityHolderHistoryOrder), args["where"].(*historygenerated.IdentityHolderHistoryWhereInput)), true case "Query.integrationHistories": - if e.complexity.Query.IntegrationHistories == nil { + if e.ComplexityRoot.Query.IntegrationHistories == nil { break } @@ -13952,10 +13935,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.IntegrationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.IntegrationHistoryOrder), args["where"].(*historygenerated.IntegrationHistoryWhereInput)), true + return e.ComplexityRoot.Query.IntegrationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.IntegrationHistoryOrder), args["where"].(*historygenerated.IntegrationHistoryWhereInput)), true case "Query.internalPolicyHistories": - if e.complexity.Query.InternalPolicyHistories == nil { + if e.ComplexityRoot.Query.InternalPolicyHistories == nil { break } @@ -13964,10 +13947,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.InternalPolicyHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.InternalPolicyHistoryOrder), args["where"].(*historygenerated.InternalPolicyHistoryWhereInput)), true + return e.ComplexityRoot.Query.InternalPolicyHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.InternalPolicyHistoryOrder), args["where"].(*historygenerated.InternalPolicyHistoryWhereInput)), true case "Query.jobTemplateHistories": - if e.complexity.Query.JobTemplateHistories == nil { + if e.ComplexityRoot.Query.JobTemplateHistories == nil { break } @@ -13976,10 +13959,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.JobTemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.JobTemplateHistoryOrder), args["where"].(*historygenerated.JobTemplateHistoryWhereInput)), true + return e.ComplexityRoot.Query.JobTemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.JobTemplateHistoryOrder), args["where"].(*historygenerated.JobTemplateHistoryWhereInput)), true case "Query.mappableDomainHistories": - if e.complexity.Query.MappableDomainHistories == nil { + if e.ComplexityRoot.Query.MappableDomainHistories == nil { break } @@ -13988,10 +13971,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.MappableDomainHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.MappableDomainHistoryOrder), args["where"].(*historygenerated.MappableDomainHistoryWhereInput)), true + return e.ComplexityRoot.Query.MappableDomainHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.MappableDomainHistoryOrder), args["where"].(*historygenerated.MappableDomainHistoryWhereInput)), true case "Query.mappedControlHistories": - if e.complexity.Query.MappedControlHistories == nil { + if e.ComplexityRoot.Query.MappedControlHistories == nil { break } @@ -14000,10 +13983,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.MappedControlHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.MappedControlHistoryOrder), args["where"].(*historygenerated.MappedControlHistoryWhereInput)), true + return e.ComplexityRoot.Query.MappedControlHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.MappedControlHistoryOrder), args["where"].(*historygenerated.MappedControlHistoryWhereInput)), true case "Query.narrativeHistories": - if e.complexity.Query.NarrativeHistories == nil { + if e.ComplexityRoot.Query.NarrativeHistories == nil { break } @@ -14012,10 +13995,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NarrativeHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NarrativeHistoryOrder), args["where"].(*historygenerated.NarrativeHistoryWhereInput)), true + return e.ComplexityRoot.Query.NarrativeHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NarrativeHistoryOrder), args["where"].(*historygenerated.NarrativeHistoryWhereInput)), true case "Query.node": - if e.complexity.Query.Node == nil { + if e.ComplexityRoot.Query.Node == nil { break } @@ -14024,10 +14007,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Node(childComplexity, args["id"].(string)), true + return e.ComplexityRoot.Query.Node(childComplexity, args["id"].(string)), true case "Query.nodes": - if e.complexity.Query.Nodes == nil { + if e.ComplexityRoot.Query.Nodes == nil { break } @@ -14036,10 +14019,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.Nodes(childComplexity, args["ids"].([]string)), true + return e.ComplexityRoot.Query.Nodes(childComplexity, args["ids"].([]string)), true case "Query.noteHistories": - if e.complexity.Query.NoteHistories == nil { + if e.ComplexityRoot.Query.NoteHistories == nil { break } @@ -14048,10 +14031,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NoteHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NoteHistoryOrder), args["where"].(*historygenerated.NoteHistoryWhereInput)), true + return e.ComplexityRoot.Query.NoteHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NoteHistoryOrder), args["where"].(*historygenerated.NoteHistoryWhereInput)), true case "Query.notificationPreferenceHistories": - if e.complexity.Query.NotificationPreferenceHistories == nil { + if e.ComplexityRoot.Query.NotificationPreferenceHistories == nil { break } @@ -14060,10 +14043,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NotificationPreferenceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NotificationPreferenceHistoryOrder), args["where"].(*historygenerated.NotificationPreferenceHistoryWhereInput)), true + return e.ComplexityRoot.Query.NotificationPreferenceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NotificationPreferenceHistoryOrder), args["where"].(*historygenerated.NotificationPreferenceHistoryWhereInput)), true case "Query.notificationTemplateHistories": - if e.complexity.Query.NotificationTemplateHistories == nil { + if e.ComplexityRoot.Query.NotificationTemplateHistories == nil { break } @@ -14072,10 +14055,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.NotificationTemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NotificationTemplateHistoryOrder), args["where"].(*historygenerated.NotificationTemplateHistoryWhereInput)), true + return e.ComplexityRoot.Query.NotificationTemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.NotificationTemplateHistoryOrder), args["where"].(*historygenerated.NotificationTemplateHistoryWhereInput)), true case "Query.orgMembershipHistories": - if e.complexity.Query.OrgMembershipHistories == nil { + if e.ComplexityRoot.Query.OrgMembershipHistories == nil { break } @@ -14084,10 +14067,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrgMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrgMembershipHistoryOrder), args["where"].(*historygenerated.OrgMembershipHistoryWhereInput)), true + return e.ComplexityRoot.Query.OrgMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrgMembershipHistoryOrder), args["where"].(*historygenerated.OrgMembershipHistoryWhereInput)), true case "Query.orgSubscriptionHistories": - if e.complexity.Query.OrgSubscriptionHistories == nil { + if e.ComplexityRoot.Query.OrgSubscriptionHistories == nil { break } @@ -14096,10 +14079,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrgSubscriptionHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrgSubscriptionHistoryOrder), args["where"].(*historygenerated.OrgSubscriptionHistoryWhereInput)), true + return e.ComplexityRoot.Query.OrgSubscriptionHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrgSubscriptionHistoryOrder), args["where"].(*historygenerated.OrgSubscriptionHistoryWhereInput)), true case "Query.organizationHistories": - if e.complexity.Query.OrganizationHistories == nil { + if e.ComplexityRoot.Query.OrganizationHistories == nil { break } @@ -14108,10 +14091,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrganizationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrganizationHistoryOrder), args["where"].(*historygenerated.OrganizationHistoryWhereInput)), true + return e.ComplexityRoot.Query.OrganizationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrganizationHistoryOrder), args["where"].(*historygenerated.OrganizationHistoryWhereInput)), true case "Query.organizationSettingHistories": - if e.complexity.Query.OrganizationSettingHistories == nil { + if e.ComplexityRoot.Query.OrganizationSettingHistories == nil { break } @@ -14120,10 +14103,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.OrganizationSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrganizationSettingHistoryOrder), args["where"].(*historygenerated.OrganizationSettingHistoryWhereInput)), true + return e.ComplexityRoot.Query.OrganizationSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.OrganizationSettingHistoryOrder), args["where"].(*historygenerated.OrganizationSettingHistoryWhereInput)), true case "Query.platformHistories": - if e.complexity.Query.PlatformHistories == nil { + if e.ComplexityRoot.Query.PlatformHistories == nil { break } @@ -14132,10 +14115,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.PlatformHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.PlatformHistoryOrder), args["where"].(*historygenerated.PlatformHistoryWhereInput)), true + return e.ComplexityRoot.Query.PlatformHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.PlatformHistoryOrder), args["where"].(*historygenerated.PlatformHistoryWhereInput)), true case "Query.procedureHistories": - if e.complexity.Query.ProcedureHistories == nil { + if e.ComplexityRoot.Query.ProcedureHistories == nil { break } @@ -14144,10 +14127,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ProcedureHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ProcedureHistoryOrder), args["where"].(*historygenerated.ProcedureHistoryWhereInput)), true + return e.ComplexityRoot.Query.ProcedureHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ProcedureHistoryOrder), args["where"].(*historygenerated.ProcedureHistoryWhereInput)), true case "Query.programHistories": - if e.complexity.Query.ProgramHistories == nil { + if e.ComplexityRoot.Query.ProgramHistories == nil { break } @@ -14156,10 +14139,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ProgramHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ProgramHistoryOrder), args["where"].(*historygenerated.ProgramHistoryWhereInput)), true + return e.ComplexityRoot.Query.ProgramHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ProgramHistoryOrder), args["where"].(*historygenerated.ProgramHistoryWhereInput)), true case "Query.programMembershipHistories": - if e.complexity.Query.ProgramMembershipHistories == nil { + if e.ComplexityRoot.Query.ProgramMembershipHistories == nil { break } @@ -14168,10 +14151,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ProgramMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ProgramMembershipHistoryOrder), args["where"].(*historygenerated.ProgramMembershipHistoryWhereInput)), true + return e.ComplexityRoot.Query.ProgramMembershipHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ProgramMembershipHistoryOrder), args["where"].(*historygenerated.ProgramMembershipHistoryWhereInput)), true case "Query.remediationHistories": - if e.complexity.Query.RemediationHistories == nil { + if e.ComplexityRoot.Query.RemediationHistories == nil { break } @@ -14180,10 +14163,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.RemediationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.RemediationHistoryOrder), args["where"].(*historygenerated.RemediationHistoryWhereInput)), true + return e.ComplexityRoot.Query.RemediationHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.RemediationHistoryOrder), args["where"].(*historygenerated.RemediationHistoryWhereInput)), true case "Query.reviewHistories": - if e.complexity.Query.ReviewHistories == nil { + if e.ComplexityRoot.Query.ReviewHistories == nil { break } @@ -14192,10 +14175,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ReviewHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ReviewHistoryOrder), args["where"].(*historygenerated.ReviewHistoryWhereInput)), true + return e.ComplexityRoot.Query.ReviewHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ReviewHistoryOrder), args["where"].(*historygenerated.ReviewHistoryWhereInput)), true case "Query.riskHistories": - if e.complexity.Query.RiskHistories == nil { + if e.ComplexityRoot.Query.RiskHistories == nil { break } @@ -14204,10 +14187,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.RiskHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.RiskHistoryOrder), args["where"].(*historygenerated.RiskHistoryWhereInput)), true + return e.ComplexityRoot.Query.RiskHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.RiskHistoryOrder), args["where"].(*historygenerated.RiskHistoryWhereInput)), true case "Query.scanHistories": - if e.complexity.Query.ScanHistories == nil { + if e.ComplexityRoot.Query.ScanHistories == nil { break } @@ -14216,10 +14199,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ScanHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ScanHistoryOrder), args["where"].(*historygenerated.ScanHistoryWhereInput)), true + return e.ComplexityRoot.Query.ScanHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ScanHistoryOrder), args["where"].(*historygenerated.ScanHistoryWhereInput)), true case "Query.scheduledJobHistories": - if e.complexity.Query.ScheduledJobHistories == nil { + if e.ComplexityRoot.Query.ScheduledJobHistories == nil { break } @@ -14228,10 +14211,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.ScheduledJobHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ScheduledJobHistoryOrder), args["where"].(*historygenerated.ScheduledJobHistoryWhereInput)), true + return e.ComplexityRoot.Query.ScheduledJobHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.ScheduledJobHistoryOrder), args["where"].(*historygenerated.ScheduledJobHistoryWhereInput)), true case "Query.standardHistories": - if e.complexity.Query.StandardHistories == nil { + if e.ComplexityRoot.Query.StandardHistories == nil { break } @@ -14240,10 +14223,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.StandardHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.StandardHistoryOrder), args["where"].(*historygenerated.StandardHistoryWhereInput)), true + return e.ComplexityRoot.Query.StandardHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.StandardHistoryOrder), args["where"].(*historygenerated.StandardHistoryWhereInput)), true case "Query.subcontrolHistories": - if e.complexity.Query.SubcontrolHistories == nil { + if e.ComplexityRoot.Query.SubcontrolHistories == nil { break } @@ -14252,10 +14235,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.SubcontrolHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.SubcontrolHistoryOrder), args["where"].(*historygenerated.SubcontrolHistoryWhereInput)), true + return e.ComplexityRoot.Query.SubcontrolHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.SubcontrolHistoryOrder), args["where"].(*historygenerated.SubcontrolHistoryWhereInput)), true case "Query.subprocessorHistories": - if e.complexity.Query.SubprocessorHistories == nil { + if e.ComplexityRoot.Query.SubprocessorHistories == nil { break } @@ -14264,10 +14247,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.SubprocessorHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.SubprocessorHistoryOrder), args["where"].(*historygenerated.SubprocessorHistoryWhereInput)), true + return e.ComplexityRoot.Query.SubprocessorHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.SubprocessorHistoryOrder), args["where"].(*historygenerated.SubprocessorHistoryWhereInput)), true case "Query.taskHistories": - if e.complexity.Query.TaskHistories == nil { + if e.ComplexityRoot.Query.TaskHistories == nil { break } @@ -14276,10 +14259,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TaskHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TaskHistoryOrder), args["where"].(*historygenerated.TaskHistoryWhereInput)), true + return e.ComplexityRoot.Query.TaskHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TaskHistoryOrder), args["where"].(*historygenerated.TaskHistoryWhereInput)), true case "Query.templateHistories": - if e.complexity.Query.TemplateHistories == nil { + if e.ComplexityRoot.Query.TemplateHistories == nil { break } @@ -14288,10 +14271,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TemplateHistoryOrder), args["where"].(*historygenerated.TemplateHistoryWhereInput)), true + return e.ComplexityRoot.Query.TemplateHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TemplateHistoryOrder), args["where"].(*historygenerated.TemplateHistoryWhereInput)), true case "Query.trustCenterComplianceHistories": - if e.complexity.Query.TrustCenterComplianceHistories == nil { + if e.ComplexityRoot.Query.TrustCenterComplianceHistories == nil { break } @@ -14300,10 +14283,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterComplianceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterComplianceHistoryOrder), args["where"].(*historygenerated.TrustCenterComplianceHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterComplianceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterComplianceHistoryOrder), args["where"].(*historygenerated.TrustCenterComplianceHistoryWhereInput)), true case "Query.trustCenterDocHistories": - if e.complexity.Query.TrustCenterDocHistories == nil { + if e.ComplexityRoot.Query.TrustCenterDocHistories == nil { break } @@ -14312,10 +14295,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterDocHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterDocHistoryOrder), args["where"].(*historygenerated.TrustCenterDocHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterDocHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterDocHistoryOrder), args["where"].(*historygenerated.TrustCenterDocHistoryWhereInput)), true case "Query.trustCenterEntityHistories": - if e.complexity.Query.TrustCenterEntityHistories == nil { + if e.ComplexityRoot.Query.TrustCenterEntityHistories == nil { break } @@ -14324,10 +14307,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterEntityHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterEntityHistoryOrder), args["where"].(*historygenerated.TrustCenterEntityHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterEntityHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterEntityHistoryOrder), args["where"].(*historygenerated.TrustCenterEntityHistoryWhereInput)), true case "Query.trustCenterFaqHistories": - if e.complexity.Query.TrustCenterFaqHistories == nil { + if e.ComplexityRoot.Query.TrustCenterFaqHistories == nil { break } @@ -14336,10 +14319,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterFaqHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterFAQHistoryOrder), args["where"].(*historygenerated.TrustCenterFAQHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterFaqHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterFAQHistoryOrder), args["where"].(*historygenerated.TrustCenterFAQHistoryWhereInput)), true case "Query.trustCenterHistories": - if e.complexity.Query.TrustCenterHistories == nil { + if e.ComplexityRoot.Query.TrustCenterHistories == nil { break } @@ -14348,10 +14331,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterHistoryOrder), args["where"].(*historygenerated.TrustCenterHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterHistoryOrder), args["where"].(*historygenerated.TrustCenterHistoryWhereInput)), true case "Query.trustCenterNdaRequestHistories": - if e.complexity.Query.TrustCenterNdaRequestHistories == nil { + if e.ComplexityRoot.Query.TrustCenterNdaRequestHistories == nil { break } @@ -14360,10 +14343,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterNdaRequestHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterNDARequestHistoryOrder), args["where"].(*historygenerated.TrustCenterNDARequestHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterNdaRequestHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterNDARequestHistoryOrder), args["where"].(*historygenerated.TrustCenterNDARequestHistoryWhereInput)), true case "Query.trustCenterSettingHistories": - if e.complexity.Query.TrustCenterSettingHistories == nil { + if e.ComplexityRoot.Query.TrustCenterSettingHistories == nil { break } @@ -14372,10 +14355,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterSettingHistoryOrder), args["where"].(*historygenerated.TrustCenterSettingHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterSettingHistoryOrder), args["where"].(*historygenerated.TrustCenterSettingHistoryWhereInput)), true case "Query.trustCenterSubprocessorHistories": - if e.complexity.Query.TrustCenterSubprocessorHistories == nil { + if e.ComplexityRoot.Query.TrustCenterSubprocessorHistories == nil { break } @@ -14384,10 +14367,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterSubprocessorHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterSubprocessorHistoryOrder), args["where"].(*historygenerated.TrustCenterSubprocessorHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterSubprocessorHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterSubprocessorHistoryOrder), args["where"].(*historygenerated.TrustCenterSubprocessorHistoryWhereInput)), true case "Query.trustCenterWatermarkConfigHistories": - if e.complexity.Query.TrustCenterWatermarkConfigHistories == nil { + if e.ComplexityRoot.Query.TrustCenterWatermarkConfigHistories == nil { break } @@ -14396,10 +14379,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.TrustCenterWatermarkConfigHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterWatermarkConfigHistoryOrder), args["where"].(*historygenerated.TrustCenterWatermarkConfigHistoryWhereInput)), true + return e.ComplexityRoot.Query.TrustCenterWatermarkConfigHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.TrustCenterWatermarkConfigHistoryOrder), args["where"].(*historygenerated.TrustCenterWatermarkConfigHistoryWhereInput)), true case "Query.userHistories": - if e.complexity.Query.UserHistories == nil { + if e.ComplexityRoot.Query.UserHistories == nil { break } @@ -14408,10 +14391,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.UserHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.UserHistoryOrder), args["where"].(*historygenerated.UserHistoryWhereInput)), true + return e.ComplexityRoot.Query.UserHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.UserHistoryOrder), args["where"].(*historygenerated.UserHistoryWhereInput)), true case "Query.userSettingHistories": - if e.complexity.Query.UserSettingHistories == nil { + if e.ComplexityRoot.Query.UserSettingHistories == nil { break } @@ -14420,10 +14403,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.UserSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.UserSettingHistoryOrder), args["where"].(*historygenerated.UserSettingHistoryWhereInput)), true + return e.ComplexityRoot.Query.UserSettingHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.UserSettingHistoryOrder), args["where"].(*historygenerated.UserSettingHistoryWhereInput)), true case "Query.vulnerabilityHistories": - if e.complexity.Query.VulnerabilityHistories == nil { + if e.ComplexityRoot.Query.VulnerabilityHistories == nil { break } @@ -14432,10 +14415,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.VulnerabilityHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.VulnerabilityHistoryOrder), args["where"].(*historygenerated.VulnerabilityHistoryWhereInput)), true + return e.ComplexityRoot.Query.VulnerabilityHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.VulnerabilityHistoryOrder), args["where"].(*historygenerated.VulnerabilityHistoryWhereInput)), true case "Query.workflowAssignmentHistories": - if e.complexity.Query.WorkflowAssignmentHistories == nil { + if e.ComplexityRoot.Query.WorkflowAssignmentHistories == nil { break } @@ -14444,10 +14427,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowAssignmentHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowAssignmentHistoryOrder), args["where"].(*historygenerated.WorkflowAssignmentHistoryWhereInput)), true + return e.ComplexityRoot.Query.WorkflowAssignmentHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowAssignmentHistoryOrder), args["where"].(*historygenerated.WorkflowAssignmentHistoryWhereInput)), true case "Query.workflowAssignmentTargetHistories": - if e.complexity.Query.WorkflowAssignmentTargetHistories == nil { + if e.ComplexityRoot.Query.WorkflowAssignmentTargetHistories == nil { break } @@ -14456,10 +14439,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowAssignmentTargetHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowAssignmentTargetHistoryOrder), args["where"].(*historygenerated.WorkflowAssignmentTargetHistoryWhereInput)), true + return e.ComplexityRoot.Query.WorkflowAssignmentTargetHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowAssignmentTargetHistoryOrder), args["where"].(*historygenerated.WorkflowAssignmentTargetHistoryWhereInput)), true case "Query.workflowDefinitionHistories": - if e.complexity.Query.WorkflowDefinitionHistories == nil { + if e.ComplexityRoot.Query.WorkflowDefinitionHistories == nil { break } @@ -14468,10 +14451,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowDefinitionHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowDefinitionHistoryOrder), args["where"].(*historygenerated.WorkflowDefinitionHistoryWhereInput)), true + return e.ComplexityRoot.Query.WorkflowDefinitionHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowDefinitionHistoryOrder), args["where"].(*historygenerated.WorkflowDefinitionHistoryWhereInput)), true case "Query.workflowEventHistories": - if e.complexity.Query.WorkflowEventHistories == nil { + if e.ComplexityRoot.Query.WorkflowEventHistories == nil { break } @@ -14480,10 +14463,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowEventHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowEventHistoryOrder), args["where"].(*historygenerated.WorkflowEventHistoryWhereInput)), true + return e.ComplexityRoot.Query.WorkflowEventHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowEventHistoryOrder), args["where"].(*historygenerated.WorkflowEventHistoryWhereInput)), true case "Query.workflowInstanceHistories": - if e.complexity.Query.WorkflowInstanceHistories == nil { + if e.ComplexityRoot.Query.WorkflowInstanceHistories == nil { break } @@ -14492,10 +14475,10 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowInstanceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowInstanceHistoryOrder), args["where"].(*historygenerated.WorkflowInstanceHistoryWhereInput)), true + return e.ComplexityRoot.Query.WorkflowInstanceHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowInstanceHistoryOrder), args["where"].(*historygenerated.WorkflowInstanceHistoryWhereInput)), true case "Query.workflowObjectRefHistories": - if e.complexity.Query.WorkflowObjectRefHistories == nil { + if e.ComplexityRoot.Query.WorkflowObjectRefHistories == nil { break } @@ -14504,5761 +14487,5761 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin return 0, false } - return e.complexity.Query.WorkflowObjectRefHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowObjectRefHistoryOrder), args["where"].(*historygenerated.WorkflowObjectRefHistoryWhereInput)), true + return e.ComplexityRoot.Query.WorkflowObjectRefHistories(childComplexity, args["after"].(*entgql.Cursor[string]), args["first"].(*int), args["before"].(*entgql.Cursor[string]), args["last"].(*int), args["orderBy"].(*historygenerated.WorkflowObjectRefHistoryOrder), args["where"].(*historygenerated.WorkflowObjectRefHistoryWhereInput)), true case "RemediationHistory.completedAt": - if e.complexity.RemediationHistory.CompletedAt == nil { + if e.ComplexityRoot.RemediationHistory.CompletedAt == nil { break } - return e.complexity.RemediationHistory.CompletedAt(childComplexity), true + return e.ComplexityRoot.RemediationHistory.CompletedAt(childComplexity), true case "RemediationHistory.createdAt": - if e.complexity.RemediationHistory.CreatedAt == nil { + if e.ComplexityRoot.RemediationHistory.CreatedAt == nil { break } - return e.complexity.RemediationHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.RemediationHistory.CreatedAt(childComplexity), true case "RemediationHistory.createdBy": - if e.complexity.RemediationHistory.CreatedBy == nil { + if e.ComplexityRoot.RemediationHistory.CreatedBy == nil { break } - return e.complexity.RemediationHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.RemediationHistory.CreatedBy(childComplexity), true case "RemediationHistory.displayID": - if e.complexity.RemediationHistory.DisplayID == nil { + if e.ComplexityRoot.RemediationHistory.DisplayID == nil { break } - return e.complexity.RemediationHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.DisplayID(childComplexity), true case "RemediationHistory.dueAt": - if e.complexity.RemediationHistory.DueAt == nil { + if e.ComplexityRoot.RemediationHistory.DueAt == nil { break } - return e.complexity.RemediationHistory.DueAt(childComplexity), true + return e.ComplexityRoot.RemediationHistory.DueAt(childComplexity), true case "RemediationHistory.environmentID": - if e.complexity.RemediationHistory.EnvironmentID == nil { + if e.ComplexityRoot.RemediationHistory.EnvironmentID == nil { break } - return e.complexity.RemediationHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.EnvironmentID(childComplexity), true case "RemediationHistory.environmentName": - if e.complexity.RemediationHistory.EnvironmentName == nil { + if e.ComplexityRoot.RemediationHistory.EnvironmentName == nil { break } - return e.complexity.RemediationHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.RemediationHistory.EnvironmentName(childComplexity), true case "RemediationHistory.error": - if e.complexity.RemediationHistory.Error == nil { + if e.ComplexityRoot.RemediationHistory.Error == nil { break } - return e.complexity.RemediationHistory.Error(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Error(childComplexity), true case "RemediationHistory.explanation": - if e.complexity.RemediationHistory.Explanation == nil { + if e.ComplexityRoot.RemediationHistory.Explanation == nil { break } - return e.complexity.RemediationHistory.Explanation(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Explanation(childComplexity), true case "RemediationHistory.externalID": - if e.complexity.RemediationHistory.ExternalID == nil { + if e.ComplexityRoot.RemediationHistory.ExternalID == nil { break } - return e.complexity.RemediationHistory.ExternalID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.ExternalID(childComplexity), true case "RemediationHistory.externalOwnerID": - if e.complexity.RemediationHistory.ExternalOwnerID == nil { + if e.ComplexityRoot.RemediationHistory.ExternalOwnerID == nil { break } - return e.complexity.RemediationHistory.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.ExternalOwnerID(childComplexity), true case "RemediationHistory.externalURI": - if e.complexity.RemediationHistory.ExternalURI == nil { + if e.ComplexityRoot.RemediationHistory.ExternalURI == nil { break } - return e.complexity.RemediationHistory.ExternalURI(childComplexity), true + return e.ComplexityRoot.RemediationHistory.ExternalURI(childComplexity), true case "RemediationHistory.historyTime": - if e.complexity.RemediationHistory.HistoryTime == nil { + if e.ComplexityRoot.RemediationHistory.HistoryTime == nil { break } - return e.complexity.RemediationHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.RemediationHistory.HistoryTime(childComplexity), true case "RemediationHistory.id": - if e.complexity.RemediationHistory.ID == nil { + if e.ComplexityRoot.RemediationHistory.ID == nil { break } - return e.complexity.RemediationHistory.ID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.ID(childComplexity), true case "RemediationHistory.instructions": - if e.complexity.RemediationHistory.Instructions == nil { + if e.ComplexityRoot.RemediationHistory.Instructions == nil { break } - return e.complexity.RemediationHistory.Instructions(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Instructions(childComplexity), true case "RemediationHistory.intent": - if e.complexity.RemediationHistory.Intent == nil { + if e.ComplexityRoot.RemediationHistory.Intent == nil { break } - return e.complexity.RemediationHistory.Intent(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Intent(childComplexity), true case "RemediationHistory.internalNotes": - if e.complexity.RemediationHistory.InternalNotes == nil { + if e.ComplexityRoot.RemediationHistory.InternalNotes == nil { break } - return e.complexity.RemediationHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.RemediationHistory.InternalNotes(childComplexity), true case "RemediationHistory.metadata": - if e.complexity.RemediationHistory.Metadata == nil { + if e.ComplexityRoot.RemediationHistory.Metadata == nil { break } - return e.complexity.RemediationHistory.Metadata(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Metadata(childComplexity), true case "RemediationHistory.operation": - if e.complexity.RemediationHistory.Operation == nil { + if e.ComplexityRoot.RemediationHistory.Operation == nil { break } - return e.complexity.RemediationHistory.Operation(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Operation(childComplexity), true case "RemediationHistory.ownerID": - if e.complexity.RemediationHistory.OwnerID == nil { + if e.ComplexityRoot.RemediationHistory.OwnerID == nil { break } - return e.complexity.RemediationHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.OwnerID(childComplexity), true case "RemediationHistory.ownerReference": - if e.complexity.RemediationHistory.OwnerReference == nil { + if e.ComplexityRoot.RemediationHistory.OwnerReference == nil { break } - return e.complexity.RemediationHistory.OwnerReference(childComplexity), true + return e.ComplexityRoot.RemediationHistory.OwnerReference(childComplexity), true case "RemediationHistory.prGeneratedAt": - if e.complexity.RemediationHistory.PrGeneratedAt == nil { + if e.ComplexityRoot.RemediationHistory.PrGeneratedAt == nil { break } - return e.complexity.RemediationHistory.PrGeneratedAt(childComplexity), true + return e.ComplexityRoot.RemediationHistory.PrGeneratedAt(childComplexity), true case "RemediationHistory.pullRequestURI": - if e.complexity.RemediationHistory.PullRequestURI == nil { + if e.ComplexityRoot.RemediationHistory.PullRequestURI == nil { break } - return e.complexity.RemediationHistory.PullRequestURI(childComplexity), true + return e.ComplexityRoot.RemediationHistory.PullRequestURI(childComplexity), true case "RemediationHistory.ref": - if e.complexity.RemediationHistory.Ref == nil { + if e.ComplexityRoot.RemediationHistory.Ref == nil { break } - return e.complexity.RemediationHistory.Ref(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Ref(childComplexity), true case "RemediationHistory.repositoryURI": - if e.complexity.RemediationHistory.RepositoryURI == nil { + if e.ComplexityRoot.RemediationHistory.RepositoryURI == nil { break } - return e.complexity.RemediationHistory.RepositoryURI(childComplexity), true + return e.ComplexityRoot.RemediationHistory.RepositoryURI(childComplexity), true case "RemediationHistory.scopeID": - if e.complexity.RemediationHistory.ScopeID == nil { + if e.ComplexityRoot.RemediationHistory.ScopeID == nil { break } - return e.complexity.RemediationHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.ScopeID(childComplexity), true case "RemediationHistory.scopeName": - if e.complexity.RemediationHistory.ScopeName == nil { + if e.ComplexityRoot.RemediationHistory.ScopeName == nil { break } - return e.complexity.RemediationHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.RemediationHistory.ScopeName(childComplexity), true case "RemediationHistory.source": - if e.complexity.RemediationHistory.Source == nil { + if e.ComplexityRoot.RemediationHistory.Source == nil { break } - return e.complexity.RemediationHistory.Source(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Source(childComplexity), true case "RemediationHistory.state": - if e.complexity.RemediationHistory.State == nil { + if e.ComplexityRoot.RemediationHistory.State == nil { break } - return e.complexity.RemediationHistory.State(childComplexity), true + return e.ComplexityRoot.RemediationHistory.State(childComplexity), true case "RemediationHistory.summary": - if e.complexity.RemediationHistory.Summary == nil { + if e.ComplexityRoot.RemediationHistory.Summary == nil { break } - return e.complexity.RemediationHistory.Summary(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Summary(childComplexity), true case "RemediationHistory.systemInternalID": - if e.complexity.RemediationHistory.SystemInternalID == nil { + if e.ComplexityRoot.RemediationHistory.SystemInternalID == nil { break } - return e.complexity.RemediationHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.RemediationHistory.SystemInternalID(childComplexity), true case "RemediationHistory.systemOwned": - if e.complexity.RemediationHistory.SystemOwned == nil { + if e.ComplexityRoot.RemediationHistory.SystemOwned == nil { break } - return e.complexity.RemediationHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.RemediationHistory.SystemOwned(childComplexity), true case "RemediationHistory.tags": - if e.complexity.RemediationHistory.Tags == nil { + if e.ComplexityRoot.RemediationHistory.Tags == nil { break } - return e.complexity.RemediationHistory.Tags(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Tags(childComplexity), true case "RemediationHistory.ticketReference": - if e.complexity.RemediationHistory.TicketReference == nil { + if e.ComplexityRoot.RemediationHistory.TicketReference == nil { break } - return e.complexity.RemediationHistory.TicketReference(childComplexity), true + return e.ComplexityRoot.RemediationHistory.TicketReference(childComplexity), true case "RemediationHistory.title": - if e.complexity.RemediationHistory.Title == nil { + if e.ComplexityRoot.RemediationHistory.Title == nil { break } - return e.complexity.RemediationHistory.Title(childComplexity), true + return e.ComplexityRoot.RemediationHistory.Title(childComplexity), true case "RemediationHistory.updatedAt": - if e.complexity.RemediationHistory.UpdatedAt == nil { + if e.ComplexityRoot.RemediationHistory.UpdatedAt == nil { break } - return e.complexity.RemediationHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.RemediationHistory.UpdatedAt(childComplexity), true case "RemediationHistory.updatedBy": - if e.complexity.RemediationHistory.UpdatedBy == nil { + if e.ComplexityRoot.RemediationHistory.UpdatedBy == nil { break } - return e.complexity.RemediationHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.RemediationHistory.UpdatedBy(childComplexity), true case "RemediationHistoryConnection.edges": - if e.complexity.RemediationHistoryConnection.Edges == nil { + if e.ComplexityRoot.RemediationHistoryConnection.Edges == nil { break } - return e.complexity.RemediationHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.RemediationHistoryConnection.Edges(childComplexity), true case "RemediationHistoryConnection.pageInfo": - if e.complexity.RemediationHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.RemediationHistoryConnection.PageInfo == nil { break } - return e.complexity.RemediationHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.RemediationHistoryConnection.PageInfo(childComplexity), true case "RemediationHistoryConnection.totalCount": - if e.complexity.RemediationHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.RemediationHistoryConnection.TotalCount == nil { break } - return e.complexity.RemediationHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.RemediationHistoryConnection.TotalCount(childComplexity), true case "RemediationHistoryEdge.cursor": - if e.complexity.RemediationHistoryEdge.Cursor == nil { + if e.ComplexityRoot.RemediationHistoryEdge.Cursor == nil { break } - return e.complexity.RemediationHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.RemediationHistoryEdge.Cursor(childComplexity), true case "RemediationHistoryEdge.node": - if e.complexity.RemediationHistoryEdge.Node == nil { + if e.ComplexityRoot.RemediationHistoryEdge.Node == nil { break } - return e.complexity.RemediationHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.RemediationHistoryEdge.Node(childComplexity), true case "ReviewHistory.approved": - if e.complexity.ReviewHistory.Approved == nil { + if e.ComplexityRoot.ReviewHistory.Approved == nil { break } - return e.complexity.ReviewHistory.Approved(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Approved(childComplexity), true case "ReviewHistory.approvedAt": - if e.complexity.ReviewHistory.ApprovedAt == nil { + if e.ComplexityRoot.ReviewHistory.ApprovedAt == nil { break } - return e.complexity.ReviewHistory.ApprovedAt(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ApprovedAt(childComplexity), true case "ReviewHistory.category": - if e.complexity.ReviewHistory.Category == nil { + if e.ComplexityRoot.ReviewHistory.Category == nil { break } - return e.complexity.ReviewHistory.Category(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Category(childComplexity), true case "ReviewHistory.classification": - if e.complexity.ReviewHistory.Classification == nil { + if e.ComplexityRoot.ReviewHistory.Classification == nil { break } - return e.complexity.ReviewHistory.Classification(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Classification(childComplexity), true case "ReviewHistory.createdAt": - if e.complexity.ReviewHistory.CreatedAt == nil { + if e.ComplexityRoot.ReviewHistory.CreatedAt == nil { break } - return e.complexity.ReviewHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ReviewHistory.CreatedAt(childComplexity), true case "ReviewHistory.createdBy": - if e.complexity.ReviewHistory.CreatedBy == nil { + if e.ComplexityRoot.ReviewHistory.CreatedBy == nil { break } - return e.complexity.ReviewHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ReviewHistory.CreatedBy(childComplexity), true case "ReviewHistory.details": - if e.complexity.ReviewHistory.Details == nil { + if e.ComplexityRoot.ReviewHistory.Details == nil { break } - return e.complexity.ReviewHistory.Details(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Details(childComplexity), true case "ReviewHistory.environmentID": - if e.complexity.ReviewHistory.EnvironmentID == nil { + if e.ComplexityRoot.ReviewHistory.EnvironmentID == nil { break } - return e.complexity.ReviewHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.EnvironmentID(childComplexity), true case "ReviewHistory.environmentName": - if e.complexity.ReviewHistory.EnvironmentName == nil { + if e.ComplexityRoot.ReviewHistory.EnvironmentName == nil { break } - return e.complexity.ReviewHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.ReviewHistory.EnvironmentName(childComplexity), true case "ReviewHistory.externalID": - if e.complexity.ReviewHistory.ExternalID == nil { + if e.ComplexityRoot.ReviewHistory.ExternalID == nil { break } - return e.complexity.ReviewHistory.ExternalID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ExternalID(childComplexity), true case "ReviewHistory.externalOwnerID": - if e.complexity.ReviewHistory.ExternalOwnerID == nil { + if e.ComplexityRoot.ReviewHistory.ExternalOwnerID == nil { break } - return e.complexity.ReviewHistory.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ExternalOwnerID(childComplexity), true case "ReviewHistory.externalURI": - if e.complexity.ReviewHistory.ExternalURI == nil { + if e.ComplexityRoot.ReviewHistory.ExternalURI == nil { break } - return e.complexity.ReviewHistory.ExternalURI(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ExternalURI(childComplexity), true case "ReviewHistory.historyTime": - if e.complexity.ReviewHistory.HistoryTime == nil { + if e.ComplexityRoot.ReviewHistory.HistoryTime == nil { break } - return e.complexity.ReviewHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ReviewHistory.HistoryTime(childComplexity), true case "ReviewHistory.id": - if e.complexity.ReviewHistory.ID == nil { + if e.ComplexityRoot.ReviewHistory.ID == nil { break } - return e.complexity.ReviewHistory.ID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ID(childComplexity), true case "ReviewHistory.internalNotes": - if e.complexity.ReviewHistory.InternalNotes == nil { + if e.ComplexityRoot.ReviewHistory.InternalNotes == nil { break } - return e.complexity.ReviewHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.ReviewHistory.InternalNotes(childComplexity), true case "ReviewHistory.metadata": - if e.complexity.ReviewHistory.Metadata == nil { + if e.ComplexityRoot.ReviewHistory.Metadata == nil { break } - return e.complexity.ReviewHistory.Metadata(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Metadata(childComplexity), true case "ReviewHistory.operation": - if e.complexity.ReviewHistory.Operation == nil { + if e.ComplexityRoot.ReviewHistory.Operation == nil { break } - return e.complexity.ReviewHistory.Operation(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Operation(childComplexity), true case "ReviewHistory.ownerID": - if e.complexity.ReviewHistory.OwnerID == nil { + if e.ComplexityRoot.ReviewHistory.OwnerID == nil { break } - return e.complexity.ReviewHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.OwnerID(childComplexity), true case "ReviewHistory.rawPayload": - if e.complexity.ReviewHistory.RawPayload == nil { + if e.ComplexityRoot.ReviewHistory.RawPayload == nil { break } - return e.complexity.ReviewHistory.RawPayload(childComplexity), true + return e.ComplexityRoot.ReviewHistory.RawPayload(childComplexity), true case "ReviewHistory.ref": - if e.complexity.ReviewHistory.Ref == nil { + if e.ComplexityRoot.ReviewHistory.Ref == nil { break } - return e.complexity.ReviewHistory.Ref(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Ref(childComplexity), true case "ReviewHistory.reportedAt": - if e.complexity.ReviewHistory.ReportedAt == nil { + if e.ComplexityRoot.ReviewHistory.ReportedAt == nil { break } - return e.complexity.ReviewHistory.ReportedAt(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ReportedAt(childComplexity), true case "ReviewHistory.reporter": - if e.complexity.ReviewHistory.Reporter == nil { + if e.ComplexityRoot.ReviewHistory.Reporter == nil { break } - return e.complexity.ReviewHistory.Reporter(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Reporter(childComplexity), true case "ReviewHistory.reviewedAt": - if e.complexity.ReviewHistory.ReviewedAt == nil { + if e.ComplexityRoot.ReviewHistory.ReviewedAt == nil { break } - return e.complexity.ReviewHistory.ReviewedAt(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ReviewedAt(childComplexity), true case "ReviewHistory.reviewerID": - if e.complexity.ReviewHistory.ReviewerID == nil { + if e.ComplexityRoot.ReviewHistory.ReviewerID == nil { break } - return e.complexity.ReviewHistory.ReviewerID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ReviewerID(childComplexity), true case "ReviewHistory.scopeID": - if e.complexity.ReviewHistory.ScopeID == nil { + if e.ComplexityRoot.ReviewHistory.ScopeID == nil { break } - return e.complexity.ReviewHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ScopeID(childComplexity), true case "ReviewHistory.scopeName": - if e.complexity.ReviewHistory.ScopeName == nil { + if e.ComplexityRoot.ReviewHistory.ScopeName == nil { break } - return e.complexity.ReviewHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.ReviewHistory.ScopeName(childComplexity), true case "ReviewHistory.source": - if e.complexity.ReviewHistory.Source == nil { + if e.ComplexityRoot.ReviewHistory.Source == nil { break } - return e.complexity.ReviewHistory.Source(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Source(childComplexity), true case "ReviewHistory.state": - if e.complexity.ReviewHistory.State == nil { + if e.ComplexityRoot.ReviewHistory.State == nil { break } - return e.complexity.ReviewHistory.State(childComplexity), true + return e.ComplexityRoot.ReviewHistory.State(childComplexity), true case "ReviewHistory.summary": - if e.complexity.ReviewHistory.Summary == nil { + if e.ComplexityRoot.ReviewHistory.Summary == nil { break } - return e.complexity.ReviewHistory.Summary(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Summary(childComplexity), true case "ReviewHistory.systemInternalID": - if e.complexity.ReviewHistory.SystemInternalID == nil { + if e.ComplexityRoot.ReviewHistory.SystemInternalID == nil { break } - return e.complexity.ReviewHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.ReviewHistory.SystemInternalID(childComplexity), true case "ReviewHistory.systemOwned": - if e.complexity.ReviewHistory.SystemOwned == nil { + if e.ComplexityRoot.ReviewHistory.SystemOwned == nil { break } - return e.complexity.ReviewHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.ReviewHistory.SystemOwned(childComplexity), true case "ReviewHistory.tags": - if e.complexity.ReviewHistory.Tags == nil { + if e.ComplexityRoot.ReviewHistory.Tags == nil { break } - return e.complexity.ReviewHistory.Tags(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Tags(childComplexity), true case "ReviewHistory.title": - if e.complexity.ReviewHistory.Title == nil { + if e.ComplexityRoot.ReviewHistory.Title == nil { break } - return e.complexity.ReviewHistory.Title(childComplexity), true + return e.ComplexityRoot.ReviewHistory.Title(childComplexity), true case "ReviewHistory.updatedAt": - if e.complexity.ReviewHistory.UpdatedAt == nil { + if e.ComplexityRoot.ReviewHistory.UpdatedAt == nil { break } - return e.complexity.ReviewHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ReviewHistory.UpdatedAt(childComplexity), true case "ReviewHistory.updatedBy": - if e.complexity.ReviewHistory.UpdatedBy == nil { + if e.ComplexityRoot.ReviewHistory.UpdatedBy == nil { break } - return e.complexity.ReviewHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ReviewHistory.UpdatedBy(childComplexity), true case "ReviewHistoryConnection.edges": - if e.complexity.ReviewHistoryConnection.Edges == nil { + if e.ComplexityRoot.ReviewHistoryConnection.Edges == nil { break } - return e.complexity.ReviewHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ReviewHistoryConnection.Edges(childComplexity), true case "ReviewHistoryConnection.pageInfo": - if e.complexity.ReviewHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ReviewHistoryConnection.PageInfo == nil { break } - return e.complexity.ReviewHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ReviewHistoryConnection.PageInfo(childComplexity), true case "ReviewHistoryConnection.totalCount": - if e.complexity.ReviewHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ReviewHistoryConnection.TotalCount == nil { break } - return e.complexity.ReviewHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ReviewHistoryConnection.TotalCount(childComplexity), true case "ReviewHistoryEdge.cursor": - if e.complexity.ReviewHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ReviewHistoryEdge.Cursor == nil { break } - return e.complexity.ReviewHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ReviewHistoryEdge.Cursor(childComplexity), true case "ReviewHistoryEdge.node": - if e.complexity.ReviewHistoryEdge.Node == nil { + if e.ComplexityRoot.ReviewHistoryEdge.Node == nil { break } - return e.complexity.ReviewHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ReviewHistoryEdge.Node(childComplexity), true case "RiskHistory.businessCosts": - if e.complexity.RiskHistory.BusinessCosts == nil { + if e.ComplexityRoot.RiskHistory.BusinessCosts == nil { break } - return e.complexity.RiskHistory.BusinessCosts(childComplexity), true + return e.ComplexityRoot.RiskHistory.BusinessCosts(childComplexity), true case "RiskHistory.businessCostsJSON": - if e.complexity.RiskHistory.BusinessCostsJSON == nil { + if e.ComplexityRoot.RiskHistory.BusinessCostsJSON == nil { break } - return e.complexity.RiskHistory.BusinessCostsJSON(childComplexity), true + return e.ComplexityRoot.RiskHistory.BusinessCostsJSON(childComplexity), true case "RiskHistory.createdAt": - if e.complexity.RiskHistory.CreatedAt == nil { + if e.ComplexityRoot.RiskHistory.CreatedAt == nil { break } - return e.complexity.RiskHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.RiskHistory.CreatedAt(childComplexity), true case "RiskHistory.createdBy": - if e.complexity.RiskHistory.CreatedBy == nil { + if e.ComplexityRoot.RiskHistory.CreatedBy == nil { break } - return e.complexity.RiskHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.RiskHistory.CreatedBy(childComplexity), true case "RiskHistory.delegateID": - if e.complexity.RiskHistory.DelegateID == nil { + if e.ComplexityRoot.RiskHistory.DelegateID == nil { break } - return e.complexity.RiskHistory.DelegateID(childComplexity), true + return e.ComplexityRoot.RiskHistory.DelegateID(childComplexity), true case "RiskHistory.details": - if e.complexity.RiskHistory.Details == nil { + if e.ComplexityRoot.RiskHistory.Details == nil { break } - return e.complexity.RiskHistory.Details(childComplexity), true + return e.ComplexityRoot.RiskHistory.Details(childComplexity), true case "RiskHistory.detailsJSON": - if e.complexity.RiskHistory.DetailsJSON == nil { + if e.ComplexityRoot.RiskHistory.DetailsJSON == nil { break } - return e.complexity.RiskHistory.DetailsJSON(childComplexity), true + return e.ComplexityRoot.RiskHistory.DetailsJSON(childComplexity), true case "RiskHistory.displayID": - if e.complexity.RiskHistory.DisplayID == nil { + if e.ComplexityRoot.RiskHistory.DisplayID == nil { break } - return e.complexity.RiskHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.RiskHistory.DisplayID(childComplexity), true case "RiskHistory.environmentID": - if e.complexity.RiskHistory.EnvironmentID == nil { + if e.ComplexityRoot.RiskHistory.EnvironmentID == nil { break } - return e.complexity.RiskHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.RiskHistory.EnvironmentID(childComplexity), true case "RiskHistory.environmentName": - if e.complexity.RiskHistory.EnvironmentName == nil { + if e.ComplexityRoot.RiskHistory.EnvironmentName == nil { break } - return e.complexity.RiskHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.RiskHistory.EnvironmentName(childComplexity), true case "RiskHistory.historyTime": - if e.complexity.RiskHistory.HistoryTime == nil { + if e.ComplexityRoot.RiskHistory.HistoryTime == nil { break } - return e.complexity.RiskHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.RiskHistory.HistoryTime(childComplexity), true case "RiskHistory.id": - if e.complexity.RiskHistory.ID == nil { + if e.ComplexityRoot.RiskHistory.ID == nil { break } - return e.complexity.RiskHistory.ID(childComplexity), true + return e.ComplexityRoot.RiskHistory.ID(childComplexity), true case "RiskHistory.impact": - if e.complexity.RiskHistory.Impact == nil { + if e.ComplexityRoot.RiskHistory.Impact == nil { break } - return e.complexity.RiskHistory.Impact(childComplexity), true + return e.ComplexityRoot.RiskHistory.Impact(childComplexity), true case "RiskHistory.likelihood": - if e.complexity.RiskHistory.Likelihood == nil { + if e.ComplexityRoot.RiskHistory.Likelihood == nil { break } - return e.complexity.RiskHistory.Likelihood(childComplexity), true + return e.ComplexityRoot.RiskHistory.Likelihood(childComplexity), true case "RiskHistory.mitigation": - if e.complexity.RiskHistory.Mitigation == nil { + if e.ComplexityRoot.RiskHistory.Mitigation == nil { break } - return e.complexity.RiskHistory.Mitigation(childComplexity), true + return e.ComplexityRoot.RiskHistory.Mitigation(childComplexity), true case "RiskHistory.mitigationJSON": - if e.complexity.RiskHistory.MitigationJSON == nil { + if e.ComplexityRoot.RiskHistory.MitigationJSON == nil { break } - return e.complexity.RiskHistory.MitigationJSON(childComplexity), true + return e.ComplexityRoot.RiskHistory.MitigationJSON(childComplexity), true case "RiskHistory.name": - if e.complexity.RiskHistory.Name == nil { + if e.ComplexityRoot.RiskHistory.Name == nil { break } - return e.complexity.RiskHistory.Name(childComplexity), true + return e.ComplexityRoot.RiskHistory.Name(childComplexity), true case "RiskHistory.operation": - if e.complexity.RiskHistory.Operation == nil { + if e.ComplexityRoot.RiskHistory.Operation == nil { break } - return e.complexity.RiskHistory.Operation(childComplexity), true + return e.ComplexityRoot.RiskHistory.Operation(childComplexity), true case "RiskHistory.ownerID": - if e.complexity.RiskHistory.OwnerID == nil { + if e.ComplexityRoot.RiskHistory.OwnerID == nil { break } - return e.complexity.RiskHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.RiskHistory.OwnerID(childComplexity), true case "RiskHistory.ref": - if e.complexity.RiskHistory.Ref == nil { + if e.ComplexityRoot.RiskHistory.Ref == nil { break } - return e.complexity.RiskHistory.Ref(childComplexity), true + return e.ComplexityRoot.RiskHistory.Ref(childComplexity), true case "RiskHistory.riskCategoryID": - if e.complexity.RiskHistory.RiskCategoryID == nil { + if e.ComplexityRoot.RiskHistory.RiskCategoryID == nil { break } - return e.complexity.RiskHistory.RiskCategoryID(childComplexity), true + return e.ComplexityRoot.RiskHistory.RiskCategoryID(childComplexity), true case "RiskHistory.riskCategoryName": - if e.complexity.RiskHistory.RiskCategoryName == nil { + if e.ComplexityRoot.RiskHistory.RiskCategoryName == nil { break } - return e.complexity.RiskHistory.RiskCategoryName(childComplexity), true + return e.ComplexityRoot.RiskHistory.RiskCategoryName(childComplexity), true case "RiskHistory.riskKindID": - if e.complexity.RiskHistory.RiskKindID == nil { + if e.ComplexityRoot.RiskHistory.RiskKindID == nil { break } - return e.complexity.RiskHistory.RiskKindID(childComplexity), true + return e.ComplexityRoot.RiskHistory.RiskKindID(childComplexity), true case "RiskHistory.riskKindName": - if e.complexity.RiskHistory.RiskKindName == nil { + if e.ComplexityRoot.RiskHistory.RiskKindName == nil { break } - return e.complexity.RiskHistory.RiskKindName(childComplexity), true + return e.ComplexityRoot.RiskHistory.RiskKindName(childComplexity), true case "RiskHistory.scopeID": - if e.complexity.RiskHistory.ScopeID == nil { + if e.ComplexityRoot.RiskHistory.ScopeID == nil { break } - return e.complexity.RiskHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.RiskHistory.ScopeID(childComplexity), true case "RiskHistory.scopeName": - if e.complexity.RiskHistory.ScopeName == nil { + if e.ComplexityRoot.RiskHistory.ScopeName == nil { break } - return e.complexity.RiskHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.RiskHistory.ScopeName(childComplexity), true case "RiskHistory.score": - if e.complexity.RiskHistory.Score == nil { + if e.ComplexityRoot.RiskHistory.Score == nil { break } - return e.complexity.RiskHistory.Score(childComplexity), true + return e.ComplexityRoot.RiskHistory.Score(childComplexity), true case "RiskHistory.stakeholderID": - if e.complexity.RiskHistory.StakeholderID == nil { + if e.ComplexityRoot.RiskHistory.StakeholderID == nil { break } - return e.complexity.RiskHistory.StakeholderID(childComplexity), true + return e.ComplexityRoot.RiskHistory.StakeholderID(childComplexity), true case "RiskHistory.status": - if e.complexity.RiskHistory.Status == nil { + if e.ComplexityRoot.RiskHistory.Status == nil { break } - return e.complexity.RiskHistory.Status(childComplexity), true + return e.ComplexityRoot.RiskHistory.Status(childComplexity), true case "RiskHistory.tags": - if e.complexity.RiskHistory.Tags == nil { + if e.ComplexityRoot.RiskHistory.Tags == nil { break } - return e.complexity.RiskHistory.Tags(childComplexity), true + return e.ComplexityRoot.RiskHistory.Tags(childComplexity), true case "RiskHistory.updatedAt": - if e.complexity.RiskHistory.UpdatedAt == nil { + if e.ComplexityRoot.RiskHistory.UpdatedAt == nil { break } - return e.complexity.RiskHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.RiskHistory.UpdatedAt(childComplexity), true case "RiskHistory.updatedBy": - if e.complexity.RiskHistory.UpdatedBy == nil { + if e.ComplexityRoot.RiskHistory.UpdatedBy == nil { break } - return e.complexity.RiskHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.RiskHistory.UpdatedBy(childComplexity), true case "RiskHistoryConnection.edges": - if e.complexity.RiskHistoryConnection.Edges == nil { + if e.ComplexityRoot.RiskHistoryConnection.Edges == nil { break } - return e.complexity.RiskHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.RiskHistoryConnection.Edges(childComplexity), true case "RiskHistoryConnection.pageInfo": - if e.complexity.RiskHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.RiskHistoryConnection.PageInfo == nil { break } - return e.complexity.RiskHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.RiskHistoryConnection.PageInfo(childComplexity), true case "RiskHistoryConnection.totalCount": - if e.complexity.RiskHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.RiskHistoryConnection.TotalCount == nil { break } - return e.complexity.RiskHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.RiskHistoryConnection.TotalCount(childComplexity), true case "RiskHistoryEdge.cursor": - if e.complexity.RiskHistoryEdge.Cursor == nil { + if e.ComplexityRoot.RiskHistoryEdge.Cursor == nil { break } - return e.complexity.RiskHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.RiskHistoryEdge.Cursor(childComplexity), true case "RiskHistoryEdge.node": - if e.complexity.RiskHistoryEdge.Node == nil { + if e.ComplexityRoot.RiskHistoryEdge.Node == nil { break } - return e.complexity.RiskHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.RiskHistoryEdge.Node(childComplexity), true case "ScanHistory.assignedTo": - if e.complexity.ScanHistory.AssignedTo == nil { + if e.ComplexityRoot.ScanHistory.AssignedTo == nil { break } - return e.complexity.ScanHistory.AssignedTo(childComplexity), true + return e.ComplexityRoot.ScanHistory.AssignedTo(childComplexity), true case "ScanHistory.assignedToGroupID": - if e.complexity.ScanHistory.AssignedToGroupID == nil { + if e.ComplexityRoot.ScanHistory.AssignedToGroupID == nil { break } - return e.complexity.ScanHistory.AssignedToGroupID(childComplexity), true + return e.ComplexityRoot.ScanHistory.AssignedToGroupID(childComplexity), true case "ScanHistory.assignedToUserID": - if e.complexity.ScanHistory.AssignedToUserID == nil { + if e.ComplexityRoot.ScanHistory.AssignedToUserID == nil { break } - return e.complexity.ScanHistory.AssignedToUserID(childComplexity), true + return e.ComplexityRoot.ScanHistory.AssignedToUserID(childComplexity), true case "ScanHistory.createdAt": - if e.complexity.ScanHistory.CreatedAt == nil { + if e.ComplexityRoot.ScanHistory.CreatedAt == nil { break } - return e.complexity.ScanHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ScanHistory.CreatedAt(childComplexity), true case "ScanHistory.createdBy": - if e.complexity.ScanHistory.CreatedBy == nil { + if e.ComplexityRoot.ScanHistory.CreatedBy == nil { break } - return e.complexity.ScanHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ScanHistory.CreatedBy(childComplexity), true case "ScanHistory.environmentID": - if e.complexity.ScanHistory.EnvironmentID == nil { + if e.ComplexityRoot.ScanHistory.EnvironmentID == nil { break } - return e.complexity.ScanHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.ScanHistory.EnvironmentID(childComplexity), true case "ScanHistory.environmentName": - if e.complexity.ScanHistory.EnvironmentName == nil { + if e.ComplexityRoot.ScanHistory.EnvironmentName == nil { break } - return e.complexity.ScanHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.ScanHistory.EnvironmentName(childComplexity), true case "ScanHistory.generatedByPlatformID": - if e.complexity.ScanHistory.GeneratedByPlatformID == nil { + if e.ComplexityRoot.ScanHistory.GeneratedByPlatformID == nil { break } - return e.complexity.ScanHistory.GeneratedByPlatformID(childComplexity), true + return e.ComplexityRoot.ScanHistory.GeneratedByPlatformID(childComplexity), true case "ScanHistory.historyTime": - if e.complexity.ScanHistory.HistoryTime == nil { + if e.ComplexityRoot.ScanHistory.HistoryTime == nil { break } - return e.complexity.ScanHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ScanHistory.HistoryTime(childComplexity), true case "ScanHistory.id": - if e.complexity.ScanHistory.ID == nil { + if e.ComplexityRoot.ScanHistory.ID == nil { break } - return e.complexity.ScanHistory.ID(childComplexity), true + return e.ComplexityRoot.ScanHistory.ID(childComplexity), true case "ScanHistory.metadata": - if e.complexity.ScanHistory.Metadata == nil { + if e.ComplexityRoot.ScanHistory.Metadata == nil { break } - return e.complexity.ScanHistory.Metadata(childComplexity), true + return e.ComplexityRoot.ScanHistory.Metadata(childComplexity), true case "ScanHistory.nextScanRunAt": - if e.complexity.ScanHistory.NextScanRunAt == nil { + if e.ComplexityRoot.ScanHistory.NextScanRunAt == nil { break } - return e.complexity.ScanHistory.NextScanRunAt(childComplexity), true + return e.ComplexityRoot.ScanHistory.NextScanRunAt(childComplexity), true case "ScanHistory.operation": - if e.complexity.ScanHistory.Operation == nil { + if e.ComplexityRoot.ScanHistory.Operation == nil { break } - return e.complexity.ScanHistory.Operation(childComplexity), true + return e.ComplexityRoot.ScanHistory.Operation(childComplexity), true case "ScanHistory.ownerID": - if e.complexity.ScanHistory.OwnerID == nil { + if e.ComplexityRoot.ScanHistory.OwnerID == nil { break } - return e.complexity.ScanHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ScanHistory.OwnerID(childComplexity), true case "ScanHistory.performedBy": - if e.complexity.ScanHistory.PerformedBy == nil { + if e.ComplexityRoot.ScanHistory.PerformedBy == nil { break } - return e.complexity.ScanHistory.PerformedBy(childComplexity), true + return e.ComplexityRoot.ScanHistory.PerformedBy(childComplexity), true case "ScanHistory.performedByGroupID": - if e.complexity.ScanHistory.PerformedByGroupID == nil { + if e.ComplexityRoot.ScanHistory.PerformedByGroupID == nil { break } - return e.complexity.ScanHistory.PerformedByGroupID(childComplexity), true + return e.ComplexityRoot.ScanHistory.PerformedByGroupID(childComplexity), true case "ScanHistory.performedByUserID": - if e.complexity.ScanHistory.PerformedByUserID == nil { + if e.ComplexityRoot.ScanHistory.PerformedByUserID == nil { break } - return e.complexity.ScanHistory.PerformedByUserID(childComplexity), true + return e.ComplexityRoot.ScanHistory.PerformedByUserID(childComplexity), true case "ScanHistory.ref": - if e.complexity.ScanHistory.Ref == nil { + if e.ComplexityRoot.ScanHistory.Ref == nil { break } - return e.complexity.ScanHistory.Ref(childComplexity), true + return e.ComplexityRoot.ScanHistory.Ref(childComplexity), true case "ScanHistory.reviewedBy": - if e.complexity.ScanHistory.ReviewedBy == nil { + if e.ComplexityRoot.ScanHistory.ReviewedBy == nil { break } - return e.complexity.ScanHistory.ReviewedBy(childComplexity), true + return e.ComplexityRoot.ScanHistory.ReviewedBy(childComplexity), true case "ScanHistory.reviewedByGroupID": - if e.complexity.ScanHistory.ReviewedByGroupID == nil { + if e.ComplexityRoot.ScanHistory.ReviewedByGroupID == nil { break } - return e.complexity.ScanHistory.ReviewedByGroupID(childComplexity), true + return e.ComplexityRoot.ScanHistory.ReviewedByGroupID(childComplexity), true case "ScanHistory.reviewedByUserID": - if e.complexity.ScanHistory.ReviewedByUserID == nil { + if e.ComplexityRoot.ScanHistory.ReviewedByUserID == nil { break } - return e.complexity.ScanHistory.ReviewedByUserID(childComplexity), true + return e.ComplexityRoot.ScanHistory.ReviewedByUserID(childComplexity), true case "ScanHistory.scanDate": - if e.complexity.ScanHistory.ScanDate == nil { + if e.ComplexityRoot.ScanHistory.ScanDate == nil { break } - return e.complexity.ScanHistory.ScanDate(childComplexity), true + return e.ComplexityRoot.ScanHistory.ScanDate(childComplexity), true case "ScanHistory.scanSchedule": - if e.complexity.ScanHistory.ScanSchedule == nil { + if e.ComplexityRoot.ScanHistory.ScanSchedule == nil { break } - return e.complexity.ScanHistory.ScanSchedule(childComplexity), true + return e.ComplexityRoot.ScanHistory.ScanSchedule(childComplexity), true case "ScanHistory.scanType": - if e.complexity.ScanHistory.ScanType == nil { + if e.ComplexityRoot.ScanHistory.ScanType == nil { break } - return e.complexity.ScanHistory.ScanType(childComplexity), true + return e.ComplexityRoot.ScanHistory.ScanType(childComplexity), true case "ScanHistory.scopeID": - if e.complexity.ScanHistory.ScopeID == nil { + if e.ComplexityRoot.ScanHistory.ScopeID == nil { break } - return e.complexity.ScanHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.ScanHistory.ScopeID(childComplexity), true case "ScanHistory.scopeName": - if e.complexity.ScanHistory.ScopeName == nil { + if e.ComplexityRoot.ScanHistory.ScopeName == nil { break } - return e.complexity.ScanHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.ScanHistory.ScopeName(childComplexity), true case "ScanHistory.status": - if e.complexity.ScanHistory.Status == nil { + if e.ComplexityRoot.ScanHistory.Status == nil { break } - return e.complexity.ScanHistory.Status(childComplexity), true + return e.ComplexityRoot.ScanHistory.Status(childComplexity), true case "ScanHistory.tags": - if e.complexity.ScanHistory.Tags == nil { + if e.ComplexityRoot.ScanHistory.Tags == nil { break } - return e.complexity.ScanHistory.Tags(childComplexity), true + return e.ComplexityRoot.ScanHistory.Tags(childComplexity), true case "ScanHistory.target": - if e.complexity.ScanHistory.Target == nil { + if e.ComplexityRoot.ScanHistory.Target == nil { break } - return e.complexity.ScanHistory.Target(childComplexity), true + return e.ComplexityRoot.ScanHistory.Target(childComplexity), true case "ScanHistory.updatedAt": - if e.complexity.ScanHistory.UpdatedAt == nil { + if e.ComplexityRoot.ScanHistory.UpdatedAt == nil { break } - return e.complexity.ScanHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ScanHistory.UpdatedAt(childComplexity), true case "ScanHistory.updatedBy": - if e.complexity.ScanHistory.UpdatedBy == nil { + if e.ComplexityRoot.ScanHistory.UpdatedBy == nil { break } - return e.complexity.ScanHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ScanHistory.UpdatedBy(childComplexity), true case "ScanHistory.vulnerabilityIds": - if e.complexity.ScanHistory.VulnerabilityIds == nil { + if e.ComplexityRoot.ScanHistory.VulnerabilityIds == nil { break } - return e.complexity.ScanHistory.VulnerabilityIds(childComplexity), true + return e.ComplexityRoot.ScanHistory.VulnerabilityIds(childComplexity), true case "ScanHistoryConnection.edges": - if e.complexity.ScanHistoryConnection.Edges == nil { + if e.ComplexityRoot.ScanHistoryConnection.Edges == nil { break } - return e.complexity.ScanHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ScanHistoryConnection.Edges(childComplexity), true case "ScanHistoryConnection.pageInfo": - if e.complexity.ScanHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ScanHistoryConnection.PageInfo == nil { break } - return e.complexity.ScanHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ScanHistoryConnection.PageInfo(childComplexity), true case "ScanHistoryConnection.totalCount": - if e.complexity.ScanHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ScanHistoryConnection.TotalCount == nil { break } - return e.complexity.ScanHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ScanHistoryConnection.TotalCount(childComplexity), true case "ScanHistoryEdge.cursor": - if e.complexity.ScanHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ScanHistoryEdge.Cursor == nil { break } - return e.complexity.ScanHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ScanHistoryEdge.Cursor(childComplexity), true case "ScanHistoryEdge.node": - if e.complexity.ScanHistoryEdge.Node == nil { + if e.ComplexityRoot.ScanHistoryEdge.Node == nil { break } - return e.complexity.ScanHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ScanHistoryEdge.Node(childComplexity), true case "ScheduledJobHistory.active": - if e.complexity.ScheduledJobHistory.Active == nil { + if e.ComplexityRoot.ScheduledJobHistory.Active == nil { break } - return e.complexity.ScheduledJobHistory.Active(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.Active(childComplexity), true case "ScheduledJobHistory.configuration": - if e.complexity.ScheduledJobHistory.Configuration == nil { + if e.ComplexityRoot.ScheduledJobHistory.Configuration == nil { break } - return e.complexity.ScheduledJobHistory.Configuration(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.Configuration(childComplexity), true case "ScheduledJobHistory.createdAt": - if e.complexity.ScheduledJobHistory.CreatedAt == nil { + if e.ComplexityRoot.ScheduledJobHistory.CreatedAt == nil { break } - return e.complexity.ScheduledJobHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.CreatedAt(childComplexity), true case "ScheduledJobHistory.createdBy": - if e.complexity.ScheduledJobHistory.CreatedBy == nil { + if e.ComplexityRoot.ScheduledJobHistory.CreatedBy == nil { break } - return e.complexity.ScheduledJobHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.CreatedBy(childComplexity), true case "ScheduledJobHistory.cron": - if e.complexity.ScheduledJobHistory.Cron == nil { + if e.ComplexityRoot.ScheduledJobHistory.Cron == nil { break } - return e.complexity.ScheduledJobHistory.Cron(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.Cron(childComplexity), true case "ScheduledJobHistory.displayID": - if e.complexity.ScheduledJobHistory.DisplayID == nil { + if e.ComplexityRoot.ScheduledJobHistory.DisplayID == nil { break } - return e.complexity.ScheduledJobHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.DisplayID(childComplexity), true case "ScheduledJobHistory.historyTime": - if e.complexity.ScheduledJobHistory.HistoryTime == nil { + if e.ComplexityRoot.ScheduledJobHistory.HistoryTime == nil { break } - return e.complexity.ScheduledJobHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.HistoryTime(childComplexity), true case "ScheduledJobHistory.id": - if e.complexity.ScheduledJobHistory.ID == nil { + if e.ComplexityRoot.ScheduledJobHistory.ID == nil { break } - return e.complexity.ScheduledJobHistory.ID(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.ID(childComplexity), true case "ScheduledJobHistory.jobID": - if e.complexity.ScheduledJobHistory.JobID == nil { + if e.ComplexityRoot.ScheduledJobHistory.JobID == nil { break } - return e.complexity.ScheduledJobHistory.JobID(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.JobID(childComplexity), true case "ScheduledJobHistory.jobRunnerID": - if e.complexity.ScheduledJobHistory.JobRunnerID == nil { + if e.ComplexityRoot.ScheduledJobHistory.JobRunnerID == nil { break } - return e.complexity.ScheduledJobHistory.JobRunnerID(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.JobRunnerID(childComplexity), true case "ScheduledJobHistory.operation": - if e.complexity.ScheduledJobHistory.Operation == nil { + if e.ComplexityRoot.ScheduledJobHistory.Operation == nil { break } - return e.complexity.ScheduledJobHistory.Operation(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.Operation(childComplexity), true case "ScheduledJobHistory.ownerID": - if e.complexity.ScheduledJobHistory.OwnerID == nil { + if e.ComplexityRoot.ScheduledJobHistory.OwnerID == nil { break } - return e.complexity.ScheduledJobHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.OwnerID(childComplexity), true case "ScheduledJobHistory.ref": - if e.complexity.ScheduledJobHistory.Ref == nil { + if e.ComplexityRoot.ScheduledJobHistory.Ref == nil { break } - return e.complexity.ScheduledJobHistory.Ref(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.Ref(childComplexity), true case "ScheduledJobHistory.updatedAt": - if e.complexity.ScheduledJobHistory.UpdatedAt == nil { + if e.ComplexityRoot.ScheduledJobHistory.UpdatedAt == nil { break } - return e.complexity.ScheduledJobHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.UpdatedAt(childComplexity), true case "ScheduledJobHistory.updatedBy": - if e.complexity.ScheduledJobHistory.UpdatedBy == nil { + if e.ComplexityRoot.ScheduledJobHistory.UpdatedBy == nil { break } - return e.complexity.ScheduledJobHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistory.UpdatedBy(childComplexity), true case "ScheduledJobHistoryConnection.edges": - if e.complexity.ScheduledJobHistoryConnection.Edges == nil { + if e.ComplexityRoot.ScheduledJobHistoryConnection.Edges == nil { break } - return e.complexity.ScheduledJobHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistoryConnection.Edges(childComplexity), true case "ScheduledJobHistoryConnection.pageInfo": - if e.complexity.ScheduledJobHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.ScheduledJobHistoryConnection.PageInfo == nil { break } - return e.complexity.ScheduledJobHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistoryConnection.PageInfo(childComplexity), true case "ScheduledJobHistoryConnection.totalCount": - if e.complexity.ScheduledJobHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.ScheduledJobHistoryConnection.TotalCount == nil { break } - return e.complexity.ScheduledJobHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistoryConnection.TotalCount(childComplexity), true case "ScheduledJobHistoryEdge.cursor": - if e.complexity.ScheduledJobHistoryEdge.Cursor == nil { + if e.ComplexityRoot.ScheduledJobHistoryEdge.Cursor == nil { break } - return e.complexity.ScheduledJobHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistoryEdge.Cursor(childComplexity), true case "ScheduledJobHistoryEdge.node": - if e.complexity.ScheduledJobHistoryEdge.Node == nil { + if e.ComplexityRoot.ScheduledJobHistoryEdge.Node == nil { break } - return e.complexity.ScheduledJobHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.ScheduledJobHistoryEdge.Node(childComplexity), true case "StandardHistory.createdAt": - if e.complexity.StandardHistory.CreatedAt == nil { + if e.ComplexityRoot.StandardHistory.CreatedAt == nil { break } - return e.complexity.StandardHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.StandardHistory.CreatedAt(childComplexity), true case "StandardHistory.createdBy": - if e.complexity.StandardHistory.CreatedBy == nil { + if e.ComplexityRoot.StandardHistory.CreatedBy == nil { break } - return e.complexity.StandardHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.StandardHistory.CreatedBy(childComplexity), true case "StandardHistory.description": - if e.complexity.StandardHistory.Description == nil { + if e.ComplexityRoot.StandardHistory.Description == nil { break } - return e.complexity.StandardHistory.Description(childComplexity), true + return e.ComplexityRoot.StandardHistory.Description(childComplexity), true case "StandardHistory.domains": - if e.complexity.StandardHistory.Domains == nil { + if e.ComplexityRoot.StandardHistory.Domains == nil { break } - return e.complexity.StandardHistory.Domains(childComplexity), true + return e.ComplexityRoot.StandardHistory.Domains(childComplexity), true case "StandardHistory.framework": - if e.complexity.StandardHistory.Framework == nil { + if e.ComplexityRoot.StandardHistory.Framework == nil { break } - return e.complexity.StandardHistory.Framework(childComplexity), true + return e.ComplexityRoot.StandardHistory.Framework(childComplexity), true case "StandardHistory.freeToUse": - if e.complexity.StandardHistory.FreeToUse == nil { + if e.ComplexityRoot.StandardHistory.FreeToUse == nil { break } - return e.complexity.StandardHistory.FreeToUse(childComplexity), true + return e.ComplexityRoot.StandardHistory.FreeToUse(childComplexity), true case "StandardHistory.governingBody": - if e.complexity.StandardHistory.GoverningBody == nil { + if e.ComplexityRoot.StandardHistory.GoverningBody == nil { break } - return e.complexity.StandardHistory.GoverningBody(childComplexity), true + return e.ComplexityRoot.StandardHistory.GoverningBody(childComplexity), true case "StandardHistory.governingBodyLogoURL": - if e.complexity.StandardHistory.GoverningBodyLogoURL == nil { + if e.ComplexityRoot.StandardHistory.GoverningBodyLogoURL == nil { break } - return e.complexity.StandardHistory.GoverningBodyLogoURL(childComplexity), true + return e.ComplexityRoot.StandardHistory.GoverningBodyLogoURL(childComplexity), true case "StandardHistory.historyTime": - if e.complexity.StandardHistory.HistoryTime == nil { + if e.ComplexityRoot.StandardHistory.HistoryTime == nil { break } - return e.complexity.StandardHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.StandardHistory.HistoryTime(childComplexity), true case "StandardHistory.id": - if e.complexity.StandardHistory.ID == nil { + if e.ComplexityRoot.StandardHistory.ID == nil { break } - return e.complexity.StandardHistory.ID(childComplexity), true + return e.ComplexityRoot.StandardHistory.ID(childComplexity), true case "StandardHistory.internalNotes": - if e.complexity.StandardHistory.InternalNotes == nil { + if e.ComplexityRoot.StandardHistory.InternalNotes == nil { break } - return e.complexity.StandardHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.StandardHistory.InternalNotes(childComplexity), true case "StandardHistory.isPublic": - if e.complexity.StandardHistory.IsPublic == nil { + if e.ComplexityRoot.StandardHistory.IsPublic == nil { break } - return e.complexity.StandardHistory.IsPublic(childComplexity), true + return e.ComplexityRoot.StandardHistory.IsPublic(childComplexity), true case "StandardHistory.link": - if e.complexity.StandardHistory.Link == nil { + if e.ComplexityRoot.StandardHistory.Link == nil { break } - return e.complexity.StandardHistory.Link(childComplexity), true + return e.ComplexityRoot.StandardHistory.Link(childComplexity), true case "StandardHistory.logoFileID": - if e.complexity.StandardHistory.LogoFileID == nil { + if e.ComplexityRoot.StandardHistory.LogoFileID == nil { break } - return e.complexity.StandardHistory.LogoFileID(childComplexity), true + return e.ComplexityRoot.StandardHistory.LogoFileID(childComplexity), true case "StandardHistory.name": - if e.complexity.StandardHistory.Name == nil { + if e.ComplexityRoot.StandardHistory.Name == nil { break } - return e.complexity.StandardHistory.Name(childComplexity), true + return e.ComplexityRoot.StandardHistory.Name(childComplexity), true case "StandardHistory.operation": - if e.complexity.StandardHistory.Operation == nil { + if e.ComplexityRoot.StandardHistory.Operation == nil { break } - return e.complexity.StandardHistory.Operation(childComplexity), true + return e.ComplexityRoot.StandardHistory.Operation(childComplexity), true case "StandardHistory.ownerID": - if e.complexity.StandardHistory.OwnerID == nil { + if e.ComplexityRoot.StandardHistory.OwnerID == nil { break } - return e.complexity.StandardHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.StandardHistory.OwnerID(childComplexity), true case "StandardHistory.ref": - if e.complexity.StandardHistory.Ref == nil { + if e.ComplexityRoot.StandardHistory.Ref == nil { break } - return e.complexity.StandardHistory.Ref(childComplexity), true + return e.ComplexityRoot.StandardHistory.Ref(childComplexity), true case "StandardHistory.revision": - if e.complexity.StandardHistory.Revision == nil { + if e.ComplexityRoot.StandardHistory.Revision == nil { break } - return e.complexity.StandardHistory.Revision(childComplexity), true + return e.ComplexityRoot.StandardHistory.Revision(childComplexity), true case "StandardHistory.shortName": - if e.complexity.StandardHistory.ShortName == nil { + if e.ComplexityRoot.StandardHistory.ShortName == nil { break } - return e.complexity.StandardHistory.ShortName(childComplexity), true + return e.ComplexityRoot.StandardHistory.ShortName(childComplexity), true case "StandardHistory.standardType": - if e.complexity.StandardHistory.StandardType == nil { + if e.ComplexityRoot.StandardHistory.StandardType == nil { break } - return e.complexity.StandardHistory.StandardType(childComplexity), true + return e.ComplexityRoot.StandardHistory.StandardType(childComplexity), true case "StandardHistory.status": - if e.complexity.StandardHistory.Status == nil { + if e.ComplexityRoot.StandardHistory.Status == nil { break } - return e.complexity.StandardHistory.Status(childComplexity), true + return e.ComplexityRoot.StandardHistory.Status(childComplexity), true case "StandardHistory.systemInternalID": - if e.complexity.StandardHistory.SystemInternalID == nil { + if e.ComplexityRoot.StandardHistory.SystemInternalID == nil { break } - return e.complexity.StandardHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.StandardHistory.SystemInternalID(childComplexity), true case "StandardHistory.systemOwned": - if e.complexity.StandardHistory.SystemOwned == nil { + if e.ComplexityRoot.StandardHistory.SystemOwned == nil { break } - return e.complexity.StandardHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.StandardHistory.SystemOwned(childComplexity), true case "StandardHistory.tags": - if e.complexity.StandardHistory.Tags == nil { + if e.ComplexityRoot.StandardHistory.Tags == nil { break } - return e.complexity.StandardHistory.Tags(childComplexity), true + return e.ComplexityRoot.StandardHistory.Tags(childComplexity), true case "StandardHistory.updatedAt": - if e.complexity.StandardHistory.UpdatedAt == nil { + if e.ComplexityRoot.StandardHistory.UpdatedAt == nil { break } - return e.complexity.StandardHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.StandardHistory.UpdatedAt(childComplexity), true case "StandardHistory.updatedBy": - if e.complexity.StandardHistory.UpdatedBy == nil { + if e.ComplexityRoot.StandardHistory.UpdatedBy == nil { break } - return e.complexity.StandardHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.StandardHistory.UpdatedBy(childComplexity), true case "StandardHistory.version": - if e.complexity.StandardHistory.Version == nil { + if e.ComplexityRoot.StandardHistory.Version == nil { break } - return e.complexity.StandardHistory.Version(childComplexity), true + return e.ComplexityRoot.StandardHistory.Version(childComplexity), true case "StandardHistoryConnection.edges": - if e.complexity.StandardHistoryConnection.Edges == nil { + if e.ComplexityRoot.StandardHistoryConnection.Edges == nil { break } - return e.complexity.StandardHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.StandardHistoryConnection.Edges(childComplexity), true case "StandardHistoryConnection.pageInfo": - if e.complexity.StandardHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.StandardHistoryConnection.PageInfo == nil { break } - return e.complexity.StandardHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.StandardHistoryConnection.PageInfo(childComplexity), true case "StandardHistoryConnection.totalCount": - if e.complexity.StandardHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.StandardHistoryConnection.TotalCount == nil { break } - return e.complexity.StandardHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.StandardHistoryConnection.TotalCount(childComplexity), true case "StandardHistoryEdge.cursor": - if e.complexity.StandardHistoryEdge.Cursor == nil { + if e.ComplexityRoot.StandardHistoryEdge.Cursor == nil { break } - return e.complexity.StandardHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.StandardHistoryEdge.Cursor(childComplexity), true case "StandardHistoryEdge.node": - if e.complexity.StandardHistoryEdge.Node == nil { + if e.ComplexityRoot.StandardHistoryEdge.Node == nil { break } - return e.complexity.StandardHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.StandardHistoryEdge.Node(childComplexity), true case "SubcontrolHistory.aliases": - if e.complexity.SubcontrolHistory.Aliases == nil { + if e.ComplexityRoot.SubcontrolHistory.Aliases == nil { break } - return e.complexity.SubcontrolHistory.Aliases(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Aliases(childComplexity), true case "SubcontrolHistory.assessmentMethods": - if e.complexity.SubcontrolHistory.AssessmentMethods == nil { + if e.ComplexityRoot.SubcontrolHistory.AssessmentMethods == nil { break } - return e.complexity.SubcontrolHistory.AssessmentMethods(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.AssessmentMethods(childComplexity), true case "SubcontrolHistory.assessmentObjectives": - if e.complexity.SubcontrolHistory.AssessmentObjectives == nil { + if e.ComplexityRoot.SubcontrolHistory.AssessmentObjectives == nil { break } - return e.complexity.SubcontrolHistory.AssessmentObjectives(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.AssessmentObjectives(childComplexity), true case "SubcontrolHistory.auditorReferenceID": - if e.complexity.SubcontrolHistory.AuditorReferenceID == nil { + if e.ComplexityRoot.SubcontrolHistory.AuditorReferenceID == nil { break } - return e.complexity.SubcontrolHistory.AuditorReferenceID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.AuditorReferenceID(childComplexity), true case "SubcontrolHistory.category": - if e.complexity.SubcontrolHistory.Category == nil { + if e.ComplexityRoot.SubcontrolHistory.Category == nil { break } - return e.complexity.SubcontrolHistory.Category(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Category(childComplexity), true case "SubcontrolHistory.categoryID": - if e.complexity.SubcontrolHistory.CategoryID == nil { + if e.ComplexityRoot.SubcontrolHistory.CategoryID == nil { break } - return e.complexity.SubcontrolHistory.CategoryID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.CategoryID(childComplexity), true case "SubcontrolHistory.controlID": - if e.complexity.SubcontrolHistory.ControlID == nil { + if e.ComplexityRoot.SubcontrolHistory.ControlID == nil { break } - return e.complexity.SubcontrolHistory.ControlID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ControlID(childComplexity), true case "SubcontrolHistory.controlOwnerID": - if e.complexity.SubcontrolHistory.ControlOwnerID == nil { + if e.ComplexityRoot.SubcontrolHistory.ControlOwnerID == nil { break } - return e.complexity.SubcontrolHistory.ControlOwnerID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ControlOwnerID(childComplexity), true case "SubcontrolHistory.controlQuestions": - if e.complexity.SubcontrolHistory.ControlQuestions == nil { + if e.ComplexityRoot.SubcontrolHistory.ControlQuestions == nil { break } - return e.complexity.SubcontrolHistory.ControlQuestions(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ControlQuestions(childComplexity), true case "SubcontrolHistory.createdAt": - if e.complexity.SubcontrolHistory.CreatedAt == nil { + if e.ComplexityRoot.SubcontrolHistory.CreatedAt == nil { break } - return e.complexity.SubcontrolHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.CreatedAt(childComplexity), true case "SubcontrolHistory.createdBy": - if e.complexity.SubcontrolHistory.CreatedBy == nil { + if e.ComplexityRoot.SubcontrolHistory.CreatedBy == nil { break } - return e.complexity.SubcontrolHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.CreatedBy(childComplexity), true case "SubcontrolHistory.delegateID": - if e.complexity.SubcontrolHistory.DelegateID == nil { + if e.ComplexityRoot.SubcontrolHistory.DelegateID == nil { break } - return e.complexity.SubcontrolHistory.DelegateID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.DelegateID(childComplexity), true case "SubcontrolHistory.description": - if e.complexity.SubcontrolHistory.Description == nil { + if e.ComplexityRoot.SubcontrolHistory.Description == nil { break } - return e.complexity.SubcontrolHistory.Description(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Description(childComplexity), true case "SubcontrolHistory.descriptionJSON": - if e.complexity.SubcontrolHistory.DescriptionJSON == nil { + if e.ComplexityRoot.SubcontrolHistory.DescriptionJSON == nil { break } - return e.complexity.SubcontrolHistory.DescriptionJSON(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.DescriptionJSON(childComplexity), true case "SubcontrolHistory.displayID": - if e.complexity.SubcontrolHistory.DisplayID == nil { + if e.ComplexityRoot.SubcontrolHistory.DisplayID == nil { break } - return e.complexity.SubcontrolHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.DisplayID(childComplexity), true case "SubcontrolHistory.evidenceRequests": - if e.complexity.SubcontrolHistory.EvidenceRequests == nil { + if e.ComplexityRoot.SubcontrolHistory.EvidenceRequests == nil { break } - return e.complexity.SubcontrolHistory.EvidenceRequests(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.EvidenceRequests(childComplexity), true case "SubcontrolHistory.exampleEvidence": - if e.complexity.SubcontrolHistory.ExampleEvidence == nil { + if e.ComplexityRoot.SubcontrolHistory.ExampleEvidence == nil { break } - return e.complexity.SubcontrolHistory.ExampleEvidence(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ExampleEvidence(childComplexity), true case "SubcontrolHistory.historyTime": - if e.complexity.SubcontrolHistory.HistoryTime == nil { + if e.ComplexityRoot.SubcontrolHistory.HistoryTime == nil { break } - return e.complexity.SubcontrolHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.HistoryTime(childComplexity), true case "SubcontrolHistory.id": - if e.complexity.SubcontrolHistory.ID == nil { + if e.ComplexityRoot.SubcontrolHistory.ID == nil { break } - return e.complexity.SubcontrolHistory.ID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ID(childComplexity), true case "SubcontrolHistory.implementationGuidance": - if e.complexity.SubcontrolHistory.ImplementationGuidance == nil { + if e.ComplexityRoot.SubcontrolHistory.ImplementationGuidance == nil { break } - return e.complexity.SubcontrolHistory.ImplementationGuidance(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ImplementationGuidance(childComplexity), true case "SubcontrolHistory.internalNotes": - if e.complexity.SubcontrolHistory.InternalNotes == nil { + if e.ComplexityRoot.SubcontrolHistory.InternalNotes == nil { break } - return e.complexity.SubcontrolHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.InternalNotes(childComplexity), true case "SubcontrolHistory.mappedCategories": - if e.complexity.SubcontrolHistory.MappedCategories == nil { + if e.ComplexityRoot.SubcontrolHistory.MappedCategories == nil { break } - return e.complexity.SubcontrolHistory.MappedCategories(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.MappedCategories(childComplexity), true case "SubcontrolHistory.operation": - if e.complexity.SubcontrolHistory.Operation == nil { + if e.ComplexityRoot.SubcontrolHistory.Operation == nil { break } - return e.complexity.SubcontrolHistory.Operation(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Operation(childComplexity), true case "SubcontrolHistory.ownerID": - if e.complexity.SubcontrolHistory.OwnerID == nil { + if e.ComplexityRoot.SubcontrolHistory.OwnerID == nil { break } - return e.complexity.SubcontrolHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.OwnerID(childComplexity), true case "SubcontrolHistory.ref": - if e.complexity.SubcontrolHistory.Ref == nil { + if e.ComplexityRoot.SubcontrolHistory.Ref == nil { break } - return e.complexity.SubcontrolHistory.Ref(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Ref(childComplexity), true case "SubcontrolHistory.refCode": - if e.complexity.SubcontrolHistory.RefCode == nil { + if e.ComplexityRoot.SubcontrolHistory.RefCode == nil { break } - return e.complexity.SubcontrolHistory.RefCode(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.RefCode(childComplexity), true case "SubcontrolHistory.referenceFramework": - if e.complexity.SubcontrolHistory.ReferenceFramework == nil { + if e.ComplexityRoot.SubcontrolHistory.ReferenceFramework == nil { break } - return e.complexity.SubcontrolHistory.ReferenceFramework(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ReferenceFramework(childComplexity), true case "SubcontrolHistory.referenceFrameworkRevision": - if e.complexity.SubcontrolHistory.ReferenceFrameworkRevision == nil { + if e.ComplexityRoot.SubcontrolHistory.ReferenceFrameworkRevision == nil { break } - return e.complexity.SubcontrolHistory.ReferenceFrameworkRevision(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ReferenceFrameworkRevision(childComplexity), true case "SubcontrolHistory.referenceID": - if e.complexity.SubcontrolHistory.ReferenceID == nil { + if e.ComplexityRoot.SubcontrolHistory.ReferenceID == nil { break } - return e.complexity.SubcontrolHistory.ReferenceID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ReferenceID(childComplexity), true case "SubcontrolHistory.references": - if e.complexity.SubcontrolHistory.References == nil { + if e.ComplexityRoot.SubcontrolHistory.References == nil { break } - return e.complexity.SubcontrolHistory.References(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.References(childComplexity), true case "SubcontrolHistory.responsiblePartyID": - if e.complexity.SubcontrolHistory.ResponsiblePartyID == nil { + if e.ComplexityRoot.SubcontrolHistory.ResponsiblePartyID == nil { break } - return e.complexity.SubcontrolHistory.ResponsiblePartyID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.ResponsiblePartyID(childComplexity), true case "SubcontrolHistory.source": - if e.complexity.SubcontrolHistory.Source == nil { + if e.ComplexityRoot.SubcontrolHistory.Source == nil { break } - return e.complexity.SubcontrolHistory.Source(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Source(childComplexity), true case "SubcontrolHistory.status": - if e.complexity.SubcontrolHistory.Status == nil { + if e.ComplexityRoot.SubcontrolHistory.Status == nil { break } - return e.complexity.SubcontrolHistory.Status(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Status(childComplexity), true case "SubcontrolHistory.subcategory": - if e.complexity.SubcontrolHistory.Subcategory == nil { + if e.ComplexityRoot.SubcontrolHistory.Subcategory == nil { break } - return e.complexity.SubcontrolHistory.Subcategory(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Subcategory(childComplexity), true case "SubcontrolHistory.subcontrolKindID": - if e.complexity.SubcontrolHistory.SubcontrolKindID == nil { + if e.ComplexityRoot.SubcontrolHistory.SubcontrolKindID == nil { break } - return e.complexity.SubcontrolHistory.SubcontrolKindID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.SubcontrolKindID(childComplexity), true case "SubcontrolHistory.subcontrolKindName": - if e.complexity.SubcontrolHistory.SubcontrolKindName == nil { + if e.ComplexityRoot.SubcontrolHistory.SubcontrolKindName == nil { break } - return e.complexity.SubcontrolHistory.SubcontrolKindName(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.SubcontrolKindName(childComplexity), true case "SubcontrolHistory.systemInternalID": - if e.complexity.SubcontrolHistory.SystemInternalID == nil { + if e.ComplexityRoot.SubcontrolHistory.SystemInternalID == nil { break } - return e.complexity.SubcontrolHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.SystemInternalID(childComplexity), true case "SubcontrolHistory.systemOwned": - if e.complexity.SubcontrolHistory.SystemOwned == nil { + if e.ComplexityRoot.SubcontrolHistory.SystemOwned == nil { break } - return e.complexity.SubcontrolHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.SystemOwned(childComplexity), true case "SubcontrolHistory.tags": - if e.complexity.SubcontrolHistory.Tags == nil { + if e.ComplexityRoot.SubcontrolHistory.Tags == nil { break } - return e.complexity.SubcontrolHistory.Tags(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Tags(childComplexity), true case "SubcontrolHistory.testingProcedures": - if e.complexity.SubcontrolHistory.TestingProcedures == nil { + if e.ComplexityRoot.SubcontrolHistory.TestingProcedures == nil { break } - return e.complexity.SubcontrolHistory.TestingProcedures(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.TestingProcedures(childComplexity), true case "SubcontrolHistory.title": - if e.complexity.SubcontrolHistory.Title == nil { + if e.ComplexityRoot.SubcontrolHistory.Title == nil { break } - return e.complexity.SubcontrolHistory.Title(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.Title(childComplexity), true case "SubcontrolHistory.updatedAt": - if e.complexity.SubcontrolHistory.UpdatedAt == nil { + if e.ComplexityRoot.SubcontrolHistory.UpdatedAt == nil { break } - return e.complexity.SubcontrolHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.UpdatedAt(childComplexity), true case "SubcontrolHistory.updatedBy": - if e.complexity.SubcontrolHistory.UpdatedBy == nil { + if e.ComplexityRoot.SubcontrolHistory.UpdatedBy == nil { break } - return e.complexity.SubcontrolHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.UpdatedBy(childComplexity), true case "SubcontrolHistory.workflowEligibleMarker": - if e.complexity.SubcontrolHistory.WorkflowEligibleMarker == nil { + if e.ComplexityRoot.SubcontrolHistory.WorkflowEligibleMarker == nil { break } - return e.complexity.SubcontrolHistory.WorkflowEligibleMarker(childComplexity), true + return e.ComplexityRoot.SubcontrolHistory.WorkflowEligibleMarker(childComplexity), true case "SubcontrolHistoryConnection.edges": - if e.complexity.SubcontrolHistoryConnection.Edges == nil { + if e.ComplexityRoot.SubcontrolHistoryConnection.Edges == nil { break } - return e.complexity.SubcontrolHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.SubcontrolHistoryConnection.Edges(childComplexity), true case "SubcontrolHistoryConnection.pageInfo": - if e.complexity.SubcontrolHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.SubcontrolHistoryConnection.PageInfo == nil { break } - return e.complexity.SubcontrolHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.SubcontrolHistoryConnection.PageInfo(childComplexity), true case "SubcontrolHistoryConnection.totalCount": - if e.complexity.SubcontrolHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.SubcontrolHistoryConnection.TotalCount == nil { break } - return e.complexity.SubcontrolHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.SubcontrolHistoryConnection.TotalCount(childComplexity), true case "SubcontrolHistoryEdge.cursor": - if e.complexity.SubcontrolHistoryEdge.Cursor == nil { + if e.ComplexityRoot.SubcontrolHistoryEdge.Cursor == nil { break } - return e.complexity.SubcontrolHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.SubcontrolHistoryEdge.Cursor(childComplexity), true case "SubcontrolHistoryEdge.node": - if e.complexity.SubcontrolHistoryEdge.Node == nil { + if e.ComplexityRoot.SubcontrolHistoryEdge.Node == nil { break } - return e.complexity.SubcontrolHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.SubcontrolHistoryEdge.Node(childComplexity), true case "SubprocessorHistory.createdAt": - if e.complexity.SubprocessorHistory.CreatedAt == nil { + if e.ComplexityRoot.SubprocessorHistory.CreatedAt == nil { break } - return e.complexity.SubprocessorHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.CreatedAt(childComplexity), true case "SubprocessorHistory.createdBy": - if e.complexity.SubprocessorHistory.CreatedBy == nil { + if e.ComplexityRoot.SubprocessorHistory.CreatedBy == nil { break } - return e.complexity.SubprocessorHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.CreatedBy(childComplexity), true case "SubprocessorHistory.description": - if e.complexity.SubprocessorHistory.Description == nil { + if e.ComplexityRoot.SubprocessorHistory.Description == nil { break } - return e.complexity.SubprocessorHistory.Description(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.Description(childComplexity), true case "SubprocessorHistory.historyTime": - if e.complexity.SubprocessorHistory.HistoryTime == nil { + if e.ComplexityRoot.SubprocessorHistory.HistoryTime == nil { break } - return e.complexity.SubprocessorHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.HistoryTime(childComplexity), true case "SubprocessorHistory.id": - if e.complexity.SubprocessorHistory.ID == nil { + if e.ComplexityRoot.SubprocessorHistory.ID == nil { break } - return e.complexity.SubprocessorHistory.ID(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.ID(childComplexity), true case "SubprocessorHistory.internalNotes": - if e.complexity.SubprocessorHistory.InternalNotes == nil { + if e.ComplexityRoot.SubprocessorHistory.InternalNotes == nil { break } - return e.complexity.SubprocessorHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.InternalNotes(childComplexity), true case "SubprocessorHistory.logoFileID": - if e.complexity.SubprocessorHistory.LogoFileID == nil { + if e.ComplexityRoot.SubprocessorHistory.LogoFileID == nil { break } - return e.complexity.SubprocessorHistory.LogoFileID(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.LogoFileID(childComplexity), true case "SubprocessorHistory.logoRemoteURL": - if e.complexity.SubprocessorHistory.LogoRemoteURL == nil { + if e.ComplexityRoot.SubprocessorHistory.LogoRemoteURL == nil { break } - return e.complexity.SubprocessorHistory.LogoRemoteURL(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.LogoRemoteURL(childComplexity), true case "SubprocessorHistory.name": - if e.complexity.SubprocessorHistory.Name == nil { + if e.ComplexityRoot.SubprocessorHistory.Name == nil { break } - return e.complexity.SubprocessorHistory.Name(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.Name(childComplexity), true case "SubprocessorHistory.operation": - if e.complexity.SubprocessorHistory.Operation == nil { + if e.ComplexityRoot.SubprocessorHistory.Operation == nil { break } - return e.complexity.SubprocessorHistory.Operation(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.Operation(childComplexity), true case "SubprocessorHistory.ownerID": - if e.complexity.SubprocessorHistory.OwnerID == nil { + if e.ComplexityRoot.SubprocessorHistory.OwnerID == nil { break } - return e.complexity.SubprocessorHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.OwnerID(childComplexity), true case "SubprocessorHistory.ref": - if e.complexity.SubprocessorHistory.Ref == nil { + if e.ComplexityRoot.SubprocessorHistory.Ref == nil { break } - return e.complexity.SubprocessorHistory.Ref(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.Ref(childComplexity), true case "SubprocessorHistory.systemInternalID": - if e.complexity.SubprocessorHistory.SystemInternalID == nil { + if e.ComplexityRoot.SubprocessorHistory.SystemInternalID == nil { break } - return e.complexity.SubprocessorHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.SystemInternalID(childComplexity), true case "SubprocessorHistory.systemOwned": - if e.complexity.SubprocessorHistory.SystemOwned == nil { + if e.ComplexityRoot.SubprocessorHistory.SystemOwned == nil { break } - return e.complexity.SubprocessorHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.SystemOwned(childComplexity), true case "SubprocessorHistory.tags": - if e.complexity.SubprocessorHistory.Tags == nil { + if e.ComplexityRoot.SubprocessorHistory.Tags == nil { break } - return e.complexity.SubprocessorHistory.Tags(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.Tags(childComplexity), true case "SubprocessorHistory.updatedAt": - if e.complexity.SubprocessorHistory.UpdatedAt == nil { + if e.ComplexityRoot.SubprocessorHistory.UpdatedAt == nil { break } - return e.complexity.SubprocessorHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.UpdatedAt(childComplexity), true case "SubprocessorHistory.updatedBy": - if e.complexity.SubprocessorHistory.UpdatedBy == nil { + if e.ComplexityRoot.SubprocessorHistory.UpdatedBy == nil { break } - return e.complexity.SubprocessorHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.SubprocessorHistory.UpdatedBy(childComplexity), true case "SubprocessorHistoryConnection.edges": - if e.complexity.SubprocessorHistoryConnection.Edges == nil { + if e.ComplexityRoot.SubprocessorHistoryConnection.Edges == nil { break } - return e.complexity.SubprocessorHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.SubprocessorHistoryConnection.Edges(childComplexity), true case "SubprocessorHistoryConnection.pageInfo": - if e.complexity.SubprocessorHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.SubprocessorHistoryConnection.PageInfo == nil { break } - return e.complexity.SubprocessorHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.SubprocessorHistoryConnection.PageInfo(childComplexity), true case "SubprocessorHistoryConnection.totalCount": - if e.complexity.SubprocessorHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.SubprocessorHistoryConnection.TotalCount == nil { break } - return e.complexity.SubprocessorHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.SubprocessorHistoryConnection.TotalCount(childComplexity), true case "SubprocessorHistoryEdge.cursor": - if e.complexity.SubprocessorHistoryEdge.Cursor == nil { + if e.ComplexityRoot.SubprocessorHistoryEdge.Cursor == nil { break } - return e.complexity.SubprocessorHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.SubprocessorHistoryEdge.Cursor(childComplexity), true case "SubprocessorHistoryEdge.node": - if e.complexity.SubprocessorHistoryEdge.Node == nil { + if e.ComplexityRoot.SubprocessorHistoryEdge.Node == nil { break } - return e.complexity.SubprocessorHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.SubprocessorHistoryEdge.Node(childComplexity), true case "TaskHistory.assigneeID": - if e.complexity.TaskHistory.AssigneeID == nil { + if e.ComplexityRoot.TaskHistory.AssigneeID == nil { break } - return e.complexity.TaskHistory.AssigneeID(childComplexity), true + return e.ComplexityRoot.TaskHistory.AssigneeID(childComplexity), true case "TaskHistory.assignerID": - if e.complexity.TaskHistory.AssignerID == nil { + if e.ComplexityRoot.TaskHistory.AssignerID == nil { break } - return e.complexity.TaskHistory.AssignerID(childComplexity), true + return e.ComplexityRoot.TaskHistory.AssignerID(childComplexity), true case "TaskHistory.completed": - if e.complexity.TaskHistory.Completed == nil { + if e.ComplexityRoot.TaskHistory.Completed == nil { break } - return e.complexity.TaskHistory.Completed(childComplexity), true + return e.ComplexityRoot.TaskHistory.Completed(childComplexity), true case "TaskHistory.createdAt": - if e.complexity.TaskHistory.CreatedAt == nil { + if e.ComplexityRoot.TaskHistory.CreatedAt == nil { break } - return e.complexity.TaskHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TaskHistory.CreatedAt(childComplexity), true case "TaskHistory.createdBy": - if e.complexity.TaskHistory.CreatedBy == nil { + if e.ComplexityRoot.TaskHistory.CreatedBy == nil { break } - return e.complexity.TaskHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TaskHistory.CreatedBy(childComplexity), true case "TaskHistory.details": - if e.complexity.TaskHistory.Details == nil { + if e.ComplexityRoot.TaskHistory.Details == nil { break } - return e.complexity.TaskHistory.Details(childComplexity), true + return e.ComplexityRoot.TaskHistory.Details(childComplexity), true case "TaskHistory.detailsJSON": - if e.complexity.TaskHistory.DetailsJSON == nil { + if e.ComplexityRoot.TaskHistory.DetailsJSON == nil { break } - return e.complexity.TaskHistory.DetailsJSON(childComplexity), true + return e.ComplexityRoot.TaskHistory.DetailsJSON(childComplexity), true case "TaskHistory.displayID": - if e.complexity.TaskHistory.DisplayID == nil { + if e.ComplexityRoot.TaskHistory.DisplayID == nil { break } - return e.complexity.TaskHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.TaskHistory.DisplayID(childComplexity), true case "TaskHistory.due": - if e.complexity.TaskHistory.Due == nil { + if e.ComplexityRoot.TaskHistory.Due == nil { break } - return e.complexity.TaskHistory.Due(childComplexity), true + return e.ComplexityRoot.TaskHistory.Due(childComplexity), true case "TaskHistory.environmentID": - if e.complexity.TaskHistory.EnvironmentID == nil { + if e.ComplexityRoot.TaskHistory.EnvironmentID == nil { break } - return e.complexity.TaskHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.TaskHistory.EnvironmentID(childComplexity), true case "TaskHistory.environmentName": - if e.complexity.TaskHistory.EnvironmentName == nil { + if e.ComplexityRoot.TaskHistory.EnvironmentName == nil { break } - return e.complexity.TaskHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.TaskHistory.EnvironmentName(childComplexity), true case "TaskHistory.externalReferenceURL": - if e.complexity.TaskHistory.ExternalReferenceURL == nil { + if e.ComplexityRoot.TaskHistory.ExternalReferenceURL == nil { break } - return e.complexity.TaskHistory.ExternalReferenceURL(childComplexity), true + return e.ComplexityRoot.TaskHistory.ExternalReferenceURL(childComplexity), true case "TaskHistory.historyTime": - if e.complexity.TaskHistory.HistoryTime == nil { + if e.ComplexityRoot.TaskHistory.HistoryTime == nil { break } - return e.complexity.TaskHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TaskHistory.HistoryTime(childComplexity), true case "TaskHistory.id": - if e.complexity.TaskHistory.ID == nil { + if e.ComplexityRoot.TaskHistory.ID == nil { break } - return e.complexity.TaskHistory.ID(childComplexity), true + return e.ComplexityRoot.TaskHistory.ID(childComplexity), true case "TaskHistory.idempotencyKey": - if e.complexity.TaskHistory.IdempotencyKey == nil { + if e.ComplexityRoot.TaskHistory.IdempotencyKey == nil { break } - return e.complexity.TaskHistory.IdempotencyKey(childComplexity), true + return e.ComplexityRoot.TaskHistory.IdempotencyKey(childComplexity), true case "TaskHistory.operation": - if e.complexity.TaskHistory.Operation == nil { + if e.ComplexityRoot.TaskHistory.Operation == nil { break } - return e.complexity.TaskHistory.Operation(childComplexity), true + return e.ComplexityRoot.TaskHistory.Operation(childComplexity), true case "TaskHistory.ownerID": - if e.complexity.TaskHistory.OwnerID == nil { + if e.ComplexityRoot.TaskHistory.OwnerID == nil { break } - return e.complexity.TaskHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.TaskHistory.OwnerID(childComplexity), true case "TaskHistory.parentTaskID": - if e.complexity.TaskHistory.ParentTaskID == nil { + if e.ComplexityRoot.TaskHistory.ParentTaskID == nil { break } - return e.complexity.TaskHistory.ParentTaskID(childComplexity), true + return e.ComplexityRoot.TaskHistory.ParentTaskID(childComplexity), true case "TaskHistory.ref": - if e.complexity.TaskHistory.Ref == nil { + if e.ComplexityRoot.TaskHistory.Ref == nil { break } - return e.complexity.TaskHistory.Ref(childComplexity), true + return e.ComplexityRoot.TaskHistory.Ref(childComplexity), true case "TaskHistory.scopeID": - if e.complexity.TaskHistory.ScopeID == nil { + if e.ComplexityRoot.TaskHistory.ScopeID == nil { break } - return e.complexity.TaskHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.TaskHistory.ScopeID(childComplexity), true case "TaskHistory.scopeName": - if e.complexity.TaskHistory.ScopeName == nil { + if e.ComplexityRoot.TaskHistory.ScopeName == nil { break } - return e.complexity.TaskHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.TaskHistory.ScopeName(childComplexity), true case "TaskHistory.status": - if e.complexity.TaskHistory.Status == nil { + if e.ComplexityRoot.TaskHistory.Status == nil { break } - return e.complexity.TaskHistory.Status(childComplexity), true + return e.ComplexityRoot.TaskHistory.Status(childComplexity), true case "TaskHistory.systemGenerated": - if e.complexity.TaskHistory.SystemGenerated == nil { + if e.ComplexityRoot.TaskHistory.SystemGenerated == nil { break } - return e.complexity.TaskHistory.SystemGenerated(childComplexity), true + return e.ComplexityRoot.TaskHistory.SystemGenerated(childComplexity), true case "TaskHistory.tags": - if e.complexity.TaskHistory.Tags == nil { + if e.ComplexityRoot.TaskHistory.Tags == nil { break } - return e.complexity.TaskHistory.Tags(childComplexity), true + return e.ComplexityRoot.TaskHistory.Tags(childComplexity), true case "TaskHistory.taskKindID": - if e.complexity.TaskHistory.TaskKindID == nil { + if e.ComplexityRoot.TaskHistory.TaskKindID == nil { break } - return e.complexity.TaskHistory.TaskKindID(childComplexity), true + return e.ComplexityRoot.TaskHistory.TaskKindID(childComplexity), true case "TaskHistory.taskKindName": - if e.complexity.TaskHistory.TaskKindName == nil { + if e.ComplexityRoot.TaskHistory.TaskKindName == nil { break } - return e.complexity.TaskHistory.TaskKindName(childComplexity), true + return e.ComplexityRoot.TaskHistory.TaskKindName(childComplexity), true case "TaskHistory.title": - if e.complexity.TaskHistory.Title == nil { + if e.ComplexityRoot.TaskHistory.Title == nil { break } - return e.complexity.TaskHistory.Title(childComplexity), true + return e.ComplexityRoot.TaskHistory.Title(childComplexity), true case "TaskHistory.updatedAt": - if e.complexity.TaskHistory.UpdatedAt == nil { + if e.ComplexityRoot.TaskHistory.UpdatedAt == nil { break } - return e.complexity.TaskHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TaskHistory.UpdatedAt(childComplexity), true case "TaskHistory.updatedBy": - if e.complexity.TaskHistory.UpdatedBy == nil { + if e.ComplexityRoot.TaskHistory.UpdatedBy == nil { break } - return e.complexity.TaskHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TaskHistory.UpdatedBy(childComplexity), true case "TaskHistoryConnection.edges": - if e.complexity.TaskHistoryConnection.Edges == nil { + if e.ComplexityRoot.TaskHistoryConnection.Edges == nil { break } - return e.complexity.TaskHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TaskHistoryConnection.Edges(childComplexity), true case "TaskHistoryConnection.pageInfo": - if e.complexity.TaskHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TaskHistoryConnection.PageInfo == nil { break } - return e.complexity.TaskHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TaskHistoryConnection.PageInfo(childComplexity), true case "TaskHistoryConnection.totalCount": - if e.complexity.TaskHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TaskHistoryConnection.TotalCount == nil { break } - return e.complexity.TaskHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TaskHistoryConnection.TotalCount(childComplexity), true case "TaskHistoryEdge.cursor": - if e.complexity.TaskHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TaskHistoryEdge.Cursor == nil { break } - return e.complexity.TaskHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TaskHistoryEdge.Cursor(childComplexity), true case "TaskHistoryEdge.node": - if e.complexity.TaskHistoryEdge.Node == nil { + if e.ComplexityRoot.TaskHistoryEdge.Node == nil { break } - return e.complexity.TaskHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TaskHistoryEdge.Node(childComplexity), true case "TemplateHistory.createdAt": - if e.complexity.TemplateHistory.CreatedAt == nil { + if e.ComplexityRoot.TemplateHistory.CreatedAt == nil { break } - return e.complexity.TemplateHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TemplateHistory.CreatedAt(childComplexity), true case "TemplateHistory.createdBy": - if e.complexity.TemplateHistory.CreatedBy == nil { + if e.ComplexityRoot.TemplateHistory.CreatedBy == nil { break } - return e.complexity.TemplateHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TemplateHistory.CreatedBy(childComplexity), true case "TemplateHistory.description": - if e.complexity.TemplateHistory.Description == nil { + if e.ComplexityRoot.TemplateHistory.Description == nil { break } - return e.complexity.TemplateHistory.Description(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Description(childComplexity), true case "TemplateHistory.environmentID": - if e.complexity.TemplateHistory.EnvironmentID == nil { + if e.ComplexityRoot.TemplateHistory.EnvironmentID == nil { break } - return e.complexity.TemplateHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.TemplateHistory.EnvironmentID(childComplexity), true case "TemplateHistory.environmentName": - if e.complexity.TemplateHistory.EnvironmentName == nil { + if e.ComplexityRoot.TemplateHistory.EnvironmentName == nil { break } - return e.complexity.TemplateHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.TemplateHistory.EnvironmentName(childComplexity), true case "TemplateHistory.historyTime": - if e.complexity.TemplateHistory.HistoryTime == nil { + if e.ComplexityRoot.TemplateHistory.HistoryTime == nil { break } - return e.complexity.TemplateHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TemplateHistory.HistoryTime(childComplexity), true case "TemplateHistory.id": - if e.complexity.TemplateHistory.ID == nil { + if e.ComplexityRoot.TemplateHistory.ID == nil { break } - return e.complexity.TemplateHistory.ID(childComplexity), true + return e.ComplexityRoot.TemplateHistory.ID(childComplexity), true case "TemplateHistory.internalNotes": - if e.complexity.TemplateHistory.InternalNotes == nil { + if e.ComplexityRoot.TemplateHistory.InternalNotes == nil { break } - return e.complexity.TemplateHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.TemplateHistory.InternalNotes(childComplexity), true case "TemplateHistory.jsonconfig": - if e.complexity.TemplateHistory.Jsonconfig == nil { + if e.ComplexityRoot.TemplateHistory.Jsonconfig == nil { break } - return e.complexity.TemplateHistory.Jsonconfig(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Jsonconfig(childComplexity), true case "TemplateHistory.kind": - if e.complexity.TemplateHistory.Kind == nil { + if e.ComplexityRoot.TemplateHistory.Kind == nil { break } - return e.complexity.TemplateHistory.Kind(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Kind(childComplexity), true case "TemplateHistory.name": - if e.complexity.TemplateHistory.Name == nil { + if e.ComplexityRoot.TemplateHistory.Name == nil { break } - return e.complexity.TemplateHistory.Name(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Name(childComplexity), true case "TemplateHistory.operation": - if e.complexity.TemplateHistory.Operation == nil { + if e.ComplexityRoot.TemplateHistory.Operation == nil { break } - return e.complexity.TemplateHistory.Operation(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Operation(childComplexity), true case "TemplateHistory.ownerID": - if e.complexity.TemplateHistory.OwnerID == nil { + if e.ComplexityRoot.TemplateHistory.OwnerID == nil { break } - return e.complexity.TemplateHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.TemplateHistory.OwnerID(childComplexity), true case "TemplateHistory.ref": - if e.complexity.TemplateHistory.Ref == nil { + if e.ComplexityRoot.TemplateHistory.Ref == nil { break } - return e.complexity.TemplateHistory.Ref(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Ref(childComplexity), true case "TemplateHistory.scopeID": - if e.complexity.TemplateHistory.ScopeID == nil { + if e.ComplexityRoot.TemplateHistory.ScopeID == nil { break } - return e.complexity.TemplateHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.TemplateHistory.ScopeID(childComplexity), true case "TemplateHistory.scopeName": - if e.complexity.TemplateHistory.ScopeName == nil { + if e.ComplexityRoot.TemplateHistory.ScopeName == nil { break } - return e.complexity.TemplateHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.TemplateHistory.ScopeName(childComplexity), true case "TemplateHistory.systemInternalID": - if e.complexity.TemplateHistory.SystemInternalID == nil { + if e.ComplexityRoot.TemplateHistory.SystemInternalID == nil { break } - return e.complexity.TemplateHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.TemplateHistory.SystemInternalID(childComplexity), true case "TemplateHistory.systemOwned": - if e.complexity.TemplateHistory.SystemOwned == nil { + if e.ComplexityRoot.TemplateHistory.SystemOwned == nil { break } - return e.complexity.TemplateHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.TemplateHistory.SystemOwned(childComplexity), true case "TemplateHistory.tags": - if e.complexity.TemplateHistory.Tags == nil { + if e.ComplexityRoot.TemplateHistory.Tags == nil { break } - return e.complexity.TemplateHistory.Tags(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Tags(childComplexity), true case "TemplateHistory.templateType": - if e.complexity.TemplateHistory.TemplateType == nil { + if e.ComplexityRoot.TemplateHistory.TemplateType == nil { break } - return e.complexity.TemplateHistory.TemplateType(childComplexity), true + return e.ComplexityRoot.TemplateHistory.TemplateType(childComplexity), true case "TemplateHistory.trustCenterID": - if e.complexity.TemplateHistory.TrustCenterID == nil { + if e.ComplexityRoot.TemplateHistory.TrustCenterID == nil { break } - return e.complexity.TemplateHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TemplateHistory.TrustCenterID(childComplexity), true case "TemplateHistory.uischema": - if e.complexity.TemplateHistory.Uischema == nil { + if e.ComplexityRoot.TemplateHistory.Uischema == nil { break } - return e.complexity.TemplateHistory.Uischema(childComplexity), true + return e.ComplexityRoot.TemplateHistory.Uischema(childComplexity), true case "TemplateHistory.updatedAt": - if e.complexity.TemplateHistory.UpdatedAt == nil { + if e.ComplexityRoot.TemplateHistory.UpdatedAt == nil { break } - return e.complexity.TemplateHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TemplateHistory.UpdatedAt(childComplexity), true case "TemplateHistory.updatedBy": - if e.complexity.TemplateHistory.UpdatedBy == nil { + if e.ComplexityRoot.TemplateHistory.UpdatedBy == nil { break } - return e.complexity.TemplateHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TemplateHistory.UpdatedBy(childComplexity), true case "TemplateHistoryConnection.edges": - if e.complexity.TemplateHistoryConnection.Edges == nil { + if e.ComplexityRoot.TemplateHistoryConnection.Edges == nil { break } - return e.complexity.TemplateHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TemplateHistoryConnection.Edges(childComplexity), true case "TemplateHistoryConnection.pageInfo": - if e.complexity.TemplateHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TemplateHistoryConnection.PageInfo == nil { break } - return e.complexity.TemplateHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TemplateHistoryConnection.PageInfo(childComplexity), true case "TemplateHistoryConnection.totalCount": - if e.complexity.TemplateHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TemplateHistoryConnection.TotalCount == nil { break } - return e.complexity.TemplateHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TemplateHistoryConnection.TotalCount(childComplexity), true case "TemplateHistoryEdge.cursor": - if e.complexity.TemplateHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TemplateHistoryEdge.Cursor == nil { break } - return e.complexity.TemplateHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TemplateHistoryEdge.Cursor(childComplexity), true case "TemplateHistoryEdge.node": - if e.complexity.TemplateHistoryEdge.Node == nil { + if e.ComplexityRoot.TemplateHistoryEdge.Node == nil { break } - return e.complexity.TemplateHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TemplateHistoryEdge.Node(childComplexity), true case "TrustCenterComplianceHistory.createdAt": - if e.complexity.TrustCenterComplianceHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterComplianceHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.CreatedAt(childComplexity), true case "TrustCenterComplianceHistory.createdBy": - if e.complexity.TrustCenterComplianceHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterComplianceHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.CreatedBy(childComplexity), true case "TrustCenterComplianceHistory.historyTime": - if e.complexity.TrustCenterComplianceHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterComplianceHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.HistoryTime(childComplexity), true case "TrustCenterComplianceHistory.id": - if e.complexity.TrustCenterComplianceHistory.ID == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.ID == nil { break } - return e.complexity.TrustCenterComplianceHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.ID(childComplexity), true case "TrustCenterComplianceHistory.operation": - if e.complexity.TrustCenterComplianceHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.Operation == nil { break } - return e.complexity.TrustCenterComplianceHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.Operation(childComplexity), true case "TrustCenterComplianceHistory.ref": - if e.complexity.TrustCenterComplianceHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.Ref == nil { break } - return e.complexity.TrustCenterComplianceHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.Ref(childComplexity), true case "TrustCenterComplianceHistory.standardID": - if e.complexity.TrustCenterComplianceHistory.StandardID == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.StandardID == nil { break } - return e.complexity.TrustCenterComplianceHistory.StandardID(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.StandardID(childComplexity), true case "TrustCenterComplianceHistory.tags": - if e.complexity.TrustCenterComplianceHistory.Tags == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.Tags == nil { break } - return e.complexity.TrustCenterComplianceHistory.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.Tags(childComplexity), true case "TrustCenterComplianceHistory.trustCenterID": - if e.complexity.TrustCenterComplianceHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterComplianceHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.TrustCenterID(childComplexity), true case "TrustCenterComplianceHistory.updatedAt": - if e.complexity.TrustCenterComplianceHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterComplianceHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.UpdatedAt(childComplexity), true case "TrustCenterComplianceHistory.updatedBy": - if e.complexity.TrustCenterComplianceHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterComplianceHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterComplianceHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistory.UpdatedBy(childComplexity), true case "TrustCenterComplianceHistoryConnection.edges": - if e.complexity.TrustCenterComplianceHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterComplianceHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterComplianceHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistoryConnection.Edges(childComplexity), true case "TrustCenterComplianceHistoryConnection.pageInfo": - if e.complexity.TrustCenterComplianceHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterComplianceHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterComplianceHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistoryConnection.PageInfo(childComplexity), true case "TrustCenterComplianceHistoryConnection.totalCount": - if e.complexity.TrustCenterComplianceHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterComplianceHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterComplianceHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistoryConnection.TotalCount(childComplexity), true case "TrustCenterComplianceHistoryEdge.cursor": - if e.complexity.TrustCenterComplianceHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterComplianceHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterComplianceHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistoryEdge.Cursor(childComplexity), true case "TrustCenterComplianceHistoryEdge.node": - if e.complexity.TrustCenterComplianceHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterComplianceHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterComplianceHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterComplianceHistoryEdge.Node(childComplexity), true case "TrustCenterDocHistory.createdAt": - if e.complexity.TrustCenterDocHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterDocHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterDocHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.CreatedAt(childComplexity), true case "TrustCenterDocHistory.createdBy": - if e.complexity.TrustCenterDocHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterDocHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterDocHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.CreatedBy(childComplexity), true case "TrustCenterDocHistory.fileID": - if e.complexity.TrustCenterDocHistory.FileID == nil { + if e.ComplexityRoot.TrustCenterDocHistory.FileID == nil { break } - return e.complexity.TrustCenterDocHistory.FileID(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.FileID(childComplexity), true case "TrustCenterDocHistory.historyTime": - if e.complexity.TrustCenterDocHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterDocHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterDocHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.HistoryTime(childComplexity), true case "TrustCenterDocHistory.id": - if e.complexity.TrustCenterDocHistory.ID == nil { + if e.ComplexityRoot.TrustCenterDocHistory.ID == nil { break } - return e.complexity.TrustCenterDocHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.ID(childComplexity), true case "TrustCenterDocHistory.operation": - if e.complexity.TrustCenterDocHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterDocHistory.Operation == nil { break } - return e.complexity.TrustCenterDocHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.Operation(childComplexity), true case "TrustCenterDocHistory.originalFileID": - if e.complexity.TrustCenterDocHistory.OriginalFileID == nil { + if e.ComplexityRoot.TrustCenterDocHistory.OriginalFileID == nil { break } - return e.complexity.TrustCenterDocHistory.OriginalFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.OriginalFileID(childComplexity), true case "TrustCenterDocHistory.ref": - if e.complexity.TrustCenterDocHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterDocHistory.Ref == nil { break } - return e.complexity.TrustCenterDocHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.Ref(childComplexity), true case "TrustCenterDocHistory.standardID": - if e.complexity.TrustCenterDocHistory.StandardID == nil { + if e.ComplexityRoot.TrustCenterDocHistory.StandardID == nil { break } - return e.complexity.TrustCenterDocHistory.StandardID(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.StandardID(childComplexity), true case "TrustCenterDocHistory.tags": - if e.complexity.TrustCenterDocHistory.Tags == nil { + if e.ComplexityRoot.TrustCenterDocHistory.Tags == nil { break } - return e.complexity.TrustCenterDocHistory.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.Tags(childComplexity), true case "TrustCenterDocHistory.title": - if e.complexity.TrustCenterDocHistory.Title == nil { + if e.ComplexityRoot.TrustCenterDocHistory.Title == nil { break } - return e.complexity.TrustCenterDocHistory.Title(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.Title(childComplexity), true case "TrustCenterDocHistory.trustCenterDocKindID": - if e.complexity.TrustCenterDocHistory.TrustCenterDocKindID == nil { + if e.ComplexityRoot.TrustCenterDocHistory.TrustCenterDocKindID == nil { break } - return e.complexity.TrustCenterDocHistory.TrustCenterDocKindID(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.TrustCenterDocKindID(childComplexity), true case "TrustCenterDocHistory.trustCenterDocKindName": - if e.complexity.TrustCenterDocHistory.TrustCenterDocKindName == nil { + if e.ComplexityRoot.TrustCenterDocHistory.TrustCenterDocKindName == nil { break } - return e.complexity.TrustCenterDocHistory.TrustCenterDocKindName(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.TrustCenterDocKindName(childComplexity), true case "TrustCenterDocHistory.trustCenterID": - if e.complexity.TrustCenterDocHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterDocHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterDocHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.TrustCenterID(childComplexity), true case "TrustCenterDocHistory.updatedAt": - if e.complexity.TrustCenterDocHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterDocHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterDocHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.UpdatedAt(childComplexity), true case "TrustCenterDocHistory.updatedBy": - if e.complexity.TrustCenterDocHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterDocHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterDocHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.UpdatedBy(childComplexity), true case "TrustCenterDocHistory.visibility": - if e.complexity.TrustCenterDocHistory.Visibility == nil { + if e.ComplexityRoot.TrustCenterDocHistory.Visibility == nil { break } - return e.complexity.TrustCenterDocHistory.Visibility(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.Visibility(childComplexity), true case "TrustCenterDocHistory.watermarkStatus": - if e.complexity.TrustCenterDocHistory.WatermarkStatus == nil { + if e.ComplexityRoot.TrustCenterDocHistory.WatermarkStatus == nil { break } - return e.complexity.TrustCenterDocHistory.WatermarkStatus(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.WatermarkStatus(childComplexity), true case "TrustCenterDocHistory.watermarkingEnabled": - if e.complexity.TrustCenterDocHistory.WatermarkingEnabled == nil { + if e.ComplexityRoot.TrustCenterDocHistory.WatermarkingEnabled == nil { break } - return e.complexity.TrustCenterDocHistory.WatermarkingEnabled(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistory.WatermarkingEnabled(childComplexity), true case "TrustCenterDocHistoryConnection.edges": - if e.complexity.TrustCenterDocHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterDocHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterDocHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistoryConnection.Edges(childComplexity), true case "TrustCenterDocHistoryConnection.pageInfo": - if e.complexity.TrustCenterDocHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterDocHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterDocHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistoryConnection.PageInfo(childComplexity), true case "TrustCenterDocHistoryConnection.totalCount": - if e.complexity.TrustCenterDocHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterDocHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterDocHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistoryConnection.TotalCount(childComplexity), true case "TrustCenterDocHistoryEdge.cursor": - if e.complexity.TrustCenterDocHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterDocHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterDocHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistoryEdge.Cursor(childComplexity), true case "TrustCenterDocHistoryEdge.node": - if e.complexity.TrustCenterDocHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterDocHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterDocHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterDocHistoryEdge.Node(childComplexity), true case "TrustCenterEntityHistory.createdAt": - if e.complexity.TrustCenterEntityHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterEntityHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.CreatedAt(childComplexity), true case "TrustCenterEntityHistory.createdBy": - if e.complexity.TrustCenterEntityHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterEntityHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.CreatedBy(childComplexity), true case "TrustCenterEntityHistory.entityTypeID": - if e.complexity.TrustCenterEntityHistory.EntityTypeID == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.EntityTypeID == nil { break } - return e.complexity.TrustCenterEntityHistory.EntityTypeID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.EntityTypeID(childComplexity), true case "TrustCenterEntityHistory.historyTime": - if e.complexity.TrustCenterEntityHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterEntityHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.HistoryTime(childComplexity), true case "TrustCenterEntityHistory.id": - if e.complexity.TrustCenterEntityHistory.ID == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.ID == nil { break } - return e.complexity.TrustCenterEntityHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.ID(childComplexity), true case "TrustCenterEntityHistory.logoFileID": - if e.complexity.TrustCenterEntityHistory.LogoFileID == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.LogoFileID == nil { break } - return e.complexity.TrustCenterEntityHistory.LogoFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.LogoFileID(childComplexity), true case "TrustCenterEntityHistory.name": - if e.complexity.TrustCenterEntityHistory.Name == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.Name == nil { break } - return e.complexity.TrustCenterEntityHistory.Name(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.Name(childComplexity), true case "TrustCenterEntityHistory.operation": - if e.complexity.TrustCenterEntityHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.Operation == nil { break } - return e.complexity.TrustCenterEntityHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.Operation(childComplexity), true case "TrustCenterEntityHistory.ref": - if e.complexity.TrustCenterEntityHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.Ref == nil { break } - return e.complexity.TrustCenterEntityHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.Ref(childComplexity), true case "TrustCenterEntityHistory.trustCenterID": - if e.complexity.TrustCenterEntityHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterEntityHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.TrustCenterID(childComplexity), true case "TrustCenterEntityHistory.url": - if e.complexity.TrustCenterEntityHistory.URL == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.URL == nil { break } - return e.complexity.TrustCenterEntityHistory.URL(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.URL(childComplexity), true case "TrustCenterEntityHistory.updatedAt": - if e.complexity.TrustCenterEntityHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterEntityHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.UpdatedAt(childComplexity), true case "TrustCenterEntityHistory.updatedBy": - if e.complexity.TrustCenterEntityHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterEntityHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterEntityHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistory.UpdatedBy(childComplexity), true case "TrustCenterEntityHistoryConnection.edges": - if e.complexity.TrustCenterEntityHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterEntityHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterEntityHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistoryConnection.Edges(childComplexity), true case "TrustCenterEntityHistoryConnection.pageInfo": - if e.complexity.TrustCenterEntityHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterEntityHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterEntityHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistoryConnection.PageInfo(childComplexity), true case "TrustCenterEntityHistoryConnection.totalCount": - if e.complexity.TrustCenterEntityHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterEntityHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterEntityHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistoryConnection.TotalCount(childComplexity), true case "TrustCenterEntityHistoryEdge.cursor": - if e.complexity.TrustCenterEntityHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterEntityHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterEntityHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistoryEdge.Cursor(childComplexity), true case "TrustCenterEntityHistoryEdge.node": - if e.complexity.TrustCenterEntityHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterEntityHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterEntityHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterEntityHistoryEdge.Node(childComplexity), true case "TrustCenterFAQHistory.createdAt": - if e.complexity.TrustCenterFAQHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterFAQHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.CreatedAt(childComplexity), true case "TrustCenterFAQHistory.createdBy": - if e.complexity.TrustCenterFAQHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterFAQHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.CreatedBy(childComplexity), true case "TrustCenterFAQHistory.displayOrder": - if e.complexity.TrustCenterFAQHistory.DisplayOrder == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.DisplayOrder == nil { break } - return e.complexity.TrustCenterFAQHistory.DisplayOrder(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.DisplayOrder(childComplexity), true case "TrustCenterFAQHistory.historyTime": - if e.complexity.TrustCenterFAQHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterFAQHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.HistoryTime(childComplexity), true case "TrustCenterFAQHistory.id": - if e.complexity.TrustCenterFAQHistory.ID == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.ID == nil { break } - return e.complexity.TrustCenterFAQHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.ID(childComplexity), true case "TrustCenterFAQHistory.noteID": - if e.complexity.TrustCenterFAQHistory.NoteID == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.NoteID == nil { break } - return e.complexity.TrustCenterFAQHistory.NoteID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.NoteID(childComplexity), true case "TrustCenterFAQHistory.operation": - if e.complexity.TrustCenterFAQHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.Operation == nil { break } - return e.complexity.TrustCenterFAQHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.Operation(childComplexity), true case "TrustCenterFAQHistory.ref": - if e.complexity.TrustCenterFAQHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.Ref == nil { break } - return e.complexity.TrustCenterFAQHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.Ref(childComplexity), true case "TrustCenterFAQHistory.referenceLink": - if e.complexity.TrustCenterFAQHistory.ReferenceLink == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.ReferenceLink == nil { break } - return e.complexity.TrustCenterFAQHistory.ReferenceLink(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.ReferenceLink(childComplexity), true case "TrustCenterFAQHistory.trustCenterFaqKindID": - if e.complexity.TrustCenterFAQHistory.TrustCenterFaqKindID == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.TrustCenterFaqKindID == nil { break } - return e.complexity.TrustCenterFAQHistory.TrustCenterFaqKindID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.TrustCenterFaqKindID(childComplexity), true case "TrustCenterFAQHistory.trustCenterFaqKindName": - if e.complexity.TrustCenterFAQHistory.TrustCenterFaqKindName == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.TrustCenterFaqKindName == nil { break } - return e.complexity.TrustCenterFAQHistory.TrustCenterFaqKindName(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.TrustCenterFaqKindName(childComplexity), true case "TrustCenterFAQHistory.trustCenterID": - if e.complexity.TrustCenterFAQHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterFAQHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.TrustCenterID(childComplexity), true case "TrustCenterFAQHistory.updatedAt": - if e.complexity.TrustCenterFAQHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterFAQHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.UpdatedAt(childComplexity), true case "TrustCenterFAQHistory.updatedBy": - if e.complexity.TrustCenterFAQHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterFAQHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterFAQHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistory.UpdatedBy(childComplexity), true case "TrustCenterFAQHistoryConnection.edges": - if e.complexity.TrustCenterFAQHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterFAQHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterFAQHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistoryConnection.Edges(childComplexity), true case "TrustCenterFAQHistoryConnection.pageInfo": - if e.complexity.TrustCenterFAQHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterFAQHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterFAQHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistoryConnection.PageInfo(childComplexity), true case "TrustCenterFAQHistoryConnection.totalCount": - if e.complexity.TrustCenterFAQHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterFAQHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterFAQHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistoryConnection.TotalCount(childComplexity), true case "TrustCenterFAQHistoryEdge.cursor": - if e.complexity.TrustCenterFAQHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterFAQHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterFAQHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistoryEdge.Cursor(childComplexity), true case "TrustCenterFAQHistoryEdge.node": - if e.complexity.TrustCenterFAQHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterFAQHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterFAQHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterFAQHistoryEdge.Node(childComplexity), true case "TrustCenterHistory.createdAt": - if e.complexity.TrustCenterHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.CreatedAt(childComplexity), true case "TrustCenterHistory.createdBy": - if e.complexity.TrustCenterHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.CreatedBy(childComplexity), true case "TrustCenterHistory.customDomainID": - if e.complexity.TrustCenterHistory.CustomDomainID == nil { + if e.ComplexityRoot.TrustCenterHistory.CustomDomainID == nil { break } - return e.complexity.TrustCenterHistory.CustomDomainID(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.CustomDomainID(childComplexity), true case "TrustCenterHistory.historyTime": - if e.complexity.TrustCenterHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.HistoryTime(childComplexity), true case "TrustCenterHistory.id": - if e.complexity.TrustCenterHistory.ID == nil { + if e.ComplexityRoot.TrustCenterHistory.ID == nil { break } - return e.complexity.TrustCenterHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.ID(childComplexity), true case "TrustCenterHistory.operation": - if e.complexity.TrustCenterHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterHistory.Operation == nil { break } - return e.complexity.TrustCenterHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.Operation(childComplexity), true case "TrustCenterHistory.ownerID": - if e.complexity.TrustCenterHistory.OwnerID == nil { + if e.ComplexityRoot.TrustCenterHistory.OwnerID == nil { break } - return e.complexity.TrustCenterHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.OwnerID(childComplexity), true case "TrustCenterHistory.pirschAccessLink": - if e.complexity.TrustCenterHistory.PirschAccessLink == nil { + if e.ComplexityRoot.TrustCenterHistory.PirschAccessLink == nil { break } - return e.complexity.TrustCenterHistory.PirschAccessLink(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.PirschAccessLink(childComplexity), true case "TrustCenterHistory.pirschDomainID": - if e.complexity.TrustCenterHistory.PirschDomainID == nil { + if e.ComplexityRoot.TrustCenterHistory.PirschDomainID == nil { break } - return e.complexity.TrustCenterHistory.PirschDomainID(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.PirschDomainID(childComplexity), true case "TrustCenterHistory.pirschIdentificationCode": - if e.complexity.TrustCenterHistory.PirschIdentificationCode == nil { + if e.ComplexityRoot.TrustCenterHistory.PirschIdentificationCode == nil { break } - return e.complexity.TrustCenterHistory.PirschIdentificationCode(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.PirschIdentificationCode(childComplexity), true case "TrustCenterHistory.previewDomainID": - if e.complexity.TrustCenterHistory.PreviewDomainID == nil { + if e.ComplexityRoot.TrustCenterHistory.PreviewDomainID == nil { break } - return e.complexity.TrustCenterHistory.PreviewDomainID(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.PreviewDomainID(childComplexity), true case "TrustCenterHistory.previewStatus": - if e.complexity.TrustCenterHistory.PreviewStatus == nil { + if e.ComplexityRoot.TrustCenterHistory.PreviewStatus == nil { break } - return e.complexity.TrustCenterHistory.PreviewStatus(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.PreviewStatus(childComplexity), true case "TrustCenterHistory.ref": - if e.complexity.TrustCenterHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterHistory.Ref == nil { break } - return e.complexity.TrustCenterHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.Ref(childComplexity), true case "TrustCenterHistory.slug": - if e.complexity.TrustCenterHistory.Slug == nil { + if e.ComplexityRoot.TrustCenterHistory.Slug == nil { break } - return e.complexity.TrustCenterHistory.Slug(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.Slug(childComplexity), true case "TrustCenterHistory.subprocessorURL": - if e.complexity.TrustCenterHistory.SubprocessorURL == nil { + if e.ComplexityRoot.TrustCenterHistory.SubprocessorURL == nil { break } - return e.complexity.TrustCenterHistory.SubprocessorURL(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.SubprocessorURL(childComplexity), true case "TrustCenterHistory.tags": - if e.complexity.TrustCenterHistory.Tags == nil { + if e.ComplexityRoot.TrustCenterHistory.Tags == nil { break } - return e.complexity.TrustCenterHistory.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.Tags(childComplexity), true case "TrustCenterHistory.updatedAt": - if e.complexity.TrustCenterHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.UpdatedAt(childComplexity), true case "TrustCenterHistory.updatedBy": - if e.complexity.TrustCenterHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterHistory.UpdatedBy(childComplexity), true case "TrustCenterHistoryConnection.edges": - if e.complexity.TrustCenterHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterHistoryConnection.Edges(childComplexity), true case "TrustCenterHistoryConnection.pageInfo": - if e.complexity.TrustCenterHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterHistoryConnection.PageInfo(childComplexity), true case "TrustCenterHistoryConnection.totalCount": - if e.complexity.TrustCenterHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterHistoryConnection.TotalCount(childComplexity), true case "TrustCenterHistoryEdge.cursor": - if e.complexity.TrustCenterHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterHistoryEdge.Cursor(childComplexity), true case "TrustCenterHistoryEdge.node": - if e.complexity.TrustCenterHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterHistoryEdge.Node(childComplexity), true case "TrustCenterNDARequestHistory.accessLevel": - if e.complexity.TrustCenterNDARequestHistory.AccessLevel == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.AccessLevel == nil { break } - return e.complexity.TrustCenterNDARequestHistory.AccessLevel(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.AccessLevel(childComplexity), true case "TrustCenterNDARequestHistory.approvedAt": - if e.complexity.TrustCenterNDARequestHistory.ApprovedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.ApprovedAt == nil { break } - return e.complexity.TrustCenterNDARequestHistory.ApprovedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.ApprovedAt(childComplexity), true case "TrustCenterNDARequestHistory.approvedByUserID": - if e.complexity.TrustCenterNDARequestHistory.ApprovedByUserID == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.ApprovedByUserID == nil { break } - return e.complexity.TrustCenterNDARequestHistory.ApprovedByUserID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.ApprovedByUserID(childComplexity), true case "TrustCenterNDARequestHistory.companyName": - if e.complexity.TrustCenterNDARequestHistory.CompanyName == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.CompanyName == nil { break } - return e.complexity.TrustCenterNDARequestHistory.CompanyName(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.CompanyName(childComplexity), true case "TrustCenterNDARequestHistory.createdAt": - if e.complexity.TrustCenterNDARequestHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterNDARequestHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.CreatedAt(childComplexity), true case "TrustCenterNDARequestHistory.createdBy": - if e.complexity.TrustCenterNDARequestHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterNDARequestHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.CreatedBy(childComplexity), true case "TrustCenterNDARequestHistory.documentDataID": - if e.complexity.TrustCenterNDARequestHistory.DocumentDataID == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.DocumentDataID == nil { break } - return e.complexity.TrustCenterNDARequestHistory.DocumentDataID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.DocumentDataID(childComplexity), true case "TrustCenterNDARequestHistory.email": - if e.complexity.TrustCenterNDARequestHistory.Email == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.Email == nil { break } - return e.complexity.TrustCenterNDARequestHistory.Email(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.Email(childComplexity), true case "TrustCenterNDARequestHistory.fileID": - if e.complexity.TrustCenterNDARequestHistory.FileID == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.FileID == nil { break } - return e.complexity.TrustCenterNDARequestHistory.FileID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.FileID(childComplexity), true case "TrustCenterNDARequestHistory.firstName": - if e.complexity.TrustCenterNDARequestHistory.FirstName == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.FirstName == nil { break } - return e.complexity.TrustCenterNDARequestHistory.FirstName(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.FirstName(childComplexity), true case "TrustCenterNDARequestHistory.historyTime": - if e.complexity.TrustCenterNDARequestHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterNDARequestHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.HistoryTime(childComplexity), true case "TrustCenterNDARequestHistory.id": - if e.complexity.TrustCenterNDARequestHistory.ID == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.ID == nil { break } - return e.complexity.TrustCenterNDARequestHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.ID(childComplexity), true case "TrustCenterNDARequestHistory.lastName": - if e.complexity.TrustCenterNDARequestHistory.LastName == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.LastName == nil { break } - return e.complexity.TrustCenterNDARequestHistory.LastName(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.LastName(childComplexity), true case "TrustCenterNDARequestHistory.operation": - if e.complexity.TrustCenterNDARequestHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.Operation == nil { break } - return e.complexity.TrustCenterNDARequestHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.Operation(childComplexity), true case "TrustCenterNDARequestHistory.reason": - if e.complexity.TrustCenterNDARequestHistory.Reason == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.Reason == nil { break } - return e.complexity.TrustCenterNDARequestHistory.Reason(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.Reason(childComplexity), true case "TrustCenterNDARequestHistory.ref": - if e.complexity.TrustCenterNDARequestHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.Ref == nil { break } - return e.complexity.TrustCenterNDARequestHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.Ref(childComplexity), true case "TrustCenterNDARequestHistory.signedAt": - if e.complexity.TrustCenterNDARequestHistory.SignedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.SignedAt == nil { break } - return e.complexity.TrustCenterNDARequestHistory.SignedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.SignedAt(childComplexity), true case "TrustCenterNDARequestHistory.status": - if e.complexity.TrustCenterNDARequestHistory.Status == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.Status == nil { break } - return e.complexity.TrustCenterNDARequestHistory.Status(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.Status(childComplexity), true case "TrustCenterNDARequestHistory.tags": - if e.complexity.TrustCenterNDARequestHistory.Tags == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.Tags == nil { break } - return e.complexity.TrustCenterNDARequestHistory.Tags(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.Tags(childComplexity), true case "TrustCenterNDARequestHistory.trustCenterID": - if e.complexity.TrustCenterNDARequestHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterNDARequestHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.TrustCenterID(childComplexity), true case "TrustCenterNDARequestHistory.updatedAt": - if e.complexity.TrustCenterNDARequestHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterNDARequestHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.UpdatedAt(childComplexity), true case "TrustCenterNDARequestHistory.updatedBy": - if e.complexity.TrustCenterNDARequestHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterNDARequestHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistory.UpdatedBy(childComplexity), true case "TrustCenterNDARequestHistoryConnection.edges": - if e.complexity.TrustCenterNDARequestHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterNDARequestHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistoryConnection.Edges(childComplexity), true case "TrustCenterNDARequestHistoryConnection.pageInfo": - if e.complexity.TrustCenterNDARequestHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterNDARequestHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistoryConnection.PageInfo(childComplexity), true case "TrustCenterNDARequestHistoryConnection.totalCount": - if e.complexity.TrustCenterNDARequestHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterNDARequestHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistoryConnection.TotalCount(childComplexity), true case "TrustCenterNDARequestHistoryEdge.cursor": - if e.complexity.TrustCenterNDARequestHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterNDARequestHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistoryEdge.Cursor(childComplexity), true case "TrustCenterNDARequestHistoryEdge.node": - if e.complexity.TrustCenterNDARequestHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterNDARequestHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterNDARequestHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterNDARequestHistoryEdge.Node(childComplexity), true case "TrustCenterSettingHistory.accentColor": - if e.complexity.TrustCenterSettingHistory.AccentColor == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.AccentColor == nil { break } - return e.complexity.TrustCenterSettingHistory.AccentColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.AccentColor(childComplexity), true case "TrustCenterSettingHistory.backgroundColor": - if e.complexity.TrustCenterSettingHistory.BackgroundColor == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.BackgroundColor == nil { break } - return e.complexity.TrustCenterSettingHistory.BackgroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.BackgroundColor(childComplexity), true case "TrustCenterSettingHistory.companyDescription": - if e.complexity.TrustCenterSettingHistory.CompanyDescription == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.CompanyDescription == nil { break } - return e.complexity.TrustCenterSettingHistory.CompanyDescription(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.CompanyDescription(childComplexity), true case "TrustCenterSettingHistory.companyDomain": - if e.complexity.TrustCenterSettingHistory.CompanyDomain == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.CompanyDomain == nil { break } - return e.complexity.TrustCenterSettingHistory.CompanyDomain(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.CompanyDomain(childComplexity), true case "TrustCenterSettingHistory.companyName": - if e.complexity.TrustCenterSettingHistory.CompanyName == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.CompanyName == nil { break } - return e.complexity.TrustCenterSettingHistory.CompanyName(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.CompanyName(childComplexity), true case "TrustCenterSettingHistory.createdAt": - if e.complexity.TrustCenterSettingHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterSettingHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.CreatedAt(childComplexity), true case "TrustCenterSettingHistory.createdBy": - if e.complexity.TrustCenterSettingHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterSettingHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.CreatedBy(childComplexity), true case "TrustCenterSettingHistory.environment": - if e.complexity.TrustCenterSettingHistory.Environment == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.Environment == nil { break } - return e.complexity.TrustCenterSettingHistory.Environment(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.Environment(childComplexity), true case "TrustCenterSettingHistory.faviconLocalFileID": - if e.complexity.TrustCenterSettingHistory.FaviconLocalFileID == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.FaviconLocalFileID == nil { break } - return e.complexity.TrustCenterSettingHistory.FaviconLocalFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.FaviconLocalFileID(childComplexity), true case "TrustCenterSettingHistory.faviconRemoteURL": - if e.complexity.TrustCenterSettingHistory.FaviconRemoteURL == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.FaviconRemoteURL == nil { break } - return e.complexity.TrustCenterSettingHistory.FaviconRemoteURL(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.FaviconRemoteURL(childComplexity), true case "TrustCenterSettingHistory.font": - if e.complexity.TrustCenterSettingHistory.Font == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.Font == nil { break } - return e.complexity.TrustCenterSettingHistory.Font(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.Font(childComplexity), true case "TrustCenterSettingHistory.foregroundColor": - if e.complexity.TrustCenterSettingHistory.ForegroundColor == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.ForegroundColor == nil { break } - return e.complexity.TrustCenterSettingHistory.ForegroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.ForegroundColor(childComplexity), true case "TrustCenterSettingHistory.historyTime": - if e.complexity.TrustCenterSettingHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterSettingHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.HistoryTime(childComplexity), true case "TrustCenterSettingHistory.id": - if e.complexity.TrustCenterSettingHistory.ID == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.ID == nil { break } - return e.complexity.TrustCenterSettingHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.ID(childComplexity), true case "TrustCenterSettingHistory.logoLocalFileID": - if e.complexity.TrustCenterSettingHistory.LogoLocalFileID == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.LogoLocalFileID == nil { break } - return e.complexity.TrustCenterSettingHistory.LogoLocalFileID(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.LogoLocalFileID(childComplexity), true case "TrustCenterSettingHistory.logoRemoteURL": - if e.complexity.TrustCenterSettingHistory.LogoRemoteURL == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.LogoRemoteURL == nil { break } - return e.complexity.TrustCenterSettingHistory.LogoRemoteURL(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.LogoRemoteURL(childComplexity), true case "TrustCenterSettingHistory.ndaApprovalRequired": - if e.complexity.TrustCenterSettingHistory.NdaApprovalRequired == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.NdaApprovalRequired == nil { break } - return e.complexity.TrustCenterSettingHistory.NdaApprovalRequired(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.NdaApprovalRequired(childComplexity), true case "TrustCenterSettingHistory.operation": - if e.complexity.TrustCenterSettingHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.Operation == nil { break } - return e.complexity.TrustCenterSettingHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.Operation(childComplexity), true case "TrustCenterSettingHistory.overview": - if e.complexity.TrustCenterSettingHistory.Overview == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.Overview == nil { break } - return e.complexity.TrustCenterSettingHistory.Overview(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.Overview(childComplexity), true case "TrustCenterSettingHistory.primaryColor": - if e.complexity.TrustCenterSettingHistory.PrimaryColor == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.PrimaryColor == nil { break } - return e.complexity.TrustCenterSettingHistory.PrimaryColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.PrimaryColor(childComplexity), true case "TrustCenterSettingHistory.ref": - if e.complexity.TrustCenterSettingHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.Ref == nil { break } - return e.complexity.TrustCenterSettingHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.Ref(childComplexity), true case "TrustCenterSettingHistory.removeBranding": - if e.complexity.TrustCenterSettingHistory.RemoveBranding == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.RemoveBranding == nil { break } - return e.complexity.TrustCenterSettingHistory.RemoveBranding(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.RemoveBranding(childComplexity), true case "TrustCenterSettingHistory.secondaryBackgroundColor": - if e.complexity.TrustCenterSettingHistory.SecondaryBackgroundColor == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.SecondaryBackgroundColor == nil { break } - return e.complexity.TrustCenterSettingHistory.SecondaryBackgroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.SecondaryBackgroundColor(childComplexity), true case "TrustCenterSettingHistory.secondaryForegroundColor": - if e.complexity.TrustCenterSettingHistory.SecondaryForegroundColor == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.SecondaryForegroundColor == nil { break } - return e.complexity.TrustCenterSettingHistory.SecondaryForegroundColor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.SecondaryForegroundColor(childComplexity), true case "TrustCenterSettingHistory.securityContact": - if e.complexity.TrustCenterSettingHistory.SecurityContact == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.SecurityContact == nil { break } - return e.complexity.TrustCenterSettingHistory.SecurityContact(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.SecurityContact(childComplexity), true case "TrustCenterSettingHistory.statusPageURL": - if e.complexity.TrustCenterSettingHistory.StatusPageURL == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.StatusPageURL == nil { break } - return e.complexity.TrustCenterSettingHistory.StatusPageURL(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.StatusPageURL(childComplexity), true case "TrustCenterSettingHistory.themeMode": - if e.complexity.TrustCenterSettingHistory.ThemeMode == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.ThemeMode == nil { break } - return e.complexity.TrustCenterSettingHistory.ThemeMode(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.ThemeMode(childComplexity), true case "TrustCenterSettingHistory.title": - if e.complexity.TrustCenterSettingHistory.Title == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.Title == nil { break } - return e.complexity.TrustCenterSettingHistory.Title(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.Title(childComplexity), true case "TrustCenterSettingHistory.trustCenterID": - if e.complexity.TrustCenterSettingHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterSettingHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.TrustCenterID(childComplexity), true case "TrustCenterSettingHistory.updatedAt": - if e.complexity.TrustCenterSettingHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterSettingHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.UpdatedAt(childComplexity), true case "TrustCenterSettingHistory.updatedBy": - if e.complexity.TrustCenterSettingHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterSettingHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterSettingHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistory.UpdatedBy(childComplexity), true case "TrustCenterSettingHistoryConnection.edges": - if e.complexity.TrustCenterSettingHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterSettingHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterSettingHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistoryConnection.Edges(childComplexity), true case "TrustCenterSettingHistoryConnection.pageInfo": - if e.complexity.TrustCenterSettingHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterSettingHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterSettingHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistoryConnection.PageInfo(childComplexity), true case "TrustCenterSettingHistoryConnection.totalCount": - if e.complexity.TrustCenterSettingHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterSettingHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterSettingHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistoryConnection.TotalCount(childComplexity), true case "TrustCenterSettingHistoryEdge.cursor": - if e.complexity.TrustCenterSettingHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterSettingHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterSettingHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistoryEdge.Cursor(childComplexity), true case "TrustCenterSettingHistoryEdge.node": - if e.complexity.TrustCenterSettingHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterSettingHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterSettingHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterSettingHistoryEdge.Node(childComplexity), true case "TrustCenterSubprocessorHistory.countries": - if e.complexity.TrustCenterSubprocessorHistory.Countries == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.Countries == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.Countries(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.Countries(childComplexity), true case "TrustCenterSubprocessorHistory.createdAt": - if e.complexity.TrustCenterSubprocessorHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.CreatedAt(childComplexity), true case "TrustCenterSubprocessorHistory.createdBy": - if e.complexity.TrustCenterSubprocessorHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.CreatedBy(childComplexity), true case "TrustCenterSubprocessorHistory.historyTime": - if e.complexity.TrustCenterSubprocessorHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.HistoryTime(childComplexity), true case "TrustCenterSubprocessorHistory.id": - if e.complexity.TrustCenterSubprocessorHistory.ID == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.ID == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.ID(childComplexity), true case "TrustCenterSubprocessorHistory.operation": - if e.complexity.TrustCenterSubprocessorHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.Operation == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.Operation(childComplexity), true case "TrustCenterSubprocessorHistory.ref": - if e.complexity.TrustCenterSubprocessorHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.Ref == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.Ref(childComplexity), true case "TrustCenterSubprocessorHistory.subprocessorID": - if e.complexity.TrustCenterSubprocessorHistory.SubprocessorID == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.SubprocessorID == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.SubprocessorID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.SubprocessorID(childComplexity), true case "TrustCenterSubprocessorHistory.trustCenterID": - if e.complexity.TrustCenterSubprocessorHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.TrustCenterID(childComplexity), true case "TrustCenterSubprocessorHistory.trustCenterSubprocessorKindID": - if e.complexity.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindID == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindID == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindID(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindID(childComplexity), true case "TrustCenterSubprocessorHistory.trustCenterSubprocessorKindName": - if e.complexity.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindName == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindName == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindName(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.TrustCenterSubprocessorKindName(childComplexity), true case "TrustCenterSubprocessorHistory.updatedAt": - if e.complexity.TrustCenterSubprocessorHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.UpdatedAt(childComplexity), true case "TrustCenterSubprocessorHistory.updatedBy": - if e.complexity.TrustCenterSubprocessorHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterSubprocessorHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistory.UpdatedBy(childComplexity), true case "TrustCenterSubprocessorHistoryConnection.edges": - if e.complexity.TrustCenterSubprocessorHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterSubprocessorHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistoryConnection.Edges(childComplexity), true case "TrustCenterSubprocessorHistoryConnection.pageInfo": - if e.complexity.TrustCenterSubprocessorHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterSubprocessorHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistoryConnection.PageInfo(childComplexity), true case "TrustCenterSubprocessorHistoryConnection.totalCount": - if e.complexity.TrustCenterSubprocessorHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterSubprocessorHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistoryConnection.TotalCount(childComplexity), true case "TrustCenterSubprocessorHistoryEdge.cursor": - if e.complexity.TrustCenterSubprocessorHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterSubprocessorHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistoryEdge.Cursor(childComplexity), true case "TrustCenterSubprocessorHistoryEdge.node": - if e.complexity.TrustCenterSubprocessorHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterSubprocessorHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterSubprocessorHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterSubprocessorHistoryEdge.Node(childComplexity), true case "TrustCenterWatermarkConfigHistory.color": - if e.complexity.TrustCenterWatermarkConfigHistory.Color == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Color == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.Color(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Color(childComplexity), true case "TrustCenterWatermarkConfigHistory.createdAt": - if e.complexity.TrustCenterWatermarkConfigHistory.CreatedAt == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.CreatedAt == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.CreatedAt(childComplexity), true case "TrustCenterWatermarkConfigHistory.createdBy": - if e.complexity.TrustCenterWatermarkConfigHistory.CreatedBy == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.CreatedBy == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.CreatedBy(childComplexity), true case "TrustCenterWatermarkConfigHistory.font": - if e.complexity.TrustCenterWatermarkConfigHistory.Font == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Font == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.Font(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Font(childComplexity), true case "TrustCenterWatermarkConfigHistory.fontSize": - if e.complexity.TrustCenterWatermarkConfigHistory.FontSize == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.FontSize == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.FontSize(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.FontSize(childComplexity), true case "TrustCenterWatermarkConfigHistory.historyTime": - if e.complexity.TrustCenterWatermarkConfigHistory.HistoryTime == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.HistoryTime == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.HistoryTime(childComplexity), true case "TrustCenterWatermarkConfigHistory.id": - if e.complexity.TrustCenterWatermarkConfigHistory.ID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.ID == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.ID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.ID(childComplexity), true case "TrustCenterWatermarkConfigHistory.isEnabled": - if e.complexity.TrustCenterWatermarkConfigHistory.IsEnabled == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.IsEnabled == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.IsEnabled(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.IsEnabled(childComplexity), true case "TrustCenterWatermarkConfigHistory.logoID": - if e.complexity.TrustCenterWatermarkConfigHistory.LogoID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.LogoID == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.LogoID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.LogoID(childComplexity), true case "TrustCenterWatermarkConfigHistory.opacity": - if e.complexity.TrustCenterWatermarkConfigHistory.Opacity == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Opacity == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.Opacity(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Opacity(childComplexity), true case "TrustCenterWatermarkConfigHistory.operation": - if e.complexity.TrustCenterWatermarkConfigHistory.Operation == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Operation == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.Operation(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Operation(childComplexity), true case "TrustCenterWatermarkConfigHistory.ownerID": - if e.complexity.TrustCenterWatermarkConfigHistory.OwnerID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.OwnerID == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.OwnerID(childComplexity), true case "TrustCenterWatermarkConfigHistory.ref": - if e.complexity.TrustCenterWatermarkConfigHistory.Ref == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Ref == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.Ref(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Ref(childComplexity), true case "TrustCenterWatermarkConfigHistory.rotation": - if e.complexity.TrustCenterWatermarkConfigHistory.Rotation == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Rotation == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.Rotation(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Rotation(childComplexity), true case "TrustCenterWatermarkConfigHistory.text": - if e.complexity.TrustCenterWatermarkConfigHistory.Text == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Text == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.Text(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.Text(childComplexity), true case "TrustCenterWatermarkConfigHistory.trustCenterID": - if e.complexity.TrustCenterWatermarkConfigHistory.TrustCenterID == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.TrustCenterID == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.TrustCenterID(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.TrustCenterID(childComplexity), true case "TrustCenterWatermarkConfigHistory.updatedAt": - if e.complexity.TrustCenterWatermarkConfigHistory.UpdatedAt == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.UpdatedAt == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.UpdatedAt(childComplexity), true case "TrustCenterWatermarkConfigHistory.updatedBy": - if e.complexity.TrustCenterWatermarkConfigHistory.UpdatedBy == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistory.UpdatedBy == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistory.UpdatedBy(childComplexity), true case "TrustCenterWatermarkConfigHistoryConnection.edges": - if e.complexity.TrustCenterWatermarkConfigHistoryConnection.Edges == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistoryConnection.Edges == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistoryConnection.Edges(childComplexity), true case "TrustCenterWatermarkConfigHistoryConnection.pageInfo": - if e.complexity.TrustCenterWatermarkConfigHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistoryConnection.PageInfo == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistoryConnection.PageInfo(childComplexity), true case "TrustCenterWatermarkConfigHistoryConnection.totalCount": - if e.complexity.TrustCenterWatermarkConfigHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistoryConnection.TotalCount == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistoryConnection.TotalCount(childComplexity), true case "TrustCenterWatermarkConfigHistoryEdge.cursor": - if e.complexity.TrustCenterWatermarkConfigHistoryEdge.Cursor == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistoryEdge.Cursor == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistoryEdge.Cursor(childComplexity), true case "TrustCenterWatermarkConfigHistoryEdge.node": - if e.complexity.TrustCenterWatermarkConfigHistoryEdge.Node == nil { + if e.ComplexityRoot.TrustCenterWatermarkConfigHistoryEdge.Node == nil { break } - return e.complexity.TrustCenterWatermarkConfigHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.TrustCenterWatermarkConfigHistoryEdge.Node(childComplexity), true case "UserHistory.authProvider": - if e.complexity.UserHistory.AuthProvider == nil { + if e.ComplexityRoot.UserHistory.AuthProvider == nil { break } - return e.complexity.UserHistory.AuthProvider(childComplexity), true + return e.ComplexityRoot.UserHistory.AuthProvider(childComplexity), true case "UserHistory.avatarLocalFileID": - if e.complexity.UserHistory.AvatarLocalFileID == nil { + if e.ComplexityRoot.UserHistory.AvatarLocalFileID == nil { break } - return e.complexity.UserHistory.AvatarLocalFileID(childComplexity), true + return e.ComplexityRoot.UserHistory.AvatarLocalFileID(childComplexity), true case "UserHistory.avatarRemoteURL": - if e.complexity.UserHistory.AvatarRemoteURL == nil { + if e.ComplexityRoot.UserHistory.AvatarRemoteURL == nil { break } - return e.complexity.UserHistory.AvatarRemoteURL(childComplexity), true + return e.ComplexityRoot.UserHistory.AvatarRemoteURL(childComplexity), true case "UserHistory.avatarUpdatedAt": - if e.complexity.UserHistory.AvatarUpdatedAt == nil { + if e.ComplexityRoot.UserHistory.AvatarUpdatedAt == nil { break } - return e.complexity.UserHistory.AvatarUpdatedAt(childComplexity), true + return e.ComplexityRoot.UserHistory.AvatarUpdatedAt(childComplexity), true case "UserHistory.createdAt": - if e.complexity.UserHistory.CreatedAt == nil { + if e.ComplexityRoot.UserHistory.CreatedAt == nil { break } - return e.complexity.UserHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.UserHistory.CreatedAt(childComplexity), true case "UserHistory.createdBy": - if e.complexity.UserHistory.CreatedBy == nil { + if e.ComplexityRoot.UserHistory.CreatedBy == nil { break } - return e.complexity.UserHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.UserHistory.CreatedBy(childComplexity), true case "UserHistory.displayID": - if e.complexity.UserHistory.DisplayID == nil { + if e.ComplexityRoot.UserHistory.DisplayID == nil { break } - return e.complexity.UserHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.UserHistory.DisplayID(childComplexity), true case "UserHistory.displayName": - if e.complexity.UserHistory.DisplayName == nil { + if e.ComplexityRoot.UserHistory.DisplayName == nil { break } - return e.complexity.UserHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.UserHistory.DisplayName(childComplexity), true case "UserHistory.email": - if e.complexity.UserHistory.Email == nil { + if e.ComplexityRoot.UserHistory.Email == nil { break } - return e.complexity.UserHistory.Email(childComplexity), true + return e.ComplexityRoot.UserHistory.Email(childComplexity), true case "UserHistory.firstName": - if e.complexity.UserHistory.FirstName == nil { + if e.ComplexityRoot.UserHistory.FirstName == nil { break } - return e.complexity.UserHistory.FirstName(childComplexity), true + return e.ComplexityRoot.UserHistory.FirstName(childComplexity), true case "UserHistory.historyTime": - if e.complexity.UserHistory.HistoryTime == nil { + if e.ComplexityRoot.UserHistory.HistoryTime == nil { break } - return e.complexity.UserHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.UserHistory.HistoryTime(childComplexity), true case "UserHistory.id": - if e.complexity.UserHistory.ID == nil { + if e.ComplexityRoot.UserHistory.ID == nil { break } - return e.complexity.UserHistory.ID(childComplexity), true + return e.ComplexityRoot.UserHistory.ID(childComplexity), true case "UserHistory.lastLoginProvider": - if e.complexity.UserHistory.LastLoginProvider == nil { + if e.ComplexityRoot.UserHistory.LastLoginProvider == nil { break } - return e.complexity.UserHistory.LastLoginProvider(childComplexity), true + return e.ComplexityRoot.UserHistory.LastLoginProvider(childComplexity), true case "UserHistory.lastName": - if e.complexity.UserHistory.LastName == nil { + if e.ComplexityRoot.UserHistory.LastName == nil { break } - return e.complexity.UserHistory.LastName(childComplexity), true + return e.ComplexityRoot.UserHistory.LastName(childComplexity), true case "UserHistory.lastSeen": - if e.complexity.UserHistory.LastSeen == nil { + if e.ComplexityRoot.UserHistory.LastSeen == nil { break } - return e.complexity.UserHistory.LastSeen(childComplexity), true + return e.ComplexityRoot.UserHistory.LastSeen(childComplexity), true case "UserHistory.operation": - if e.complexity.UserHistory.Operation == nil { + if e.ComplexityRoot.UserHistory.Operation == nil { break } - return e.complexity.UserHistory.Operation(childComplexity), true + return e.ComplexityRoot.UserHistory.Operation(childComplexity), true case "UserHistory.ref": - if e.complexity.UserHistory.Ref == nil { + if e.ComplexityRoot.UserHistory.Ref == nil { break } - return e.complexity.UserHistory.Ref(childComplexity), true + return e.ComplexityRoot.UserHistory.Ref(childComplexity), true case "UserHistory.role": - if e.complexity.UserHistory.Role == nil { + if e.ComplexityRoot.UserHistory.Role == nil { break } - return e.complexity.UserHistory.Role(childComplexity), true + return e.ComplexityRoot.UserHistory.Role(childComplexity), true case "UserHistory.scimActive": - if e.complexity.UserHistory.ScimActive == nil { + if e.ComplexityRoot.UserHistory.ScimActive == nil { break } - return e.complexity.UserHistory.ScimActive(childComplexity), true + return e.ComplexityRoot.UserHistory.ScimActive(childComplexity), true case "UserHistory.scimExternalID": - if e.complexity.UserHistory.ScimExternalID == nil { + if e.ComplexityRoot.UserHistory.ScimExternalID == nil { break } - return e.complexity.UserHistory.ScimExternalID(childComplexity), true + return e.ComplexityRoot.UserHistory.ScimExternalID(childComplexity), true case "UserHistory.scimLocale": - if e.complexity.UserHistory.ScimLocale == nil { + if e.ComplexityRoot.UserHistory.ScimLocale == nil { break } - return e.complexity.UserHistory.ScimLocale(childComplexity), true + return e.ComplexityRoot.UserHistory.ScimLocale(childComplexity), true case "UserHistory.scimPreferredLanguage": - if e.complexity.UserHistory.ScimPreferredLanguage == nil { + if e.ComplexityRoot.UserHistory.ScimPreferredLanguage == nil { break } - return e.complexity.UserHistory.ScimPreferredLanguage(childComplexity), true + return e.ComplexityRoot.UserHistory.ScimPreferredLanguage(childComplexity), true case "UserHistory.scimUsername": - if e.complexity.UserHistory.ScimUsername == nil { + if e.ComplexityRoot.UserHistory.ScimUsername == nil { break } - return e.complexity.UserHistory.ScimUsername(childComplexity), true + return e.ComplexityRoot.UserHistory.ScimUsername(childComplexity), true case "UserHistory.sub": - if e.complexity.UserHistory.Sub == nil { + if e.ComplexityRoot.UserHistory.Sub == nil { break } - return e.complexity.UserHistory.Sub(childComplexity), true + return e.ComplexityRoot.UserHistory.Sub(childComplexity), true case "UserHistory.tags": - if e.complexity.UserHistory.Tags == nil { + if e.ComplexityRoot.UserHistory.Tags == nil { break } - return e.complexity.UserHistory.Tags(childComplexity), true + return e.ComplexityRoot.UserHistory.Tags(childComplexity), true case "UserHistory.updatedAt": - if e.complexity.UserHistory.UpdatedAt == nil { + if e.ComplexityRoot.UserHistory.UpdatedAt == nil { break } - return e.complexity.UserHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.UserHistory.UpdatedAt(childComplexity), true case "UserHistory.updatedBy": - if e.complexity.UserHistory.UpdatedBy == nil { + if e.ComplexityRoot.UserHistory.UpdatedBy == nil { break } - return e.complexity.UserHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.UserHistory.UpdatedBy(childComplexity), true case "UserHistoryConnection.edges": - if e.complexity.UserHistoryConnection.Edges == nil { + if e.ComplexityRoot.UserHistoryConnection.Edges == nil { break } - return e.complexity.UserHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.UserHistoryConnection.Edges(childComplexity), true case "UserHistoryConnection.pageInfo": - if e.complexity.UserHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.UserHistoryConnection.PageInfo == nil { break } - return e.complexity.UserHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.UserHistoryConnection.PageInfo(childComplexity), true case "UserHistoryConnection.totalCount": - if e.complexity.UserHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.UserHistoryConnection.TotalCount == nil { break } - return e.complexity.UserHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.UserHistoryConnection.TotalCount(childComplexity), true case "UserHistoryEdge.cursor": - if e.complexity.UserHistoryEdge.Cursor == nil { + if e.ComplexityRoot.UserHistoryEdge.Cursor == nil { break } - return e.complexity.UserHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.UserHistoryEdge.Cursor(childComplexity), true case "UserHistoryEdge.node": - if e.complexity.UserHistoryEdge.Node == nil { + if e.ComplexityRoot.UserHistoryEdge.Node == nil { break } - return e.complexity.UserHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.UserHistoryEdge.Node(childComplexity), true case "UserSettingHistory.createdAt": - if e.complexity.UserSettingHistory.CreatedAt == nil { + if e.ComplexityRoot.UserSettingHistory.CreatedAt == nil { break } - return e.complexity.UserSettingHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.CreatedAt(childComplexity), true case "UserSettingHistory.createdBy": - if e.complexity.UserSettingHistory.CreatedBy == nil { + if e.ComplexityRoot.UserSettingHistory.CreatedBy == nil { break } - return e.complexity.UserSettingHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.CreatedBy(childComplexity), true case "UserSettingHistory.delegateEndAt": - if e.complexity.UserSettingHistory.DelegateEndAt == nil { + if e.ComplexityRoot.UserSettingHistory.DelegateEndAt == nil { break } - return e.complexity.UserSettingHistory.DelegateEndAt(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.DelegateEndAt(childComplexity), true case "UserSettingHistory.delegateStartAt": - if e.complexity.UserSettingHistory.DelegateStartAt == nil { + if e.ComplexityRoot.UserSettingHistory.DelegateStartAt == nil { break } - return e.complexity.UserSettingHistory.DelegateStartAt(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.DelegateStartAt(childComplexity), true case "UserSettingHistory.delegateUserID": - if e.complexity.UserSettingHistory.DelegateUserID == nil { + if e.ComplexityRoot.UserSettingHistory.DelegateUserID == nil { break } - return e.complexity.UserSettingHistory.DelegateUserID(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.DelegateUserID(childComplexity), true case "UserSettingHistory.emailConfirmed": - if e.complexity.UserSettingHistory.EmailConfirmed == nil { + if e.ComplexityRoot.UserSettingHistory.EmailConfirmed == nil { break } - return e.complexity.UserSettingHistory.EmailConfirmed(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.EmailConfirmed(childComplexity), true case "UserSettingHistory.historyTime": - if e.complexity.UserSettingHistory.HistoryTime == nil { + if e.ComplexityRoot.UserSettingHistory.HistoryTime == nil { break } - return e.complexity.UserSettingHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.HistoryTime(childComplexity), true case "UserSettingHistory.id": - if e.complexity.UserSettingHistory.ID == nil { + if e.ComplexityRoot.UserSettingHistory.ID == nil { break } - return e.complexity.UserSettingHistory.ID(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.ID(childComplexity), true case "UserSettingHistory.isTfaEnabled": - if e.complexity.UserSettingHistory.IsTfaEnabled == nil { + if e.ComplexityRoot.UserSettingHistory.IsTfaEnabled == nil { break } - return e.complexity.UserSettingHistory.IsTfaEnabled(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.IsTfaEnabled(childComplexity), true case "UserSettingHistory.isWebauthnAllowed": - if e.complexity.UserSettingHistory.IsWebauthnAllowed == nil { + if e.ComplexityRoot.UserSettingHistory.IsWebauthnAllowed == nil { break } - return e.complexity.UserSettingHistory.IsWebauthnAllowed(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.IsWebauthnAllowed(childComplexity), true case "UserSettingHistory.locked": - if e.complexity.UserSettingHistory.Locked == nil { + if e.ComplexityRoot.UserSettingHistory.Locked == nil { break } - return e.complexity.UserSettingHistory.Locked(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.Locked(childComplexity), true case "UserSettingHistory.operation": - if e.complexity.UserSettingHistory.Operation == nil { + if e.ComplexityRoot.UserSettingHistory.Operation == nil { break } - return e.complexity.UserSettingHistory.Operation(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.Operation(childComplexity), true case "UserSettingHistory.ref": - if e.complexity.UserSettingHistory.Ref == nil { + if e.ComplexityRoot.UserSettingHistory.Ref == nil { break } - return e.complexity.UserSettingHistory.Ref(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.Ref(childComplexity), true case "UserSettingHistory.silencedAt": - if e.complexity.UserSettingHistory.SilencedAt == nil { + if e.ComplexityRoot.UserSettingHistory.SilencedAt == nil { break } - return e.complexity.UserSettingHistory.SilencedAt(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.SilencedAt(childComplexity), true case "UserSettingHistory.status": - if e.complexity.UserSettingHistory.Status == nil { + if e.ComplexityRoot.UserSettingHistory.Status == nil { break } - return e.complexity.UserSettingHistory.Status(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.Status(childComplexity), true case "UserSettingHistory.suspendedAt": - if e.complexity.UserSettingHistory.SuspendedAt == nil { + if e.ComplexityRoot.UserSettingHistory.SuspendedAt == nil { break } - return e.complexity.UserSettingHistory.SuspendedAt(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.SuspendedAt(childComplexity), true case "UserSettingHistory.tags": - if e.complexity.UserSettingHistory.Tags == nil { + if e.ComplexityRoot.UserSettingHistory.Tags == nil { break } - return e.complexity.UserSettingHistory.Tags(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.Tags(childComplexity), true case "UserSettingHistory.updatedAt": - if e.complexity.UserSettingHistory.UpdatedAt == nil { + if e.ComplexityRoot.UserSettingHistory.UpdatedAt == nil { break } - return e.complexity.UserSettingHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.UpdatedAt(childComplexity), true case "UserSettingHistory.updatedBy": - if e.complexity.UserSettingHistory.UpdatedBy == nil { + if e.ComplexityRoot.UserSettingHistory.UpdatedBy == nil { break } - return e.complexity.UserSettingHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.UpdatedBy(childComplexity), true case "UserSettingHistory.userID": - if e.complexity.UserSettingHistory.UserID == nil { + if e.ComplexityRoot.UserSettingHistory.UserID == nil { break } - return e.complexity.UserSettingHistory.UserID(childComplexity), true + return e.ComplexityRoot.UserSettingHistory.UserID(childComplexity), true case "UserSettingHistoryConnection.edges": - if e.complexity.UserSettingHistoryConnection.Edges == nil { + if e.ComplexityRoot.UserSettingHistoryConnection.Edges == nil { break } - return e.complexity.UserSettingHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.UserSettingHistoryConnection.Edges(childComplexity), true case "UserSettingHistoryConnection.pageInfo": - if e.complexity.UserSettingHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.UserSettingHistoryConnection.PageInfo == nil { break } - return e.complexity.UserSettingHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.UserSettingHistoryConnection.PageInfo(childComplexity), true case "UserSettingHistoryConnection.totalCount": - if e.complexity.UserSettingHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.UserSettingHistoryConnection.TotalCount == nil { break } - return e.complexity.UserSettingHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.UserSettingHistoryConnection.TotalCount(childComplexity), true case "UserSettingHistoryEdge.cursor": - if e.complexity.UserSettingHistoryEdge.Cursor == nil { + if e.ComplexityRoot.UserSettingHistoryEdge.Cursor == nil { break } - return e.complexity.UserSettingHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.UserSettingHistoryEdge.Cursor(childComplexity), true case "UserSettingHistoryEdge.node": - if e.complexity.UserSettingHistoryEdge.Node == nil { + if e.ComplexityRoot.UserSettingHistoryEdge.Node == nil { break } - return e.complexity.UserSettingHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.UserSettingHistoryEdge.Node(childComplexity), true case "VulnerabilityHistory.blocking": - if e.complexity.VulnerabilityHistory.Blocking == nil { + if e.ComplexityRoot.VulnerabilityHistory.Blocking == nil { break } - return e.complexity.VulnerabilityHistory.Blocking(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Blocking(childComplexity), true case "VulnerabilityHistory.category": - if e.complexity.VulnerabilityHistory.Category == nil { + if e.ComplexityRoot.VulnerabilityHistory.Category == nil { break } - return e.complexity.VulnerabilityHistory.Category(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Category(childComplexity), true case "VulnerabilityHistory.createdAt": - if e.complexity.VulnerabilityHistory.CreatedAt == nil { + if e.ComplexityRoot.VulnerabilityHistory.CreatedAt == nil { break } - return e.complexity.VulnerabilityHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.CreatedAt(childComplexity), true case "VulnerabilityHistory.createdBy": - if e.complexity.VulnerabilityHistory.CreatedBy == nil { + if e.ComplexityRoot.VulnerabilityHistory.CreatedBy == nil { break } - return e.complexity.VulnerabilityHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.CreatedBy(childComplexity), true case "VulnerabilityHistory.cveID": - if e.complexity.VulnerabilityHistory.CveID == nil { + if e.ComplexityRoot.VulnerabilityHistory.CveID == nil { break } - return e.complexity.VulnerabilityHistory.CveID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.CveID(childComplexity), true case "VulnerabilityHistory.description": - if e.complexity.VulnerabilityHistory.Description == nil { + if e.ComplexityRoot.VulnerabilityHistory.Description == nil { break } - return e.complexity.VulnerabilityHistory.Description(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Description(childComplexity), true case "VulnerabilityHistory.discoveredAt": - if e.complexity.VulnerabilityHistory.DiscoveredAt == nil { + if e.ComplexityRoot.VulnerabilityHistory.DiscoveredAt == nil { break } - return e.complexity.VulnerabilityHistory.DiscoveredAt(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.DiscoveredAt(childComplexity), true case "VulnerabilityHistory.displayID": - if e.complexity.VulnerabilityHistory.DisplayID == nil { + if e.ComplexityRoot.VulnerabilityHistory.DisplayID == nil { break } - return e.complexity.VulnerabilityHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.DisplayID(childComplexity), true case "VulnerabilityHistory.displayName": - if e.complexity.VulnerabilityHistory.DisplayName == nil { + if e.ComplexityRoot.VulnerabilityHistory.DisplayName == nil { break } - return e.complexity.VulnerabilityHistory.DisplayName(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.DisplayName(childComplexity), true case "VulnerabilityHistory.environmentID": - if e.complexity.VulnerabilityHistory.EnvironmentID == nil { + if e.ComplexityRoot.VulnerabilityHistory.EnvironmentID == nil { break } - return e.complexity.VulnerabilityHistory.EnvironmentID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.EnvironmentID(childComplexity), true case "VulnerabilityHistory.environmentName": - if e.complexity.VulnerabilityHistory.EnvironmentName == nil { + if e.ComplexityRoot.VulnerabilityHistory.EnvironmentName == nil { break } - return e.complexity.VulnerabilityHistory.EnvironmentName(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.EnvironmentName(childComplexity), true case "VulnerabilityHistory.exploitability": - if e.complexity.VulnerabilityHistory.Exploitability == nil { + if e.ComplexityRoot.VulnerabilityHistory.Exploitability == nil { break } - return e.complexity.VulnerabilityHistory.Exploitability(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Exploitability(childComplexity), true case "VulnerabilityHistory.externalID": - if e.complexity.VulnerabilityHistory.ExternalID == nil { + if e.ComplexityRoot.VulnerabilityHistory.ExternalID == nil { break } - return e.complexity.VulnerabilityHistory.ExternalID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.ExternalID(childComplexity), true case "VulnerabilityHistory.externalOwnerID": - if e.complexity.VulnerabilityHistory.ExternalOwnerID == nil { + if e.ComplexityRoot.VulnerabilityHistory.ExternalOwnerID == nil { break } - return e.complexity.VulnerabilityHistory.ExternalOwnerID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.ExternalOwnerID(childComplexity), true case "VulnerabilityHistory.externalURI": - if e.complexity.VulnerabilityHistory.ExternalURI == nil { + if e.ComplexityRoot.VulnerabilityHistory.ExternalURI == nil { break } - return e.complexity.VulnerabilityHistory.ExternalURI(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.ExternalURI(childComplexity), true case "VulnerabilityHistory.historyTime": - if e.complexity.VulnerabilityHistory.HistoryTime == nil { + if e.ComplexityRoot.VulnerabilityHistory.HistoryTime == nil { break } - return e.complexity.VulnerabilityHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.HistoryTime(childComplexity), true case "VulnerabilityHistory.id": - if e.complexity.VulnerabilityHistory.ID == nil { + if e.ComplexityRoot.VulnerabilityHistory.ID == nil { break } - return e.complexity.VulnerabilityHistory.ID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.ID(childComplexity), true case "VulnerabilityHistory.impact": - if e.complexity.VulnerabilityHistory.Impact == nil { + if e.ComplexityRoot.VulnerabilityHistory.Impact == nil { break } - return e.complexity.VulnerabilityHistory.Impact(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Impact(childComplexity), true case "VulnerabilityHistory.impacts": - if e.complexity.VulnerabilityHistory.Impacts == nil { + if e.ComplexityRoot.VulnerabilityHistory.Impacts == nil { break } - return e.complexity.VulnerabilityHistory.Impacts(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Impacts(childComplexity), true case "VulnerabilityHistory.internalNotes": - if e.complexity.VulnerabilityHistory.InternalNotes == nil { + if e.ComplexityRoot.VulnerabilityHistory.InternalNotes == nil { break } - return e.complexity.VulnerabilityHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.InternalNotes(childComplexity), true case "VulnerabilityHistory.metadata": - if e.complexity.VulnerabilityHistory.Metadata == nil { + if e.ComplexityRoot.VulnerabilityHistory.Metadata == nil { break } - return e.complexity.VulnerabilityHistory.Metadata(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Metadata(childComplexity), true case "VulnerabilityHistory.open": - if e.complexity.VulnerabilityHistory.Open == nil { + if e.ComplexityRoot.VulnerabilityHistory.Open == nil { break } - return e.complexity.VulnerabilityHistory.Open(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Open(childComplexity), true case "VulnerabilityHistory.operation": - if e.complexity.VulnerabilityHistory.Operation == nil { + if e.ComplexityRoot.VulnerabilityHistory.Operation == nil { break } - return e.complexity.VulnerabilityHistory.Operation(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Operation(childComplexity), true case "VulnerabilityHistory.ownerID": - if e.complexity.VulnerabilityHistory.OwnerID == nil { + if e.ComplexityRoot.VulnerabilityHistory.OwnerID == nil { break } - return e.complexity.VulnerabilityHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.OwnerID(childComplexity), true case "VulnerabilityHistory.priority": - if e.complexity.VulnerabilityHistory.Priority == nil { + if e.ComplexityRoot.VulnerabilityHistory.Priority == nil { break } - return e.complexity.VulnerabilityHistory.Priority(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Priority(childComplexity), true case "VulnerabilityHistory.production": - if e.complexity.VulnerabilityHistory.Production == nil { + if e.ComplexityRoot.VulnerabilityHistory.Production == nil { break } - return e.complexity.VulnerabilityHistory.Production(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Production(childComplexity), true case "VulnerabilityHistory.public": - if e.complexity.VulnerabilityHistory.Public == nil { + if e.ComplexityRoot.VulnerabilityHistory.Public == nil { break } - return e.complexity.VulnerabilityHistory.Public(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Public(childComplexity), true case "VulnerabilityHistory.publishedAt": - if e.complexity.VulnerabilityHistory.PublishedAt == nil { + if e.ComplexityRoot.VulnerabilityHistory.PublishedAt == nil { break } - return e.complexity.VulnerabilityHistory.PublishedAt(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.PublishedAt(childComplexity), true case "VulnerabilityHistory.rawPayload": - if e.complexity.VulnerabilityHistory.RawPayload == nil { + if e.ComplexityRoot.VulnerabilityHistory.RawPayload == nil { break } - return e.complexity.VulnerabilityHistory.RawPayload(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.RawPayload(childComplexity), true case "VulnerabilityHistory.ref": - if e.complexity.VulnerabilityHistory.Ref == nil { + if e.ComplexityRoot.VulnerabilityHistory.Ref == nil { break } - return e.complexity.VulnerabilityHistory.Ref(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Ref(childComplexity), true case "VulnerabilityHistory.references": - if e.complexity.VulnerabilityHistory.References == nil { + if e.ComplexityRoot.VulnerabilityHistory.References == nil { break } - return e.complexity.VulnerabilityHistory.References(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.References(childComplexity), true case "VulnerabilityHistory.remediationSLA": - if e.complexity.VulnerabilityHistory.RemediationSLA == nil { + if e.ComplexityRoot.VulnerabilityHistory.RemediationSLA == nil { break } - return e.complexity.VulnerabilityHistory.RemediationSLA(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.RemediationSLA(childComplexity), true case "VulnerabilityHistory.scopeID": - if e.complexity.VulnerabilityHistory.ScopeID == nil { + if e.ComplexityRoot.VulnerabilityHistory.ScopeID == nil { break } - return e.complexity.VulnerabilityHistory.ScopeID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.ScopeID(childComplexity), true case "VulnerabilityHistory.scopeName": - if e.complexity.VulnerabilityHistory.ScopeName == nil { + if e.ComplexityRoot.VulnerabilityHistory.ScopeName == nil { break } - return e.complexity.VulnerabilityHistory.ScopeName(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.ScopeName(childComplexity), true case "VulnerabilityHistory.score": - if e.complexity.VulnerabilityHistory.Score == nil { + if e.ComplexityRoot.VulnerabilityHistory.Score == nil { break } - return e.complexity.VulnerabilityHistory.Score(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Score(childComplexity), true case "VulnerabilityHistory.severity": - if e.complexity.VulnerabilityHistory.Severity == nil { + if e.ComplexityRoot.VulnerabilityHistory.Severity == nil { break } - return e.complexity.VulnerabilityHistory.Severity(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Severity(childComplexity), true case "VulnerabilityHistory.source": - if e.complexity.VulnerabilityHistory.Source == nil { + if e.ComplexityRoot.VulnerabilityHistory.Source == nil { break } - return e.complexity.VulnerabilityHistory.Source(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Source(childComplexity), true case "VulnerabilityHistory.sourceUpdatedAt": - if e.complexity.VulnerabilityHistory.SourceUpdatedAt == nil { + if e.ComplexityRoot.VulnerabilityHistory.SourceUpdatedAt == nil { break } - return e.complexity.VulnerabilityHistory.SourceUpdatedAt(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.SourceUpdatedAt(childComplexity), true case "VulnerabilityHistory.status": - if e.complexity.VulnerabilityHistory.Status == nil { + if e.ComplexityRoot.VulnerabilityHistory.Status == nil { break } - return e.complexity.VulnerabilityHistory.Status(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Status(childComplexity), true case "VulnerabilityHistory.summary": - if e.complexity.VulnerabilityHistory.Summary == nil { + if e.ComplexityRoot.VulnerabilityHistory.Summary == nil { break } - return e.complexity.VulnerabilityHistory.Summary(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Summary(childComplexity), true case "VulnerabilityHistory.systemInternalID": - if e.complexity.VulnerabilityHistory.SystemInternalID == nil { + if e.ComplexityRoot.VulnerabilityHistory.SystemInternalID == nil { break } - return e.complexity.VulnerabilityHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.SystemInternalID(childComplexity), true case "VulnerabilityHistory.systemOwned": - if e.complexity.VulnerabilityHistory.SystemOwned == nil { + if e.ComplexityRoot.VulnerabilityHistory.SystemOwned == nil { break } - return e.complexity.VulnerabilityHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.SystemOwned(childComplexity), true case "VulnerabilityHistory.tags": - if e.complexity.VulnerabilityHistory.Tags == nil { + if e.ComplexityRoot.VulnerabilityHistory.Tags == nil { break } - return e.complexity.VulnerabilityHistory.Tags(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Tags(childComplexity), true case "VulnerabilityHistory.updatedAt": - if e.complexity.VulnerabilityHistory.UpdatedAt == nil { + if e.ComplexityRoot.VulnerabilityHistory.UpdatedAt == nil { break } - return e.complexity.VulnerabilityHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.UpdatedAt(childComplexity), true case "VulnerabilityHistory.updatedBy": - if e.complexity.VulnerabilityHistory.UpdatedBy == nil { + if e.ComplexityRoot.VulnerabilityHistory.UpdatedBy == nil { break } - return e.complexity.VulnerabilityHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.UpdatedBy(childComplexity), true case "VulnerabilityHistory.validated": - if e.complexity.VulnerabilityHistory.Validated == nil { + if e.ComplexityRoot.VulnerabilityHistory.Validated == nil { break } - return e.complexity.VulnerabilityHistory.Validated(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Validated(childComplexity), true case "VulnerabilityHistory.vector": - if e.complexity.VulnerabilityHistory.Vector == nil { + if e.ComplexityRoot.VulnerabilityHistory.Vector == nil { break } - return e.complexity.VulnerabilityHistory.Vector(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistory.Vector(childComplexity), true case "VulnerabilityHistoryConnection.edges": - if e.complexity.VulnerabilityHistoryConnection.Edges == nil { + if e.ComplexityRoot.VulnerabilityHistoryConnection.Edges == nil { break } - return e.complexity.VulnerabilityHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistoryConnection.Edges(childComplexity), true case "VulnerabilityHistoryConnection.pageInfo": - if e.complexity.VulnerabilityHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.VulnerabilityHistoryConnection.PageInfo == nil { break } - return e.complexity.VulnerabilityHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistoryConnection.PageInfo(childComplexity), true case "VulnerabilityHistoryConnection.totalCount": - if e.complexity.VulnerabilityHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.VulnerabilityHistoryConnection.TotalCount == nil { break } - return e.complexity.VulnerabilityHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistoryConnection.TotalCount(childComplexity), true case "VulnerabilityHistoryEdge.cursor": - if e.complexity.VulnerabilityHistoryEdge.Cursor == nil { + if e.ComplexityRoot.VulnerabilityHistoryEdge.Cursor == nil { break } - return e.complexity.VulnerabilityHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistoryEdge.Cursor(childComplexity), true case "VulnerabilityHistoryEdge.node": - if e.complexity.VulnerabilityHistoryEdge.Node == nil { + if e.ComplexityRoot.VulnerabilityHistoryEdge.Node == nil { break } - return e.complexity.VulnerabilityHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.VulnerabilityHistoryEdge.Node(childComplexity), true case "WorkflowAssignmentHistory.actorGroupID": - if e.complexity.WorkflowAssignmentHistory.ActorGroupID == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.ActorGroupID == nil { break } - return e.complexity.WorkflowAssignmentHistory.ActorGroupID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.ActorGroupID(childComplexity), true case "WorkflowAssignmentHistory.actorUserID": - if e.complexity.WorkflowAssignmentHistory.ActorUserID == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.ActorUserID == nil { break } - return e.complexity.WorkflowAssignmentHistory.ActorUserID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.ActorUserID(childComplexity), true case "WorkflowAssignmentHistory.approvalMetadata": - if e.complexity.WorkflowAssignmentHistory.ApprovalMetadata == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.ApprovalMetadata == nil { break } - return e.complexity.WorkflowAssignmentHistory.ApprovalMetadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.ApprovalMetadata(childComplexity), true case "WorkflowAssignmentHistory.assignmentKey": - if e.complexity.WorkflowAssignmentHistory.AssignmentKey == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.AssignmentKey == nil { break } - return e.complexity.WorkflowAssignmentHistory.AssignmentKey(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.AssignmentKey(childComplexity), true case "WorkflowAssignmentHistory.createdAt": - if e.complexity.WorkflowAssignmentHistory.CreatedAt == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.CreatedAt == nil { break } - return e.complexity.WorkflowAssignmentHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.CreatedAt(childComplexity), true case "WorkflowAssignmentHistory.createdBy": - if e.complexity.WorkflowAssignmentHistory.CreatedBy == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.CreatedBy == nil { break } - return e.complexity.WorkflowAssignmentHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.CreatedBy(childComplexity), true case "WorkflowAssignmentHistory.decidedAt": - if e.complexity.WorkflowAssignmentHistory.DecidedAt == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.DecidedAt == nil { break } - return e.complexity.WorkflowAssignmentHistory.DecidedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.DecidedAt(childComplexity), true case "WorkflowAssignmentHistory.displayID": - if e.complexity.WorkflowAssignmentHistory.DisplayID == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.DisplayID == nil { break } - return e.complexity.WorkflowAssignmentHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.DisplayID(childComplexity), true case "WorkflowAssignmentHistory.dueAt": - if e.complexity.WorkflowAssignmentHistory.DueAt == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.DueAt == nil { break } - return e.complexity.WorkflowAssignmentHistory.DueAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.DueAt(childComplexity), true case "WorkflowAssignmentHistory.historyTime": - if e.complexity.WorkflowAssignmentHistory.HistoryTime == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.HistoryTime == nil { break } - return e.complexity.WorkflowAssignmentHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.HistoryTime(childComplexity), true case "WorkflowAssignmentHistory.id": - if e.complexity.WorkflowAssignmentHistory.ID == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.ID == nil { break } - return e.complexity.WorkflowAssignmentHistory.ID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.ID(childComplexity), true case "WorkflowAssignmentHistory.invalidationMetadata": - if e.complexity.WorkflowAssignmentHistory.InvalidationMetadata == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.InvalidationMetadata == nil { break } - return e.complexity.WorkflowAssignmentHistory.InvalidationMetadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.InvalidationMetadata(childComplexity), true case "WorkflowAssignmentHistory.label": - if e.complexity.WorkflowAssignmentHistory.Label == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Label == nil { break } - return e.complexity.WorkflowAssignmentHistory.Label(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Label(childComplexity), true case "WorkflowAssignmentHistory.metadata": - if e.complexity.WorkflowAssignmentHistory.Metadata == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Metadata == nil { break } - return e.complexity.WorkflowAssignmentHistory.Metadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Metadata(childComplexity), true case "WorkflowAssignmentHistory.notes": - if e.complexity.WorkflowAssignmentHistory.Notes == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Notes == nil { break } - return e.complexity.WorkflowAssignmentHistory.Notes(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Notes(childComplexity), true case "WorkflowAssignmentHistory.operation": - if e.complexity.WorkflowAssignmentHistory.Operation == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Operation == nil { break } - return e.complexity.WorkflowAssignmentHistory.Operation(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Operation(childComplexity), true case "WorkflowAssignmentHistory.ownerID": - if e.complexity.WorkflowAssignmentHistory.OwnerID == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.OwnerID == nil { break } - return e.complexity.WorkflowAssignmentHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.OwnerID(childComplexity), true case "WorkflowAssignmentHistory.ref": - if e.complexity.WorkflowAssignmentHistory.Ref == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Ref == nil { break } - return e.complexity.WorkflowAssignmentHistory.Ref(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Ref(childComplexity), true case "WorkflowAssignmentHistory.rejectionMetadata": - if e.complexity.WorkflowAssignmentHistory.RejectionMetadata == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.RejectionMetadata == nil { break } - return e.complexity.WorkflowAssignmentHistory.RejectionMetadata(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.RejectionMetadata(childComplexity), true case "WorkflowAssignmentHistory.required": - if e.complexity.WorkflowAssignmentHistory.Required == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Required == nil { break } - return e.complexity.WorkflowAssignmentHistory.Required(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Required(childComplexity), true case "WorkflowAssignmentHistory.role": - if e.complexity.WorkflowAssignmentHistory.Role == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Role == nil { break } - return e.complexity.WorkflowAssignmentHistory.Role(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Role(childComplexity), true case "WorkflowAssignmentHistory.status": - if e.complexity.WorkflowAssignmentHistory.Status == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Status == nil { break } - return e.complexity.WorkflowAssignmentHistory.Status(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Status(childComplexity), true case "WorkflowAssignmentHistory.tags": - if e.complexity.WorkflowAssignmentHistory.Tags == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.Tags == nil { break } - return e.complexity.WorkflowAssignmentHistory.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.Tags(childComplexity), true case "WorkflowAssignmentHistory.updatedAt": - if e.complexity.WorkflowAssignmentHistory.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.UpdatedAt == nil { break } - return e.complexity.WorkflowAssignmentHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.UpdatedAt(childComplexity), true case "WorkflowAssignmentHistory.updatedBy": - if e.complexity.WorkflowAssignmentHistory.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.UpdatedBy == nil { break } - return e.complexity.WorkflowAssignmentHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.UpdatedBy(childComplexity), true case "WorkflowAssignmentHistory.workflowInstanceID": - if e.complexity.WorkflowAssignmentHistory.WorkflowInstanceID == nil { + if e.ComplexityRoot.WorkflowAssignmentHistory.WorkflowInstanceID == nil { break } - return e.complexity.WorkflowAssignmentHistory.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistory.WorkflowInstanceID(childComplexity), true case "WorkflowAssignmentHistoryConnection.edges": - if e.complexity.WorkflowAssignmentHistoryConnection.Edges == nil { + if e.ComplexityRoot.WorkflowAssignmentHistoryConnection.Edges == nil { break } - return e.complexity.WorkflowAssignmentHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistoryConnection.Edges(childComplexity), true case "WorkflowAssignmentHistoryConnection.pageInfo": - if e.complexity.WorkflowAssignmentHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowAssignmentHistoryConnection.PageInfo == nil { break } - return e.complexity.WorkflowAssignmentHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistoryConnection.PageInfo(childComplexity), true case "WorkflowAssignmentHistoryConnection.totalCount": - if e.complexity.WorkflowAssignmentHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowAssignmentHistoryConnection.TotalCount == nil { break } - return e.complexity.WorkflowAssignmentHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistoryConnection.TotalCount(childComplexity), true case "WorkflowAssignmentHistoryEdge.cursor": - if e.complexity.WorkflowAssignmentHistoryEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowAssignmentHistoryEdge.Cursor == nil { break } - return e.complexity.WorkflowAssignmentHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistoryEdge.Cursor(childComplexity), true case "WorkflowAssignmentHistoryEdge.node": - if e.complexity.WorkflowAssignmentHistoryEdge.Node == nil { + if e.ComplexityRoot.WorkflowAssignmentHistoryEdge.Node == nil { break } - return e.complexity.WorkflowAssignmentHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentHistoryEdge.Node(childComplexity), true case "WorkflowAssignmentTargetHistory.createdAt": - if e.complexity.WorkflowAssignmentTargetHistory.CreatedAt == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.CreatedAt == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.CreatedAt(childComplexity), true case "WorkflowAssignmentTargetHistory.createdBy": - if e.complexity.WorkflowAssignmentTargetHistory.CreatedBy == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.CreatedBy == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.CreatedBy(childComplexity), true case "WorkflowAssignmentTargetHistory.displayID": - if e.complexity.WorkflowAssignmentTargetHistory.DisplayID == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.DisplayID == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.DisplayID(childComplexity), true case "WorkflowAssignmentTargetHistory.historyTime": - if e.complexity.WorkflowAssignmentTargetHistory.HistoryTime == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.HistoryTime == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.HistoryTime(childComplexity), true case "WorkflowAssignmentTargetHistory.id": - if e.complexity.WorkflowAssignmentTargetHistory.ID == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.ID == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.ID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.ID(childComplexity), true case "WorkflowAssignmentTargetHistory.operation": - if e.complexity.WorkflowAssignmentTargetHistory.Operation == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.Operation == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.Operation(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.Operation(childComplexity), true case "WorkflowAssignmentTargetHistory.ownerID": - if e.complexity.WorkflowAssignmentTargetHistory.OwnerID == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.OwnerID == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.OwnerID(childComplexity), true case "WorkflowAssignmentTargetHistory.ref": - if e.complexity.WorkflowAssignmentTargetHistory.Ref == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.Ref == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.Ref(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.Ref(childComplexity), true case "WorkflowAssignmentTargetHistory.resolverKey": - if e.complexity.WorkflowAssignmentTargetHistory.ResolverKey == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.ResolverKey == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.ResolverKey(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.ResolverKey(childComplexity), true case "WorkflowAssignmentTargetHistory.tags": - if e.complexity.WorkflowAssignmentTargetHistory.Tags == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.Tags == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.Tags(childComplexity), true case "WorkflowAssignmentTargetHistory.targetGroupID": - if e.complexity.WorkflowAssignmentTargetHistory.TargetGroupID == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.TargetGroupID == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.TargetGroupID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.TargetGroupID(childComplexity), true case "WorkflowAssignmentTargetHistory.targetType": - if e.complexity.WorkflowAssignmentTargetHistory.TargetType == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.TargetType == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.TargetType(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.TargetType(childComplexity), true case "WorkflowAssignmentTargetHistory.targetUserID": - if e.complexity.WorkflowAssignmentTargetHistory.TargetUserID == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.TargetUserID == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.TargetUserID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.TargetUserID(childComplexity), true case "WorkflowAssignmentTargetHistory.updatedAt": - if e.complexity.WorkflowAssignmentTargetHistory.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.UpdatedAt == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.UpdatedAt(childComplexity), true case "WorkflowAssignmentTargetHistory.updatedBy": - if e.complexity.WorkflowAssignmentTargetHistory.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.UpdatedBy == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.UpdatedBy(childComplexity), true case "WorkflowAssignmentTargetHistory.workflowAssignmentID": - if e.complexity.WorkflowAssignmentTargetHistory.WorkflowAssignmentID == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistory.WorkflowAssignmentID == nil { break } - return e.complexity.WorkflowAssignmentTargetHistory.WorkflowAssignmentID(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistory.WorkflowAssignmentID(childComplexity), true case "WorkflowAssignmentTargetHistoryConnection.edges": - if e.complexity.WorkflowAssignmentTargetHistoryConnection.Edges == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistoryConnection.Edges == nil { break } - return e.complexity.WorkflowAssignmentTargetHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistoryConnection.Edges(childComplexity), true case "WorkflowAssignmentTargetHistoryConnection.pageInfo": - if e.complexity.WorkflowAssignmentTargetHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistoryConnection.PageInfo == nil { break } - return e.complexity.WorkflowAssignmentTargetHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistoryConnection.PageInfo(childComplexity), true case "WorkflowAssignmentTargetHistoryConnection.totalCount": - if e.complexity.WorkflowAssignmentTargetHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistoryConnection.TotalCount == nil { break } - return e.complexity.WorkflowAssignmentTargetHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistoryConnection.TotalCount(childComplexity), true case "WorkflowAssignmentTargetHistoryEdge.cursor": - if e.complexity.WorkflowAssignmentTargetHistoryEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistoryEdge.Cursor == nil { break } - return e.complexity.WorkflowAssignmentTargetHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistoryEdge.Cursor(childComplexity), true case "WorkflowAssignmentTargetHistoryEdge.node": - if e.complexity.WorkflowAssignmentTargetHistoryEdge.Node == nil { + if e.ComplexityRoot.WorkflowAssignmentTargetHistoryEdge.Node == nil { break } - return e.complexity.WorkflowAssignmentTargetHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowAssignmentTargetHistoryEdge.Node(childComplexity), true case "WorkflowDefinitionHistory.active": - if e.complexity.WorkflowDefinitionHistory.Active == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Active == nil { break } - return e.complexity.WorkflowDefinitionHistory.Active(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Active(childComplexity), true case "WorkflowDefinitionHistory.cooldownSeconds": - if e.complexity.WorkflowDefinitionHistory.CooldownSeconds == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.CooldownSeconds == nil { break } - return e.complexity.WorkflowDefinitionHistory.CooldownSeconds(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.CooldownSeconds(childComplexity), true case "WorkflowDefinitionHistory.createdAt": - if e.complexity.WorkflowDefinitionHistory.CreatedAt == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.CreatedAt == nil { break } - return e.complexity.WorkflowDefinitionHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.CreatedAt(childComplexity), true case "WorkflowDefinitionHistory.createdBy": - if e.complexity.WorkflowDefinitionHistory.CreatedBy == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.CreatedBy == nil { break } - return e.complexity.WorkflowDefinitionHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.CreatedBy(childComplexity), true case "WorkflowDefinitionHistory.definitionJSON": - if e.complexity.WorkflowDefinitionHistory.DefinitionJSON == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.DefinitionJSON == nil { break } - return e.complexity.WorkflowDefinitionHistory.DefinitionJSON(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.DefinitionJSON(childComplexity), true case "WorkflowDefinitionHistory.description": - if e.complexity.WorkflowDefinitionHistory.Description == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Description == nil { break } - return e.complexity.WorkflowDefinitionHistory.Description(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Description(childComplexity), true case "WorkflowDefinitionHistory.displayID": - if e.complexity.WorkflowDefinitionHistory.DisplayID == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.DisplayID == nil { break } - return e.complexity.WorkflowDefinitionHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.DisplayID(childComplexity), true case "WorkflowDefinitionHistory.draft": - if e.complexity.WorkflowDefinitionHistory.Draft == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Draft == nil { break } - return e.complexity.WorkflowDefinitionHistory.Draft(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Draft(childComplexity), true case "WorkflowDefinitionHistory.historyTime": - if e.complexity.WorkflowDefinitionHistory.HistoryTime == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.HistoryTime == nil { break } - return e.complexity.WorkflowDefinitionHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.HistoryTime(childComplexity), true case "WorkflowDefinitionHistory.id": - if e.complexity.WorkflowDefinitionHistory.ID == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.ID == nil { break } - return e.complexity.WorkflowDefinitionHistory.ID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.ID(childComplexity), true case "WorkflowDefinitionHistory.internalNotes": - if e.complexity.WorkflowDefinitionHistory.InternalNotes == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.InternalNotes == nil { break } - return e.complexity.WorkflowDefinitionHistory.InternalNotes(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.InternalNotes(childComplexity), true case "WorkflowDefinitionHistory.isDefault": - if e.complexity.WorkflowDefinitionHistory.IsDefault == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.IsDefault == nil { break } - return e.complexity.WorkflowDefinitionHistory.IsDefault(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.IsDefault(childComplexity), true case "WorkflowDefinitionHistory.name": - if e.complexity.WorkflowDefinitionHistory.Name == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Name == nil { break } - return e.complexity.WorkflowDefinitionHistory.Name(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Name(childComplexity), true case "WorkflowDefinitionHistory.operation": - if e.complexity.WorkflowDefinitionHistory.Operation == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Operation == nil { break } - return e.complexity.WorkflowDefinitionHistory.Operation(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Operation(childComplexity), true case "WorkflowDefinitionHistory.ownerID": - if e.complexity.WorkflowDefinitionHistory.OwnerID == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.OwnerID == nil { break } - return e.complexity.WorkflowDefinitionHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.OwnerID(childComplexity), true case "WorkflowDefinitionHistory.publishedAt": - if e.complexity.WorkflowDefinitionHistory.PublishedAt == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.PublishedAt == nil { break } - return e.complexity.WorkflowDefinitionHistory.PublishedAt(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.PublishedAt(childComplexity), true case "WorkflowDefinitionHistory.ref": - if e.complexity.WorkflowDefinitionHistory.Ref == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Ref == nil { break } - return e.complexity.WorkflowDefinitionHistory.Ref(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Ref(childComplexity), true case "WorkflowDefinitionHistory.revision": - if e.complexity.WorkflowDefinitionHistory.Revision == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Revision == nil { break } - return e.complexity.WorkflowDefinitionHistory.Revision(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Revision(childComplexity), true case "WorkflowDefinitionHistory.schemaType": - if e.complexity.WorkflowDefinitionHistory.SchemaType == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.SchemaType == nil { break } - return e.complexity.WorkflowDefinitionHistory.SchemaType(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.SchemaType(childComplexity), true case "WorkflowDefinitionHistory.systemInternalID": - if e.complexity.WorkflowDefinitionHistory.SystemInternalID == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.SystemInternalID == nil { break } - return e.complexity.WorkflowDefinitionHistory.SystemInternalID(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.SystemInternalID(childComplexity), true case "WorkflowDefinitionHistory.systemOwned": - if e.complexity.WorkflowDefinitionHistory.SystemOwned == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.SystemOwned == nil { break } - return e.complexity.WorkflowDefinitionHistory.SystemOwned(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.SystemOwned(childComplexity), true case "WorkflowDefinitionHistory.tags": - if e.complexity.WorkflowDefinitionHistory.Tags == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.Tags == nil { break } - return e.complexity.WorkflowDefinitionHistory.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.Tags(childComplexity), true case "WorkflowDefinitionHistory.trackedFields": - if e.complexity.WorkflowDefinitionHistory.TrackedFields == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.TrackedFields == nil { break } - return e.complexity.WorkflowDefinitionHistory.TrackedFields(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.TrackedFields(childComplexity), true case "WorkflowDefinitionHistory.updatedAt": - if e.complexity.WorkflowDefinitionHistory.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.UpdatedAt == nil { break } - return e.complexity.WorkflowDefinitionHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.UpdatedAt(childComplexity), true case "WorkflowDefinitionHistory.updatedBy": - if e.complexity.WorkflowDefinitionHistory.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.UpdatedBy == nil { break } - return e.complexity.WorkflowDefinitionHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.UpdatedBy(childComplexity), true case "WorkflowDefinitionHistory.workflowKind": - if e.complexity.WorkflowDefinitionHistory.WorkflowKind == nil { + if e.ComplexityRoot.WorkflowDefinitionHistory.WorkflowKind == nil { break } - return e.complexity.WorkflowDefinitionHistory.WorkflowKind(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistory.WorkflowKind(childComplexity), true case "WorkflowDefinitionHistoryConnection.edges": - if e.complexity.WorkflowDefinitionHistoryConnection.Edges == nil { + if e.ComplexityRoot.WorkflowDefinitionHistoryConnection.Edges == nil { break } - return e.complexity.WorkflowDefinitionHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistoryConnection.Edges(childComplexity), true case "WorkflowDefinitionHistoryConnection.pageInfo": - if e.complexity.WorkflowDefinitionHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowDefinitionHistoryConnection.PageInfo == nil { break } - return e.complexity.WorkflowDefinitionHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistoryConnection.PageInfo(childComplexity), true case "WorkflowDefinitionHistoryConnection.totalCount": - if e.complexity.WorkflowDefinitionHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowDefinitionHistoryConnection.TotalCount == nil { break } - return e.complexity.WorkflowDefinitionHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistoryConnection.TotalCount(childComplexity), true case "WorkflowDefinitionHistoryEdge.cursor": - if e.complexity.WorkflowDefinitionHistoryEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowDefinitionHistoryEdge.Cursor == nil { break } - return e.complexity.WorkflowDefinitionHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistoryEdge.Cursor(childComplexity), true case "WorkflowDefinitionHistoryEdge.node": - if e.complexity.WorkflowDefinitionHistoryEdge.Node == nil { + if e.ComplexityRoot.WorkflowDefinitionHistoryEdge.Node == nil { break } - return e.complexity.WorkflowDefinitionHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowDefinitionHistoryEdge.Node(childComplexity), true case "WorkflowEventHistory.createdAt": - if e.complexity.WorkflowEventHistory.CreatedAt == nil { + if e.ComplexityRoot.WorkflowEventHistory.CreatedAt == nil { break } - return e.complexity.WorkflowEventHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.CreatedAt(childComplexity), true case "WorkflowEventHistory.createdBy": - if e.complexity.WorkflowEventHistory.CreatedBy == nil { + if e.ComplexityRoot.WorkflowEventHistory.CreatedBy == nil { break } - return e.complexity.WorkflowEventHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.CreatedBy(childComplexity), true case "WorkflowEventHistory.displayID": - if e.complexity.WorkflowEventHistory.DisplayID == nil { + if e.ComplexityRoot.WorkflowEventHistory.DisplayID == nil { break } - return e.complexity.WorkflowEventHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.DisplayID(childComplexity), true case "WorkflowEventHistory.eventType": - if e.complexity.WorkflowEventHistory.EventType == nil { + if e.ComplexityRoot.WorkflowEventHistory.EventType == nil { break } - return e.complexity.WorkflowEventHistory.EventType(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.EventType(childComplexity), true case "WorkflowEventHistory.historyTime": - if e.complexity.WorkflowEventHistory.HistoryTime == nil { + if e.ComplexityRoot.WorkflowEventHistory.HistoryTime == nil { break } - return e.complexity.WorkflowEventHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.HistoryTime(childComplexity), true case "WorkflowEventHistory.id": - if e.complexity.WorkflowEventHistory.ID == nil { + if e.ComplexityRoot.WorkflowEventHistory.ID == nil { break } - return e.complexity.WorkflowEventHistory.ID(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.ID(childComplexity), true case "WorkflowEventHistory.operation": - if e.complexity.WorkflowEventHistory.Operation == nil { + if e.ComplexityRoot.WorkflowEventHistory.Operation == nil { break } - return e.complexity.WorkflowEventHistory.Operation(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.Operation(childComplexity), true case "WorkflowEventHistory.ownerID": - if e.complexity.WorkflowEventHistory.OwnerID == nil { + if e.ComplexityRoot.WorkflowEventHistory.OwnerID == nil { break } - return e.complexity.WorkflowEventHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.OwnerID(childComplexity), true case "WorkflowEventHistory.payload": - if e.complexity.WorkflowEventHistory.Payload == nil { + if e.ComplexityRoot.WorkflowEventHistory.Payload == nil { break } - return e.complexity.WorkflowEventHistory.Payload(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.Payload(childComplexity), true case "WorkflowEventHistory.ref": - if e.complexity.WorkflowEventHistory.Ref == nil { + if e.ComplexityRoot.WorkflowEventHistory.Ref == nil { break } - return e.complexity.WorkflowEventHistory.Ref(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.Ref(childComplexity), true case "WorkflowEventHistory.tags": - if e.complexity.WorkflowEventHistory.Tags == nil { + if e.ComplexityRoot.WorkflowEventHistory.Tags == nil { break } - return e.complexity.WorkflowEventHistory.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.Tags(childComplexity), true case "WorkflowEventHistory.updatedAt": - if e.complexity.WorkflowEventHistory.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowEventHistory.UpdatedAt == nil { break } - return e.complexity.WorkflowEventHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.UpdatedAt(childComplexity), true case "WorkflowEventHistory.updatedBy": - if e.complexity.WorkflowEventHistory.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowEventHistory.UpdatedBy == nil { break } - return e.complexity.WorkflowEventHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.UpdatedBy(childComplexity), true case "WorkflowEventHistory.workflowInstanceID": - if e.complexity.WorkflowEventHistory.WorkflowInstanceID == nil { + if e.ComplexityRoot.WorkflowEventHistory.WorkflowInstanceID == nil { break } - return e.complexity.WorkflowEventHistory.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistory.WorkflowInstanceID(childComplexity), true case "WorkflowEventHistoryConnection.edges": - if e.complexity.WorkflowEventHistoryConnection.Edges == nil { + if e.ComplexityRoot.WorkflowEventHistoryConnection.Edges == nil { break } - return e.complexity.WorkflowEventHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistoryConnection.Edges(childComplexity), true case "WorkflowEventHistoryConnection.pageInfo": - if e.complexity.WorkflowEventHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowEventHistoryConnection.PageInfo == nil { break } - return e.complexity.WorkflowEventHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistoryConnection.PageInfo(childComplexity), true case "WorkflowEventHistoryConnection.totalCount": - if e.complexity.WorkflowEventHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowEventHistoryConnection.TotalCount == nil { break } - return e.complexity.WorkflowEventHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistoryConnection.TotalCount(childComplexity), true case "WorkflowEventHistoryEdge.cursor": - if e.complexity.WorkflowEventHistoryEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowEventHistoryEdge.Cursor == nil { break } - return e.complexity.WorkflowEventHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistoryEdge.Cursor(childComplexity), true case "WorkflowEventHistoryEdge.node": - if e.complexity.WorkflowEventHistoryEdge.Node == nil { + if e.ComplexityRoot.WorkflowEventHistoryEdge.Node == nil { break } - return e.complexity.WorkflowEventHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowEventHistoryEdge.Node(childComplexity), true case "WorkflowInstanceHistory.actionPlanID": - if e.complexity.WorkflowInstanceHistory.ActionPlanID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.ActionPlanID == nil { break } - return e.complexity.WorkflowInstanceHistory.ActionPlanID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.ActionPlanID(childComplexity), true case "WorkflowInstanceHistory.campaignID": - if e.complexity.WorkflowInstanceHistory.CampaignID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.CampaignID == nil { break } - return e.complexity.WorkflowInstanceHistory.CampaignID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.CampaignID(childComplexity), true case "WorkflowInstanceHistory.campaignTargetID": - if e.complexity.WorkflowInstanceHistory.CampaignTargetID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.CampaignTargetID == nil { break } - return e.complexity.WorkflowInstanceHistory.CampaignTargetID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.CampaignTargetID(childComplexity), true case "WorkflowInstanceHistory.context": - if e.complexity.WorkflowInstanceHistory.Context == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.Context == nil { break } - return e.complexity.WorkflowInstanceHistory.Context(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.Context(childComplexity), true case "WorkflowInstanceHistory.controlID": - if e.complexity.WorkflowInstanceHistory.ControlID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.ControlID == nil { break } - return e.complexity.WorkflowInstanceHistory.ControlID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.ControlID(childComplexity), true case "WorkflowInstanceHistory.createdAt": - if e.complexity.WorkflowInstanceHistory.CreatedAt == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.CreatedAt == nil { break } - return e.complexity.WorkflowInstanceHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.CreatedAt(childComplexity), true case "WorkflowInstanceHistory.createdBy": - if e.complexity.WorkflowInstanceHistory.CreatedBy == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.CreatedBy == nil { break } - return e.complexity.WorkflowInstanceHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.CreatedBy(childComplexity), true case "WorkflowInstanceHistory.currentActionIndex": - if e.complexity.WorkflowInstanceHistory.CurrentActionIndex == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.CurrentActionIndex == nil { break } - return e.complexity.WorkflowInstanceHistory.CurrentActionIndex(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.CurrentActionIndex(childComplexity), true case "WorkflowInstanceHistory.definitionSnapshot": - if e.complexity.WorkflowInstanceHistory.DefinitionSnapshot == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.DefinitionSnapshot == nil { break } - return e.complexity.WorkflowInstanceHistory.DefinitionSnapshot(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.DefinitionSnapshot(childComplexity), true case "WorkflowInstanceHistory.displayID": - if e.complexity.WorkflowInstanceHistory.DisplayID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.DisplayID == nil { break } - return e.complexity.WorkflowInstanceHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.DisplayID(childComplexity), true case "WorkflowInstanceHistory.evidenceID": - if e.complexity.WorkflowInstanceHistory.EvidenceID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.EvidenceID == nil { break } - return e.complexity.WorkflowInstanceHistory.EvidenceID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.EvidenceID(childComplexity), true case "WorkflowInstanceHistory.historyTime": - if e.complexity.WorkflowInstanceHistory.HistoryTime == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.HistoryTime == nil { break } - return e.complexity.WorkflowInstanceHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.HistoryTime(childComplexity), true case "WorkflowInstanceHistory.id": - if e.complexity.WorkflowInstanceHistory.ID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.ID == nil { break } - return e.complexity.WorkflowInstanceHistory.ID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.ID(childComplexity), true case "WorkflowInstanceHistory.identityHolderID": - if e.complexity.WorkflowInstanceHistory.IdentityHolderID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.IdentityHolderID == nil { break } - return e.complexity.WorkflowInstanceHistory.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.IdentityHolderID(childComplexity), true case "WorkflowInstanceHistory.internalPolicyID": - if e.complexity.WorkflowInstanceHistory.InternalPolicyID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.InternalPolicyID == nil { break } - return e.complexity.WorkflowInstanceHistory.InternalPolicyID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.InternalPolicyID(childComplexity), true case "WorkflowInstanceHistory.lastEvaluatedAt": - if e.complexity.WorkflowInstanceHistory.LastEvaluatedAt == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.LastEvaluatedAt == nil { break } - return e.complexity.WorkflowInstanceHistory.LastEvaluatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.LastEvaluatedAt(childComplexity), true case "WorkflowInstanceHistory.operation": - if e.complexity.WorkflowInstanceHistory.Operation == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.Operation == nil { break } - return e.complexity.WorkflowInstanceHistory.Operation(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.Operation(childComplexity), true case "WorkflowInstanceHistory.ownerID": - if e.complexity.WorkflowInstanceHistory.OwnerID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.OwnerID == nil { break } - return e.complexity.WorkflowInstanceHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.OwnerID(childComplexity), true case "WorkflowInstanceHistory.platformID": - if e.complexity.WorkflowInstanceHistory.PlatformID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.PlatformID == nil { break } - return e.complexity.WorkflowInstanceHistory.PlatformID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.PlatformID(childComplexity), true case "WorkflowInstanceHistory.procedureID": - if e.complexity.WorkflowInstanceHistory.ProcedureID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.ProcedureID == nil { break } - return e.complexity.WorkflowInstanceHistory.ProcedureID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.ProcedureID(childComplexity), true case "WorkflowInstanceHistory.ref": - if e.complexity.WorkflowInstanceHistory.Ref == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.Ref == nil { break } - return e.complexity.WorkflowInstanceHistory.Ref(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.Ref(childComplexity), true case "WorkflowInstanceHistory.state": - if e.complexity.WorkflowInstanceHistory.State == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.State == nil { break } - return e.complexity.WorkflowInstanceHistory.State(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.State(childComplexity), true case "WorkflowInstanceHistory.subcontrolID": - if e.complexity.WorkflowInstanceHistory.SubcontrolID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.SubcontrolID == nil { break } - return e.complexity.WorkflowInstanceHistory.SubcontrolID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.SubcontrolID(childComplexity), true case "WorkflowInstanceHistory.tags": - if e.complexity.WorkflowInstanceHistory.Tags == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.Tags == nil { break } - return e.complexity.WorkflowInstanceHistory.Tags(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.Tags(childComplexity), true case "WorkflowInstanceHistory.updatedAt": - if e.complexity.WorkflowInstanceHistory.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.UpdatedAt == nil { break } - return e.complexity.WorkflowInstanceHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.UpdatedAt(childComplexity), true case "WorkflowInstanceHistory.updatedBy": - if e.complexity.WorkflowInstanceHistory.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.UpdatedBy == nil { break } - return e.complexity.WorkflowInstanceHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.UpdatedBy(childComplexity), true case "WorkflowInstanceHistory.workflowDefinitionID": - if e.complexity.WorkflowInstanceHistory.WorkflowDefinitionID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.WorkflowDefinitionID == nil { break } - return e.complexity.WorkflowInstanceHistory.WorkflowDefinitionID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.WorkflowDefinitionID(childComplexity), true case "WorkflowInstanceHistory.workflowProposalID": - if e.complexity.WorkflowInstanceHistory.WorkflowProposalID == nil { + if e.ComplexityRoot.WorkflowInstanceHistory.WorkflowProposalID == nil { break } - return e.complexity.WorkflowInstanceHistory.WorkflowProposalID(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistory.WorkflowProposalID(childComplexity), true case "WorkflowInstanceHistoryConnection.edges": - if e.complexity.WorkflowInstanceHistoryConnection.Edges == nil { + if e.ComplexityRoot.WorkflowInstanceHistoryConnection.Edges == nil { break } - return e.complexity.WorkflowInstanceHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistoryConnection.Edges(childComplexity), true case "WorkflowInstanceHistoryConnection.pageInfo": - if e.complexity.WorkflowInstanceHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowInstanceHistoryConnection.PageInfo == nil { break } - return e.complexity.WorkflowInstanceHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistoryConnection.PageInfo(childComplexity), true case "WorkflowInstanceHistoryConnection.totalCount": - if e.complexity.WorkflowInstanceHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowInstanceHistoryConnection.TotalCount == nil { break } - return e.complexity.WorkflowInstanceHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistoryConnection.TotalCount(childComplexity), true case "WorkflowInstanceHistoryEdge.cursor": - if e.complexity.WorkflowInstanceHistoryEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowInstanceHistoryEdge.Cursor == nil { break } - return e.complexity.WorkflowInstanceHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistoryEdge.Cursor(childComplexity), true case "WorkflowInstanceHistoryEdge.node": - if e.complexity.WorkflowInstanceHistoryEdge.Node == nil { + if e.ComplexityRoot.WorkflowInstanceHistoryEdge.Node == nil { break } - return e.complexity.WorkflowInstanceHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowInstanceHistoryEdge.Node(childComplexity), true case "WorkflowObjectRefHistory.actionPlanID": - if e.complexity.WorkflowObjectRefHistory.ActionPlanID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.ActionPlanID == nil { break } - return e.complexity.WorkflowObjectRefHistory.ActionPlanID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.ActionPlanID(childComplexity), true case "WorkflowObjectRefHistory.campaignID": - if e.complexity.WorkflowObjectRefHistory.CampaignID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.CampaignID == nil { break } - return e.complexity.WorkflowObjectRefHistory.CampaignID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.CampaignID(childComplexity), true case "WorkflowObjectRefHistory.campaignTargetID": - if e.complexity.WorkflowObjectRefHistory.CampaignTargetID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.CampaignTargetID == nil { break } - return e.complexity.WorkflowObjectRefHistory.CampaignTargetID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.CampaignTargetID(childComplexity), true case "WorkflowObjectRefHistory.controlID": - if e.complexity.WorkflowObjectRefHistory.ControlID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.ControlID == nil { break } - return e.complexity.WorkflowObjectRefHistory.ControlID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.ControlID(childComplexity), true case "WorkflowObjectRefHistory.createdAt": - if e.complexity.WorkflowObjectRefHistory.CreatedAt == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.CreatedAt == nil { break } - return e.complexity.WorkflowObjectRefHistory.CreatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.CreatedAt(childComplexity), true case "WorkflowObjectRefHistory.createdBy": - if e.complexity.WorkflowObjectRefHistory.CreatedBy == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.CreatedBy == nil { break } - return e.complexity.WorkflowObjectRefHistory.CreatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.CreatedBy(childComplexity), true case "WorkflowObjectRefHistory.directoryAccountID": - if e.complexity.WorkflowObjectRefHistory.DirectoryAccountID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.DirectoryAccountID == nil { break } - return e.complexity.WorkflowObjectRefHistory.DirectoryAccountID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.DirectoryAccountID(childComplexity), true case "WorkflowObjectRefHistory.directoryGroupID": - if e.complexity.WorkflowObjectRefHistory.DirectoryGroupID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.DirectoryGroupID == nil { break } - return e.complexity.WorkflowObjectRefHistory.DirectoryGroupID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.DirectoryGroupID(childComplexity), true case "WorkflowObjectRefHistory.directoryMembershipID": - if e.complexity.WorkflowObjectRefHistory.DirectoryMembershipID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.DirectoryMembershipID == nil { break } - return e.complexity.WorkflowObjectRefHistory.DirectoryMembershipID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.DirectoryMembershipID(childComplexity), true case "WorkflowObjectRefHistory.displayID": - if e.complexity.WorkflowObjectRefHistory.DisplayID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.DisplayID == nil { break } - return e.complexity.WorkflowObjectRefHistory.DisplayID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.DisplayID(childComplexity), true case "WorkflowObjectRefHistory.evidenceID": - if e.complexity.WorkflowObjectRefHistory.EvidenceID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.EvidenceID == nil { break } - return e.complexity.WorkflowObjectRefHistory.EvidenceID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.EvidenceID(childComplexity), true case "WorkflowObjectRefHistory.findingID": - if e.complexity.WorkflowObjectRefHistory.FindingID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.FindingID == nil { break } - return e.complexity.WorkflowObjectRefHistory.FindingID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.FindingID(childComplexity), true case "WorkflowObjectRefHistory.historyTime": - if e.complexity.WorkflowObjectRefHistory.HistoryTime == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.HistoryTime == nil { break } - return e.complexity.WorkflowObjectRefHistory.HistoryTime(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.HistoryTime(childComplexity), true case "WorkflowObjectRefHistory.id": - if e.complexity.WorkflowObjectRefHistory.ID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.ID == nil { break } - return e.complexity.WorkflowObjectRefHistory.ID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.ID(childComplexity), true case "WorkflowObjectRefHistory.identityHolderID": - if e.complexity.WorkflowObjectRefHistory.IdentityHolderID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.IdentityHolderID == nil { break } - return e.complexity.WorkflowObjectRefHistory.IdentityHolderID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.IdentityHolderID(childComplexity), true case "WorkflowObjectRefHistory.internalPolicyID": - if e.complexity.WorkflowObjectRefHistory.InternalPolicyID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.InternalPolicyID == nil { break } - return e.complexity.WorkflowObjectRefHistory.InternalPolicyID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.InternalPolicyID(childComplexity), true case "WorkflowObjectRefHistory.operation": - if e.complexity.WorkflowObjectRefHistory.Operation == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.Operation == nil { break } - return e.complexity.WorkflowObjectRefHistory.Operation(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.Operation(childComplexity), true case "WorkflowObjectRefHistory.ownerID": - if e.complexity.WorkflowObjectRefHistory.OwnerID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.OwnerID == nil { break } - return e.complexity.WorkflowObjectRefHistory.OwnerID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.OwnerID(childComplexity), true case "WorkflowObjectRefHistory.platformID": - if e.complexity.WorkflowObjectRefHistory.PlatformID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.PlatformID == nil { break } - return e.complexity.WorkflowObjectRefHistory.PlatformID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.PlatformID(childComplexity), true case "WorkflowObjectRefHistory.procedureID": - if e.complexity.WorkflowObjectRefHistory.ProcedureID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.ProcedureID == nil { break } - return e.complexity.WorkflowObjectRefHistory.ProcedureID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.ProcedureID(childComplexity), true case "WorkflowObjectRefHistory.ref": - if e.complexity.WorkflowObjectRefHistory.Ref == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.Ref == nil { break } - return e.complexity.WorkflowObjectRefHistory.Ref(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.Ref(childComplexity), true case "WorkflowObjectRefHistory.subcontrolID": - if e.complexity.WorkflowObjectRefHistory.SubcontrolID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.SubcontrolID == nil { break } - return e.complexity.WorkflowObjectRefHistory.SubcontrolID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.SubcontrolID(childComplexity), true case "WorkflowObjectRefHistory.taskID": - if e.complexity.WorkflowObjectRefHistory.TaskID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.TaskID == nil { break } - return e.complexity.WorkflowObjectRefHistory.TaskID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.TaskID(childComplexity), true case "WorkflowObjectRefHistory.updatedAt": - if e.complexity.WorkflowObjectRefHistory.UpdatedAt == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.UpdatedAt == nil { break } - return e.complexity.WorkflowObjectRefHistory.UpdatedAt(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.UpdatedAt(childComplexity), true case "WorkflowObjectRefHistory.updatedBy": - if e.complexity.WorkflowObjectRefHistory.UpdatedBy == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.UpdatedBy == nil { break } - return e.complexity.WorkflowObjectRefHistory.UpdatedBy(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.UpdatedBy(childComplexity), true case "WorkflowObjectRefHistory.workflowInstanceID": - if e.complexity.WorkflowObjectRefHistory.WorkflowInstanceID == nil { + if e.ComplexityRoot.WorkflowObjectRefHistory.WorkflowInstanceID == nil { break } - return e.complexity.WorkflowObjectRefHistory.WorkflowInstanceID(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistory.WorkflowInstanceID(childComplexity), true case "WorkflowObjectRefHistoryConnection.edges": - if e.complexity.WorkflowObjectRefHistoryConnection.Edges == nil { + if e.ComplexityRoot.WorkflowObjectRefHistoryConnection.Edges == nil { break } - return e.complexity.WorkflowObjectRefHistoryConnection.Edges(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistoryConnection.Edges(childComplexity), true case "WorkflowObjectRefHistoryConnection.pageInfo": - if e.complexity.WorkflowObjectRefHistoryConnection.PageInfo == nil { + if e.ComplexityRoot.WorkflowObjectRefHistoryConnection.PageInfo == nil { break } - return e.complexity.WorkflowObjectRefHistoryConnection.PageInfo(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistoryConnection.PageInfo(childComplexity), true case "WorkflowObjectRefHistoryConnection.totalCount": - if e.complexity.WorkflowObjectRefHistoryConnection.TotalCount == nil { + if e.ComplexityRoot.WorkflowObjectRefHistoryConnection.TotalCount == nil { break } - return e.complexity.WorkflowObjectRefHistoryConnection.TotalCount(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistoryConnection.TotalCount(childComplexity), true case "WorkflowObjectRefHistoryEdge.cursor": - if e.complexity.WorkflowObjectRefHistoryEdge.Cursor == nil { + if e.ComplexityRoot.WorkflowObjectRefHistoryEdge.Cursor == nil { break } - return e.complexity.WorkflowObjectRefHistoryEdge.Cursor(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistoryEdge.Cursor(childComplexity), true case "WorkflowObjectRefHistoryEdge.node": - if e.complexity.WorkflowObjectRefHistoryEdge.Node == nil { + if e.ComplexityRoot.WorkflowObjectRefHistoryEdge.Node == nil { break } - return e.complexity.WorkflowObjectRefHistoryEdge.Node(childComplexity), true + return e.ComplexityRoot.WorkflowObjectRefHistoryEdge.Node(childComplexity), true } return 0, false @@ -20266,7 +20249,7 @@ func (e *executableSchema) Complexity(ctx context.Context, typeName, field strin func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { opCtx := graphql.GetOperationContext(ctx) - ec := executionContext{opCtx, e, 0, 0, make(chan graphql.DeferredResult)} + ec := newExecutionContext(opCtx, e, make(chan graphql.DeferredResult)) inputUnmarshalMap := graphql.BuildUnmarshalerMap( ec.unmarshalInputActionPlanHistoryOrder, ec.unmarshalInputActionPlanHistoryWhereInput, @@ -20431,9 +20414,9 @@ func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { ctx = graphql.WithUnmarshalerMap(ctx, inputUnmarshalMap) data = ec._Query(ctx, opCtx.Operation.SelectionSet) } else { - if atomic.LoadInt32(&ec.pendingDeferred) > 0 { - result := <-ec.deferredResults - atomic.AddInt32(&ec.pendingDeferred, -1) + if atomic.LoadInt32(&ec.PendingDeferred) > 0 { + result := <-ec.DeferredResults + atomic.AddInt32(&ec.PendingDeferred, -1) data = result.Result response.Path = result.Path response.Label = result.Label @@ -20445,8 +20428,8 @@ func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { var buf bytes.Buffer data.MarshalGQL(&buf) response.Data = buf.Bytes() - if atomic.LoadInt32(&ec.deferred) > 0 { - hasNext := atomic.LoadInt32(&ec.pendingDeferred) > 0 + if atomic.LoadInt32(&ec.Deferred) > 0 { + hasNext := atomic.LoadInt32(&ec.PendingDeferred) > 0 response.HasNext = &hasNext } @@ -20459,44 +20442,22 @@ func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler { } type executionContext struct { - *graphql.OperationContext - *executableSchema - deferred int32 - pendingDeferred int32 - deferredResults chan graphql.DeferredResult -} - -func (ec *executionContext) processDeferredGroup(dg graphql.DeferredGroup) { - atomic.AddInt32(&ec.pendingDeferred, 1) - go func() { - ctx := graphql.WithFreshResponseContext(dg.Context) - dg.FieldSet.Dispatch(ctx) - ds := graphql.DeferredResult{ - Path: dg.Path, - Label: dg.Label, - Result: dg.FieldSet, - Errors: graphql.GetErrors(ctx), - } - // null fields should bubble up - if dg.FieldSet.Invalids > 0 { - ds.Result = graphql.Null - } - ec.deferredResults <- ds - }() -} - -func (ec *executionContext) introspectSchema() (*introspection.Schema, error) { - if ec.DisableIntrospection { - return nil, errors.New("introspection disabled") - } - return introspection.WrapSchema(ec.Schema()), nil -} - -func (ec *executionContext) introspectType(name string) (*introspection.Type, error) { - if ec.DisableIntrospection { - return nil, errors.New("introspection disabled") + *graphql.ExecutionContextState[ResolverRoot, DirectiveRoot, ComplexityRoot] +} + +func newExecutionContext( + opCtx *graphql.OperationContext, + execSchema *executableSchema, + deferredResults chan graphql.DeferredResult, +) executionContext { + return executionContext{ + ExecutionContextState: graphql.NewExecutionContextState[ResolverRoot, DirectiveRoot, ComplexityRoot]( + opCtx, + (*graphql.ExecutableSchemaState[ResolverRoot, DirectiveRoot, ComplexityRoot])(execSchema), + parsedSchema, + deferredResults, + ), } - return introspection.WrapTypeFromDef(ec.Schema(), ec.Schema().Types[name]), nil } var sources = []*ast.Source{ diff --git a/internal/graphapi/historyschema/checksum/.history_schema_checksum b/internal/graphapi/historyschema/checksum/.history_schema_checksum index 0612baf921..c6ff17dd3e 100644 --- a/internal/graphapi/historyschema/checksum/.history_schema_checksum +++ b/internal/graphapi/historyschema/checksum/.history_schema_checksum @@ -1 +1 @@ -452e7018beb7d12b41d678887b8641ee7be6f2fb0f5feee5b753e6e82c751a5c \ No newline at end of file +2f9a4bb6f7f5fa81f8b70edd1a00b400c3ba0d0a68649bbf5f1430bfddf088d0 \ No newline at end of file diff --git a/internal/graphapi/testclient/checksum/.client_checksum b/internal/graphapi/testclient/checksum/.client_checksum index 80c4a86da8..bcf8567459 100644 --- a/internal/graphapi/testclient/checksum/.client_checksum +++ b/internal/graphapi/testclient/checksum/.client_checksum @@ -1 +1 @@ -d28ab51195d0b15353570a77d88b7a2fbf40a779ecb43a838d944224c48dbe3c \ No newline at end of file +3f3c2e4948da9ff9c5bfcfeee861f57ece67634e3b8220aaacba798424b638a3 \ No newline at end of file From 10cd813ca006c789d8536e428f038c2f37c9d2a4 Mon Sep 17 00:00:00 2001 From: Lanre Adelowo Date: Thu, 26 Feb 2026 15:48:23 +0100 Subject: [PATCH 4/4] use ctx --- internal/ent/notifications/standard_update.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/ent/notifications/standard_update.go b/internal/ent/notifications/standard_update.go index 2a0cbf2f23..e04cf4e738 100644 --- a/internal/ent/notifications/standard_update.go +++ b/internal/ent/notifications/standard_update.go @@ -13,7 +13,6 @@ import ( "github.com/theopenlane/core/internal/ent/generated" "github.com/theopenlane/core/internal/ent/generated/control" "github.com/theopenlane/core/internal/ent/generated/orgmembership" - "github.com/theopenlane/core/internal/ent/generated/privacy" "github.com/theopenlane/core/internal/ent/generated/standard" "github.com/theopenlane/core/pkg/gala" "github.com/theopenlane/core/pkg/logx" @@ -42,7 +41,7 @@ func handleStandardMutation(ctx gala.HandlerContext, payload eventqueue.Mutation return ErrEntityIDNotFound } - allowCtx := privacy.DecisionContext(ctx.Context, privacy.Allow) + allowCtx := ctx.Context std, err := client.Standard.Get(allowCtx, standardID) if err != nil {