So my understanding is that Node.js offloads blocking operations to thread pool like file system access, crypto, compression etc.
My question is, What about http calls in which we run db queries to fetch or update data? Are those calls also delegated to the thread pool because they are waiting or that wait doesn’t block the main event loop?