Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Paginate returns the same results #63

@Sicria

Description

@Sicria

The following two finds returns different results but when cached, will return the first cached result.

const roles = await app.service('role').find({
    paginate: false,
    query: {
      enabled: true,
    },
  });
const roles = await app.service('role').find({
    paginate: true,
    query: {
      enabled: true,
    },
  });

I think that certain params should be taken into account when generating the cache key.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions