{
let res = []
yield md`Fetched ${res.length} of ${totalPublicationsCount} publications based on year, publication type and organisation.
Fetching... ⌛`
for await (const pub of publicationsSearchResultDelayed) {
res.push(pub)
if (res.length % 100 === 0) {
yield md`Fetched ${res.length} of ${totalPublicationsCount} publications based on year, publication type and organisation.
Fetching... ⌛`
}
}
mutable rawPublications = res
yield md`Fetched ${res.length} of ${totalPublicationsCount} publications based on year, publication type and organisation.
All done. ✔️`
}