Generates and displays Entity Relationship Diagram of all Strapi models, fields and relations.
Plugin displays Entity Relationship Diagram of all Strapi models, fields and relations.
npm install strapi-plugin-entity-relationship-chart --save
strapi build
strapi develop
You can exclude contentTypes or components from the chart by adding their ids to exclude
plugin configuration property:
1// file: config/plugins.js
2"use strict";
3
4module.exports = () => ({
5 // ...
6 "entity-relationship-chart": {
7 enabled: true,
8 config: {
9 // By default all contentTypes and components are included.
10 // To exlclude strapi's internal models, use:
11 exclude: [
12 "strapi::core-store",
13 "webhook",
14 "admin::permission",
15 "admin::user",
16 "admin::role",
17 "admin::api-token",
18 "plugin::upload.file",
19 "plugin::i18n.locale",
20 "plugin::users-permissions.permission",
21 "plugin::users-permissions.role",
22 ],
23 },
24 },
25 // ...
26});
Use github issues on the repo: - https://github.com/node-vision/strapi-plugin-entity-relationship-chart/issues
npm install strapi-plugin-entity-relationship-chart
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.