Blaze admin package
Contains the core functions for loading core admin app plugins.
Example implementation
import { getBlazeAdmin } from '@blaze-cms/admin';
import buildConfig from '../blaze.config';
const app = getBlazeAdmin({ buildConfig });
app.render();
Apollo settings
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.