mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
22 lines
333 B
YAML
22 lines
333 B
YAML
|
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
|
||
|
}
|
||
|
}
|