Im trying to repeat an array to return database

Array1 Array2

What im doing is adding new items to the array each time the user makes a database insert, and I’m a database query that i want to use to return those inserted records, so im passing the array items to the Get field of the query, when i try to repeat the get(array) field in server connect, only the first record is returned, other records are not returned

I still need response

I don’t know what is going wrong, but you need to do some step by step debugging. First check the request of the server connect with devtools in the browser, what is set for the taskids and what exactly does it return. A common mistake with arrays is often that they are serialized and send as an comma separated string, like 1, 2, 3 and then used as a single string value resulting in an single or empty result.

I am passing the array into the taskid, in the server connect, the get variable(taskids) is an array also, i am using the repeat to repeat the taskid, inorder to filter query, i selected the $value as the condition because the repeat has no output fileds to select, on the frontend if i repeat the repeat(the repeat that is repeating the taskids) in a row, it return number of items in the array which is what i was
expecting but when i repeat the filtered query and i bind the field, they are not displaying, if i repeat the returned query ,it returns a single query and the binded fields are visible… If i bind directly to the $value ,i see [object object]

The $value is the array value, which in your case is an object. Sometimes Wappler doesn’t know what an object contains for properties and it then will not show them. It is always possible to add them by hand. If you know what the property you need is called then you can type the expression yourself, in most cases it is just the property name like {{id}} as expression.

i dont know which property it will return , each time i inserted a new record ,i am inserting the identity of the record in to the array, and i passed that array into $get taskids variable(another array),so that i can return those newly inserted records