Closed igotfr closed 3 years ago
Yes, I'll verify it further!
Hi,@cindRoberta This bug has been fixed, thanks for your feedback.
@biner88 other query not running
id | description | quantity | price |
---|---|---|---|
1 | Bean | 3 | 4.7 |
2 | Rice | 5 | 15 |
3 | Flour | 15 | 2.5 |
4 | Axe | 3 | 18.6 |
5 | Broom | 8 | 7.3 |
await conn.getAll(table: 'Product', fields: '*', where: {'id': ['between', '2,4']});
id | description | quantity | price |
---|---|---|---|
2 | Rice | 5 | 15 |
3 | Flour | 15 | 2.5 |
4 | Axe | 3 | 18.6 |
Internal Server Error RangeError (index): Invalid value: Not in inclusive range 0..1: 2
This is a document error, the correct one should be
await conn.getAll(table: 'Product', fields: '*', where: {'id': ['between', 2,4]});
@cindRoberta
table Product:
Query
Exepected
Getted