Hello there! I have a simple query like that:
which returns a large set, ±1500 items:
{
'foo-001',
'foo-002',
# many more here
}
If I execute such query in edgedb UI, all good. If I use EdgeDbClient in Java, I get only 600-700 items.
I tried to workaround it by using the other methods (queryJson, queryJsonElements) but no luck.
The only thing that helped isselect array_join(array_agg(foo::Bar.someId), ',') 🫠
Versions:
- com.edgedb:driver:0.1.0"
- edgedb/edgedb:3.1 ("3.1+f4bab56")
- EdgeDB CLI 3.4.0+4d95a2c
Implicit limit is 0 in the config.
Hello there! I have a simple query like that:
which returns a large set, ±1500 items:
{ 'foo-001', 'foo-002', # many more here }If I execute such query in edgedb UI, all good. If I use EdgeDbClient in Java, I get only 600-700 items.
I tried to workaround it by using the other methods (queryJson, queryJsonElements) but no luck.
The only thing that helped is
select array_join(array_agg(foo::Bar.someId), ',')🫠Versions:
Implicit limit is 0 in the config.