I started to write the dynamic build front-end service, with squidex on the background, so I can create multiple, different-type components inside the “Page” schema. The concept is that any time I could add any component (pre-created schema inside admin panel) inside Page content, it will be rendered on the front-end part, so I should get the component content, insert it inside the front-end component, and put it inside the page. My problem is that I want to use the scheme name as a connector between the front-end part and squidex. I’m trying to get all pages by GraphQl query, but got the only schemaId, without scheme inside components__Dynamic:
{
queryPagesContents {
id
data {
code {
iv
}
components__Dynamic {
iv
}
}
}
}
Is that possible to include the schema name here?
Environment
Self-hosted with IIS
Version: 5.7.0