Relationship Field Pagination issue #11562
Unanswered
TheRefineryAU
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have an collection like:
const Shows: CollectionConfig = { slug: 'lineups', access: { ... }, fields: [ { name: 'name', type: 'text', required: true, unique: true, }, { name: 'artists', type: 'relationship', relationTo: 'artistprofiles', hasMany: true, } };
when i query like
http://localhost:3000/api/lineups/{lineup_id}?depth=3
the 'artists' field is paginated. is there anyway to change the limit or disable the pagination?Beta Was this translation helpful? Give feedback.
All reactions