mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
chore: fix seed usage operation id (#7182)
This commit is contained in:
parent
6424c0ae86
commit
0d9681cda0
2 changed files with 5 additions and 4 deletions
|
|
@ -109,7 +109,7 @@ function start(args: { instance: HiveClient; schema: GraphQLSchema; queries: Doc
|
|||
variableValues: {},
|
||||
contextValue: {},
|
||||
},
|
||||
randNumber > 95
|
||||
randNumber <= 95
|
||||
? {
|
||||
errors: undefined,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
query AllProducts {
|
||||
allProducts {
|
||||
id
|
||||
upc
|
||||
sku
|
||||
name
|
||||
variation {
|
||||
id
|
||||
variations {
|
||||
upc
|
||||
sku
|
||||
name
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue