I am thinking about referencing everything that's in the lookup multiple rows object. But the claygent spat out an error (object object) . Why is that? How do i add functionally "the entire text"?
The error likely happens because you're referencing the entire JSON object instead of specific keys within it. When Claygent tries to process the whole lookup object, it can't handle the structured data properly.
To reference all the data from your lookup multiple rows, you can Insert all items to reference the entire list at once. This gives you access to the complete set of data from all 15 records.
You can also use the Combine items into one text field action in the Cell details panel - this joins all items into one line separated by commas.
Click into the specific cell where you're seeing the error to get more details about what's causing the issue.
Yes, exactly! You'd use Insert all items to reference the entire "records" list from your lookup multiple rows. This gives you access to all 15 items at once instead of trying to reference the whole object structure.
That should resolve the Claygent error you were seeing.
Correct - you can't reference the entire lookup object directly. You need to reference specific parts separately:
- Use "Insert all items" for the records array to get all your data
- Reference numberOfResults separately as its own field
The lookup object contains structured data that Claygent can't process as a whole. You have to break it down into the specific pieces you need rather than passing the entire object.