mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
2735d284c1
Fixes #4733. See also hasura/graphql-parser-hs#29.
71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
# NB: Don't test for the returned num_real, since the precision depends on the PG version.
|
|
description: Updated numerics data using _inc operator
|
|
url: /v1/graphql
|
|
status: 200
|
|
query:
|
|
- query: |
|
|
mutation {
|
|
update_numerics(
|
|
where: {id: {_eq: 1}},
|
|
_inc: {
|
|
num_smallint: -1
|
|
num_integer: -1
|
|
num_bigint: -1
|
|
num_real: -1.1
|
|
num_double: -1.1
|
|
num_money: -1.1
|
|
num_numeric: -1.1
|
|
}
|
|
){
|
|
affected_rows
|
|
returning {
|
|
id
|
|
num_smallint
|
|
num_integer
|
|
num_bigint
|
|
num_double
|
|
num_money
|
|
num_numeric
|
|
}
|
|
}
|
|
}
|
|
- query: |
|
|
mutation {
|
|
update_numerics(
|
|
where: {id: {_eq: 1}},
|
|
_inc: {
|
|
num_double: -3E-4
|
|
num_money: -2E-2
|
|
num_numeric: -1E-30
|
|
}
|
|
){
|
|
affected_rows
|
|
returning {
|
|
id
|
|
num_double
|
|
num_money
|
|
num_numeric
|
|
}
|
|
}
|
|
}
|
|
response:
|
|
- data:
|
|
update_numerics:
|
|
affected_rows: 1
|
|
returning:
|
|
- id: 1
|
|
num_smallint: 12344
|
|
num_integer: 12344
|
|
num_bigint: '12344'
|
|
num_double: '12344.57'
|
|
num_money: $12,344.57
|
|
num_numeric: '12344.5700'
|
|
- data:
|
|
update_numerics:
|
|
affected_rows: 1
|
|
returning:
|
|
- id: 1
|
|
num_double: '12344.5697'
|
|
num_money: $12,344.55
|
|
num_numeric: '12344.5699999999999999999999999999990'
|