Skip to content

Commit 058891f

Browse files
committed
fix: Fixed error with project connection
1 parent 9ae54a2 commit 058891f

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

src/services/project/schema.graphql

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ type gcpProject @key(fields: "id") {
1919
bigQueryDataset: [gcpBigQueryDataset] @hasInverse(field: project)
2020
bigQueryConnection: [gcpBigQueryConnection] @hasInverse(field: project)
2121
bigQueryReservation: [gcpBigQueryReservation] @hasInverse(field: project)
22-
bigQueryReservationCapacityCommitment: [gcpBigQueryReservationCapacityCommitment] @hasInverse(field: project)
22+
bigQueryReservationCapacityCommitment: [gcpBigQueryReservationCapacityCommitment]
23+
@hasInverse(field: project)
2324
bigQueryDataTransfer: [gcpBigQueryDataTransfer] @hasInverse(field: project)
24-
bigQueryDataTransferRun: [gcpBigQueryDataTransferRun] @hasInverse(field: project)
25+
bigQueryDataTransferRun: [gcpBigQueryDataTransferRun]
26+
@hasInverse(field: project)
2527
vpcConnectors: [gcpVpcConnector] @hasInverse(field: project)
2628
kmsKeyRing: [gcpKmsKeyRing] @hasInverse(field: project)
2729
cloudRouters: [gcpCloudRouter] @hasInverse(field: project)
@@ -45,9 +47,10 @@ type gcpProject @key(fields: "id") {
4547
sqlInstances: [gcpSqlInstance] @hasInverse(field: project)
4648
serviceAccounts: [gcpServiceAccount] @hasInverse(field: project)
4749
kmsCryptoKeys: [gcpKmsCryptoKey] @hasInverse(field: project)
48-
dataprocCluster: [gcpDataprocCluster] @hasInverse(field: project)
4950
dataprocClusters: [gcpDataprocCluster] @hasInverse(field: project)
50-
dataprocAutoscalingPolicies: [gcpDataprocAutoscalingPolicy] @hasInverse(field: project)
51+
dataprocAutoscalingPolicies: [gcpDataprocAutoscalingPolicy]
52+
@hasInverse(field: project)
5153
dataprocJobs: [gcpDataprocJob] @hasInverse(field: project)
52-
dataprocWorkflowTemplates: [gcpDataprocWorkflowTemplate] @hasInverse(field: project)
54+
dataprocWorkflowTemplates: [gcpDataprocWorkflowTemplate]
55+
@hasInverse(field: project)
5356
}

src/types/generated.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,7 +1759,6 @@ export type GcpProject = {
17591759
computeProject?: Maybe<Array<Maybe<GcpComputeProject>>>;
17601760
createTime?: Maybe<Scalars['String']>;
17611761
dataprocAutoscalingPolicies?: Maybe<Array<Maybe<GcpDataprocAutoscalingPolicy>>>;
1762-
dataprocCluster?: Maybe<Array<Maybe<GcpDataprocCluster>>>;
17631762
dataprocClusters?: Maybe<Array<Maybe<GcpDataprocCluster>>>;
17641763
dataprocJobs?: Maybe<Array<Maybe<GcpDataprocJob>>>;
17651764
dataprocWorkflowTemplates?: Maybe<Array<Maybe<GcpDataprocWorkflowTemplate>>>;

0 commit comments

Comments
 (0)