Hello, I am developing an application in Bubble using the Salesforce API. Users authenticate with their Salesforce environment via OAuth and can retrieve records through the API. I am currently working on implementing the following functionality:
-
Users select a specific object from a list of Salesforce objects.
-
Based on the selected object, the list of fields for that object is displayed.
-
Users select fields.
-
Data for the records is displayed based on the selected fields.
I am encountering a particular issue with the last step, dynamically displaying record data based on the selected fields. I am trying to use Bubble’s Repeating Group
to display the data, but I can’t figure out how to dynamically specify fields within the Current Cell
. Specifically, I have been able to fetch data with an SOQL query like SELECT chosen_fields FROM chosen_object
, but I am struggling to find a way to display this data in the Repeating Group
.
If anyone has a solution or advice on how to approach this issue, please let me know. Any help would be greatly appreciated.