How to Send a GET Request using axios:
await this.client.get('/endpoint', { params: { query: ['max', 'kevin'] } })
This will result in a URL that looks like this:
Request GET /endpoint?query[]=max&query[]=kevin
Any suggestions on how to parse this into a string array?
Extra points for knowing how to validate the format in express-validator!