Forward all records from postgres in http request

Hi

I have 7 records from a query in a Postgres node that I want to forward as in an HTTP request

The problem is no matter how I write I only get the first item from the Postgres and not the whole array.

How can I make so all of them are included in the HTTP request and an array

The records

The data I get HTTP request (but instead would like an array of all the records from the Postgres node.

You can use $items() to get the full data of a node.

So for example like this:

{{ $items("CheckMaintenanceRecord") }}

The documentation can be found here:

awsome thanks