Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Historical events subscription ignoring limit and keys clause #423

Open
1 task
rsodre opened this issue Mar 21, 2025 · 1 comment
Open
1 task
Labels
bug Something isn't working

Comments

@rsodre
Copy link
Contributor

rsodre commented Mar 21, 2025

Dojo.js Version

1.3.0

What happened?

The initial amount of events returned by a historical events subscription using sdk.subscribeEventQuery() does not respect the withLimit() parameter.

What is the expected behavior?

We should be to limit the initial amount of events the subscription returns

Steps to reproduce

I used this query, on https://api.cartridge.gg/x/pistols-sepolia/torii

const query = new QueryBuilder()
  .withClause(
    new PistolsClauseBuilder().keys(
      ["pistols-PlayerActivity"],
      [],
    ).build()
  )
  .withEntityModels([
    "pistols-PlayerActivity",
  ])
  .withLimit(100)

Result (771 events):

Image

Another query, with a keys clause, returns ALL historical events, including the ones that do match the key or models:

new QueryBuilder()
  .withClause(
    new ClauseBuilder().keys(
      ["pistols-LordsReleaseEvent"],
      [season_table_id]
    ).build()
  )
  .withEntityModels(
    ["pistols-LordsReleaseEvent"]
  )
  .includeHashedKeys()

Trace

No response

Is there an existing issue for this?

  • I have searched the existing issues and verified no issue exits for this problem.
@rsodre rsodre added the bug Something isn't working label Mar 21, 2025
@rsodre rsodre changed the title [Bug]: Historical events subscription ignoring limit [Bug]: Historical events subscription ignoring limit and keys clause Mar 28, 2025
@rsodre
Copy link
Contributor Author

rsodre commented Mar 28, 2025

Edited adding another case where a keys clause is not being respected. All entities, including the ones not including the query model, are being returned.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant