Search into several databases and show all results in one table

@dominic-dearlove yes. it should have 1 more )

  Promise.all(queries.map(q => q.find()))
  .then(r => {
    $w("#resultsTable").rows = r[0].items.concat(r[1].items);
  })

and no comma between },)

As for your questions:

  1. Yes. also add .concat(r[2].items) to the results.

  2. Maybe try to add to your query:

 .contains("featuring_pkmn", $w("#searchinput").value)));
.include('setName')

and for the column datapath try: ‘setName.title’ (instead of ‘.title’ use the field key as appear in the collection you refer to).