Need help with how to query a .find() in my nodeJs backend

Hi @Niklas_Soderberg,

If you want to get all the documents with same name value, you can just filter by name in addition.

History.find({
  "project_id": project_id,
  "v2Response.queryResult.intent.displayName": intent_name,
  "updated": false,
  "name": name
}).sort({
  "responseTime": 1
})

Working example