Closed a-alle closed 2 years ago
Many thanks for raising this bug report @a-alle. :bug: We will now attempt to reproduce the bug based on the steps you have provided.
Please ensure that you've provided the necessary information for a minimal reproduction, including but not limited to:
If you have a support agreement with Neo4j, please link this GitHub issue to a new or existing Zendesk ticket.
Thanks again! :pray:
We've been able to confirm this bug using the steps to reproduce that you provided - many thanks @a-alle! :pray: We will now prioritise the bug and address it appropriately.
Completed in https://github.com/neo4j/graphql/pull/2180
Describe the bug Given the following type definitions:
Then the following query:
Is expected to override the
default
limit of 2 with 4 (coming from thefirst
argument).However, currently the
first
argument is being ignored and thedefault
limit option is used, such that 2 actors are being returned.Expected behavior
first
argument should override thedefault
limit, but still honour themax
limit imposed using@queryOptions
directive.