Keep failing passing arrays to axios.get request to retrieve data from Mongoose Keep failing passing arrays to axios.get request to retrieve data from Mongoose mongoose mongoose

Keep failing passing arrays to axios.get request to retrieve data from Mongoose


I think you can adjust your params object as follows to achieve your desired result:

const req = {  params: {    coordinate: `[${userCoordinates.join(",")}]`,    sports: `[${favCagetories.join(",")}]`,  },};