🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

strapi-plugin-entity-relationship-chart

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

strapi-plugin-entity-relationship-chart

Plugin displays Entity Relationship Diagram of all Strapi models, fields and relations.

4.14.6
latest
npm
Version published
Weekly downloads
2.1K
79.11%
Maintainers
1
Weekly downloads
 
Created
Source

Strapi plugin Entity Relationship Chart

Plugin displays Entity Relationship Diagram of all Strapi models, fields and relations.

Preview

How to install:

  • In a root folder of your strapi project run npm install strapi-plugin-entity-relationship-chart --save
  • Rebuild admin UI strapi build
  • Run strapi strapi develop

Exclude models from chart

You can exclude contentTypes or components from the chart by adding their ids to exclude plugin configuration property:

// file: config/plugins.js
"use strict";

module.exports = () => ({
  // ...
  "entity-relationship-chart": {
    enabled: true,
    config: {
      // By default all contentTypes and components are included.
      // To exlclude strapi's internal models, use:
      exclude: [
        "strapi::core-store",
        "webhook",
        "admin::permission",
        "admin::user",
        "admin::role",
        "admin::api-token",
        "plugin::upload.file",
        "plugin::i18n.locale",
        "plugin::users-permissions.permission",
        "plugin::users-permissions.role",
      ],
    },
  },
  // ...
});

Submitting issues:

Use github issues on the repo: - https://github.com/node-vision/strapi-plugin-entity-relationship-chart/issues

Version Notes:

  • this plugin was tested with stable Strapi - 4.0.6

FAQs

Package last updated on 23 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts