Baserow filter output

It would help if there was a node for:

My use case:

When I get a row from baserow which has a lot of linked fields, there is a lot of unnecessary data received, which makes n8n workflow very slow and even the ui freezing. The baserow api supports filtering the output. Please implement that the same way like for the Airtable node.

Any resources to support this?

https://baserow.io/api-docs/database/187149
The api documentation is only visible after logging into a baserow account.
Api endpoint: Welcome back | Baserow

then use query parameter “include”:

string
All the fields are included in the response by default. You can select a subset of fields to include by providing the include query parameter.

With user_field_names:
include should be a comma separated list of field names to be included in results. For example if you provide the following GET param: include=My Field,-My Field 2 then only those fields will be included (unless they are explicitly excluded).

The name of fields containing commas must be surrounded by quotes: “Name ,”. If the field names contain quotes, then they must be escaped using the \ character. Eg: Name ".

Without user_field_names:
include should be a comma separated list of field_ followed by the id of the field to include in the results. For example: If you provide the following GET parameter include=field_1,field_2 then the fields with id 1 and id 2 then only those fields will be included (unless they are explicitly excluded).

Are you willing to work on this?

I cannot work on this by myself but I have a developer who could contribute on my behalf.