Hey!
I created a search type action in my app, in this app, in API Configuration, i defined an API, the api will return an array that contains multiple records from db query, but every time when i run “Test your API Request” in step2, in response, it only return one record.
I’m wondering why? based on the description of API Endpoint, This Search request must return an array.
So what i expected in response should be an array, just like:
l
{
k1:v1,
k2:v2
},
{
k1:v1,
k2:v2
}
]
But it returned to me an object:
{
k1:v1,
k2:v2
}