diff --git a/scripts/seed-usage.ts b/scripts/seed-usage.ts index 7705cfb95..e3d59ba6a 100644 --- a/scripts/seed-usage.ts +++ b/scripts/seed-usage.ts @@ -109,7 +109,7 @@ function start(args: { instance: HiveClient; schema: GraphQLSchema; queries: Doc variableValues: {}, contextValue: {}, }, - randNumber > 95 + randNumber <= 95 ? { errors: undefined, } diff --git a/scripts/seed-usage/federated/all-products.graphql b/scripts/seed-usage/federated/all-products.graphql index d4be46a5c..f7e03c4b8 100644 --- a/scripts/seed-usage/federated/all-products.graphql +++ b/scripts/seed-usage/federated/all-products.graphql @@ -1,10 +1,11 @@ query AllProducts { allProducts { - id + upc sku name - variation { - id + variations { + upc + sku name } }