Skip to content

Commit 8f3b3e9

Browse files
author
Taniya Mathur
committed
Fix TestSet fileCount field to be nullable
- Changed fileCount from Int! to Int in TestSet type - Resolves GraphQL validation error when backend returns null fileCount - Allows test sets with unknown file counts during processing
1 parent adce7c5 commit 8f3b3e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ type TestSet @aws_cognito_user_pools @aws_iam {
303303
id: String!
304304
name: String!
305305
filePattern: String
306-
fileCount: Int!
306+
fileCount: Int
307307
status: String
308308
createdAt: AWSDateTime!
309309
error: String

0 commit comments

Comments
 (0)