Contains the core functions for loading core admin app plugins.
import { getBlazeAdmin } from '@blaze-cms/admin';
import buildConfig from '../blaze.config';
const app = getBlazeAdmin({ buildConfig });
app.render();
By default the admin sets addTypename=false
so __typename
is not added to all queries. Currently this is to facilitate using data returned from the api in forms and saving it back to the api without having to remove __typename
from each nested item returned from the api.
Note: this may change in the future.