Can confirm that (implemented JMAP). Deltas and asking for the entire mailbox instead of folder by folder is really good.
And as a side effect:
1. Less client-side logic for sync.
2. There are many JSON parsers compared to IMAP, making it way easier to use.
For example, in C++, you only need a JSON headers-only library, whereas IMAP is meh—only Linux, or clunky usage. Btw, I made one from scratch (IMAP Parser).
3. Goodies like offloading HTTP to the mobile network stack, which supports TLS 1.3 and offline (background) sync, compared to manually extracting certificates from an IMAP connection to validate against the device keychain.
It's just 10x easier.