I try to find objects in google datastore via GQL and JSON API by date range. For example, this is my request:
SELECT * FROM table WHERE uuid = "test" AND start >= 100 AND end <= 150
But i get error:
{ errors:
[ { domain: 'global',
reason: 'INVALID_ARGUMENT',
message: 'can\'t have inequality filters on different properties: [start, end]' } ],
code: 400,
message: 'can\'t have inequality filters on different properties: [start, end]' }
Can i edit this request or use another way to get objects by date range?