Certain Strapi fields (usually media and page objects) are not fetched by GraphQL

The fields that are available in Strapi don’t appear in GraphQL schema (GraphiQL playground);

I tried everything:
all permissions are given in the Roles;
deep population works, gatsby-source-strapi is configured (except for dynamic zones (for my sections’ components) that I haven’t even seen how to populate;
reconnecting my CMS to another (it’s not even reconnected to another app - I see a starter GraphQL schema all the time);
Installed deep-populate Strapi plugin; Anybody faced such a problem ??? P.S. I have a self-hosted Strapi CMS.

This topic has been created from a Discord post (1290239388449636405) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Here’s how I solved a situation in my gatsby-config:

{
singularName: “page”,
queryParams: {
populate: {
sections: {
populate: [
“list.image”,
“list.page”,
“list.thumbnail”,
“cta”,
“images”,
“image”,
],
},
},
},
},`