# Mass update objects without iterating or functions, is it possible?

**URL:** https://community.appfarm.io/t/mass-update-objects-without-iterating-or-functions-is-it-possible/1793
**Category:** Ask the community
**Created:** [April 11, 2025, 7:39am UTC](https://community.appfarm.io/t/mass-update-objects-without-iterating-or-functions-is-it-possible/1793 "2025-04-11T07:39:38Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![torstro](https://avatars.discourse-cdn.com/v4/letter/t/5daacb/32.png) [@torstro](https://community.appfarm.io/u/torstro)
#### Post date: [April 11, 2025, 7:39am UTC](https://community.appfarm.io/t/mass-update-objects-without-iterating-or-functions-is-it-possible/1793/1 "2025-04-11T07:39:38Z")

</div>

Working with a REST-heavy applications I find myself doing something similar to the example below quite often. I will use the Tasks and Projects as an example.

 ![image](https://europe1.discourse-cdn.com/flex013/uploads/appfarm/original/2X/e/e80d571df6a35e9c151f7760c931582b03bac4cb.png)  
Imagine you have this data model. Unfortunately the projects and tasks come from separate API calls so you can’t use nested mapping. Also the customer has an amazing amount of projects and tasks.

The fastest solution that doesn’t produce errors I have found so far is to use a function similar to this when using an Update Object on Task with selection All.

 ![image](https://europe1.discourse-cdn.com/flex013/uploads/appfarm/original/2X/4/4781923dbd005c07d2da43115de4957b56d2148f.png)

Is this the best solution? In a perfect world I would like to do something like this on a single action node Update Object(s) with a filter or similar without having to use a function.

---

<div class="post-metadata">

### Author: ![Joanna](https://dub1.discourse-cdn.com/flex013/user_avatar/community.appfarm.io/joanna/32/122_2.png) [@Joanna](https://community.appfarm.io/u/Joanna)
#### Post date: [April 11, 2025, 9:17am UTC](https://community.appfarm.io/t/mass-update-objects-without-iterating-or-functions-is-it-possible/1793/2 "2025-04-11T09:17:54Z")

</div>

Hi @torstro, as far as I know, using a function is the only way to solve this if you want to avoid an iteration, since it’s currently not possible to apply filters in a data binding.

---

<div class="post-metadata">

### Author: ![torstro](https://avatars.discourse-cdn.com/v4/letter/t/5daacb/32.png) [@torstro](https://community.appfarm.io/u/torstro)
#### Post date: [April 11, 2025, 9:58am UTC](https://community.appfarm.io/t/mass-update-objects-without-iterating-or-functions-is-it-possible/1793/3 "2025-04-11T09:58:06Z")

</div>

Okay, thank you for your reply.

It would be a cool addition if something like this was possible in the future.
