edgedb / edgedb-ui

The home of EdgeDB UI and all related shared UI components
Apache License 2.0
50 stars 7 forks source link

Issue with offset and limit on edgedb-ui #336

Closed chanduvalokin closed 7 months ago

chanduvalokin commented 7 months ago

Inconsistencies observed in UI responses when executing queries with offset and limit parameters.

I have more than 50000 data in db.

For eg: When offset to set to 100 and limit to 100, response returned is single instance. When offset to set to 99 and limit to 100, response returned only 2 instances. When offset to set to 98 and limit to 100, response returned only 3 instances.

Whenever offset is set above limit it return nothing.

However, calling the API with the same query consistently provides the correct response, delivering the expected 100 records starting from the specified offset.

chanduvalokin commented 7 months ago

Closing this issue. We need to disable or update Implicit Limit option.