Nikunj Gupta
01/30/2023, 10:42 AMKishore Nallan
01/30/2023, 10:48 AMNikunj Gupta
01/30/2023, 10:50 AMdownloadData: () => {
let hits = []
index
.browseObjects({
query: '',
batch: batch => {
hits = hits.concat(batch)
},
})
.then(() => {
console.log(hits)
})
}
Kishore Nallan
01/30/2023, 10:54 AMindex
is not initialised properly. Try printing the value of index
.Nikunj Gupta
01/30/2023, 11:05 AMKishore Nallan
01/30/2023, 11:09 AM