JSON:API will return max 50 items at a time. The API Client's getCollection method will return the first 50, but then the developer must provide additional code to parse the results for the Next links and make additional "fetch" calls to retrieve more content.
const response = await client.getCollection("node--ride") // Gets first 50
var links = response.links // Follow the next link
// Request the rest, 50 at a time
while(links.hasOwnProperty("next")) {
const res = await fetch(links.next.href)
const json = await res.json()
...
From Coby Sher on Slack
"In the DrupalState (predecessor of this project) we had a flag you could pass in that would do essentially what your code is doing for you. Here we might consider a new method like getCollectionAll "
Add the "get next 50" loop to the client, thus reducing complexity for the developer.
n/a
I imagine the getCollectionAll would have some parameters like 'maximum' etc.
n/a
Active
Code