Fix startup bug in demo script

This commit is contained in:
Vikram Rangnekar
2019-07-30 01:38:05 -04:00
parent dd085fb7fd
commit cf0e4d10fd
14 changed files with 110 additions and 39 deletions

View File

@ -30,4 +30,21 @@ query {
name
image
}
}
query {
products(
limit: 30
order_by: { price: desc }
distinct: [price]
where: { id: { and: { greater_or_equals: 20, lt: 28 } } }
) {
id
name
price
user {
id
email
}
}
}

View File

@ -9,7 +9,7 @@ log_level: "debug"
# queries used. When enabled super graph
# will only allow queries from this list
# List saved to ./config/allow.list
use_allow_list: false
use_allow_list: true
# Throw a 401 on auth failure for queries that need auth
# valid values: always, per_query, never