Query with since/until should return all events in range.
User Story
As a Nostr app developer
I want to receive all events when I query with since and until
So that I don't have to implement pagination myself in every app
Acceptance Criteria
- When querying with
since and until, all matching events in that range
are returned
- NDK handles pagination internally (fetching backwards until reaching
since)
- No change to existing API, just the behavior
Alternatives Considered