Hello! One of the apps I’m working on utilizes a custom plugin. In that plugin, we feed some of our bubble data to external API calls that we’ve built.

I am running into an odd issue with the Bubble data. I am using the plugin v4 api.

The issue I am facing is getting a text data field from a datatype. This text data field stores the unique id of a different data type as a text.

Example:

ParentObject has unique id ‘12345’
ChildObject has a text datafield called ParentObjectID, which is set to ‘12345’

When I call await ChildObject.get(‘ParentObjectID_text’) in the plugin code, it is returning the entire ParentObject pointer instead of just the text… This seems like a bug to me but please let me know if this is expected behavior.

Editing to add that this bug seems to only be present when working with a list of Bubble objects.