chore: fix seed usage operation id (#7182)

This commit is contained in:
jdolle 2025-10-28 00:36:50 -07:00 committed by GitHub
parent 6424c0ae86
commit 0d9681cda0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View file

@ -109,7 +109,7 @@ function start(args: { instance: HiveClient; schema: GraphQLSchema; queries: Doc
variableValues: {},
contextValue: {},
},
randNumber > 95
randNumber <= 95
? {
errors: undefined,
}

View file

@ -1,10 +1,11 @@
query AllProducts {
allProducts {
id
upc
sku
name
variation {
id
variations {
upc
sku
name
}
}