Add getCollectionAll

Created on 7 March 2025, 27 days ago

Problem/Motivation

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.

Steps to reproduce

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()
...

Proposed resolution

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 "

Remaining tasks

Add the "get next 50" loop to the client, thus reducing complexity for the developer.

User interface changes

n/a

API changes

I imagine the getCollectionAll would have some parameters like 'maximum' etc.

Data model changes

n/a

✨ Feature request
Status

Active

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States lieb

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @lieb
  • πŸ‡³πŸ‡±Netherlands bbrala Netherlands

    I would advise we'd also add an optinal argument limit. So you can fetch x of the overview and perhaps make sure people dont start using this and end up querieing thousands of nodes.

Production build 0.71.5 2024