Hello,
I want to query for an array but I get an error in one way doing this.
I’m using the nuxt strapi module. In the find-method is explained that the query-array-parameter can be passed in two different way (see at: $strapi).
So if I send request to
GET /articles?id=1%2C2
I got an internal server error.
If I send request to
GET /articles?id=1&id=2
I got the two articles as an result.
So is it right to concatenate the array-values in the second way?
Is it an error in the nuxt strapi module or did this changed in a newer strapi version?
Thanks for some help with this!
Best regards,
Timo