In Xano I have a database table called “data” where I have 2 columns - “id” and a list/array of “titles”. (Example: [Title 1, Title 2, Title 3])
I have an id stored in a variable in Weweb. (Example: 50)
I want to bind the initial value of an input field to show the list of titles for a given id, depending on what id is in the variable.
For example if the variable says “50”, I want to display the list of titles for id 50 of the database table, returning something like [Title 1, Title 2, Title 3] depending on what’s on the table.
I do not want to show everything in the collection, just the titles for that particular ID.
How do I do this in Weweb / nocode formula?