Is the communication through Apollo Provider from frontend to server automatically encrypted?

I’ve been wrapping my App with the Apollo Provider, enabling queries and mutations from my frontend to my server, as well as fetching information from there. My question is, if these queries and mutations are encrypted by default before being transmitted.

They aren’t, what’s the trouble?

If you use HTTPS, all communication between the client and server, including queries and mutations, is encrypted by the transport layer.

Thanks a lot. I didn’t mind that.