Skip to content

Commit f8097f7

Browse files
committed
Merge branch 'fix/account-schema-fix' into 'master'
fix: added plural schema field for vpnConnections service Closes CG-1044 See merge request auto-cloud/cloudgraph/provider/cloudgraph-provider-aws!224
2 parents b32dbe4 + 9588681 commit f8097f7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/services/account/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ type awsAccount @key(fields: "id") {
9090
transitGateway: [awsTransitGateway]
9191
transitGatewayAttachments: [awsTransitGatewayAttachment]
9292
vpc: [awsVpc]
93-
vpnConnection: [awsVpnConnection]
93+
vpnConnections: [awsVpnConnection]
9494
vpnGateway: [awsVpnGateway]
9595
wafV2WebAcl: [awsWafV2WebAcl]
9696
}

src/types/generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export type AwsAccount = {
220220
transitGateway?: Maybe<Array<Maybe<AwsTransitGateway>>>;
221221
transitGatewayAttachments?: Maybe<Array<Maybe<AwsTransitGatewayAttachment>>>;
222222
vpc?: Maybe<Array<Maybe<AwsVpc>>>;
223-
vpnConnection?: Maybe<Array<Maybe<AwsVpnConnection>>>;
223+
vpnConnections?: Maybe<Array<Maybe<AwsVpnConnection>>>;
224224
vpnGateway?: Maybe<Array<Maybe<AwsVpnGateway>>>;
225225
wafV2WebAcl?: Maybe<Array<Maybe<AwsWafV2WebAcl>>>;
226226
};

0 commit comments

Comments
 (0)