graphql-engine/server/tests-py/queries/graphql_query/permissions/user_query_auction.yaml

22 lines
333 B
YAML
Raw Normal View History

description: Query bid prices more than actual price
url: /v1alpha1/graphql
status: 200
headers:
X-Hasura-Role: user
response:
data:
auction:
- id: 4
bid_price: 260
query:
query: |
query {
auction(
order_by: {bid_price: asc}
limit: 1
) {
id
bid_price
}
}