JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 41
  • Score
    100M100P100Q63652F
  • License MIT

Raw Query allows you to send raw query strings to the database.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (strapi-plugin-raw-query) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Strapi Plugin - Raw Query

    Maintenance Maintaner GitHub release NPM release Github all releases GitHub forks GitHub stars GitHub watchers

    Raw Query allows you to send raw query strings to the database within Strapi CMS backend. That's it 🤷🏻‍♂️

    Strapi Plugin - Raw Query

    ⏳ Installation

    Install Strapi with this Quickstart command to create a Strapi project instantly:

    # with yarn
    yarn create strapi-app my-project --quickstart
    
    # with npm/npx
    npx create-strapi-app my-project --quickstart

    This command generates a brand new project with the default features (authentication, permissions, content management, content type builder & file upload). The Quickstart command installs Strapi using a SQLite database which is used for prototyping in development.


    • Add the strapi-plugin-raw-query plugin
    yarn add strapi-plugin-raw-query@latest
    
    # or
    
    npm i strapi-plugin-raw-query@latest
    • Enable the plugin
    // config/plugins.js
    
    module.exports = {
      'raw-query': {
        enabled: true,
      },
      // ...
    }
    
    • After successful installation you've to build a fresh package of the Strapi backend:
    yarn build && yarn develop
    
    # or
    
    npm run build && npm run develop
    • or just run Strapi in the development mode with --watch-admin option:
    yarn develop --watch-admin
    
    #or
    
    npm run develop --watch-admin

    The Raw Query plugin should appear in the Plugins section of Strapi sidebar after you run app again.

    🏚 Strapi v3 Support

    For Strapi v3, you can install the plugin using the following command and continue with the installation:

    yarn add strapi-plugin-raw-query@0.0.3
    
    # or
    
    npm i strapi-plugin-raw-query@0.0.3

    🖐 Requirements

    Supported Strapi versions:

    • Strapi: >= 4.0.x

    Supported Node / NPM versions:

    • Node: >= 12.x.x <= 16.x.x
    • NPM: >= 6.0.0

    We recommend always using the latest version of Strapi to start your new projects.

    🤝 Contributing

    Feel free to fork and make a Pull Request to this plugin project. All the input is warmly welcome!

    ⭐️ Show your support

    Give a star if this project helped you.

    📝 License

    MIT License Copyright (c) 2022 Tobias Thiele.

    ForTheBadge built-with-love