How to use the forest-express-sequelize.ResourceRemover function in forest-express-sequelize

To help you get started, we’ve selected a few forest-express-sequelize examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ForestAdmin / graphql-stitcher / example / meals / Meals / graphql / menus.js View on Github external
delete_menus: async (obj, params) => {
          return await new Liana.ResourceRemover(models.menus, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / movies / Movies / graphql / movies.js View on Github external
delete_movies: async (obj, params) => {
          return await new Liana.ResourceRemover(models.movies, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / movies / Movies / graphql / countries.js View on Github external
delete_countries: async (obj, params) => {
          return await new Liana.ResourceRemover(models.countries, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / meals / Meals / graphql / chef_availabilities.js View on Github external
delete_chef_availabilities: async (obj, params) => {
          return await new Liana.ResourceRemover(models.chef_availabilities, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / movies / Movies / graphql / actor_images.js View on Github external
delete_actor_images: async (obj, params) => {
          return await new Liana.ResourceRemover(models.actor_images, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / meals / Meals / graphql / orders_products.js View on Github external
delete_orders_products: async (obj, params) => {
          return await new Liana.ResourceRemover(models.orders_products, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / movies / Movies / graphql / genres_movies.js View on Github external
delete_genres_movies: async (obj, params) => {
          return await new Liana.ResourceRemover(models.genres_movies, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / meals / Meals / graphql / menus_products.js View on Github external
delete_menus_products: async (obj, params) => {
          return await new Liana.ResourceRemover(models.menus_products, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / movies / Movies / graphql / comments.js View on Github external
delete_comments: async (obj, params) => {
          return await new Liana.ResourceRemover(models.comments, { recordId: params.id }).perform();
        },
      }
github ForestAdmin / graphql-stitcher / example / meals / Meals / graphql / delivery_men.js View on Github external
delete_delivery_men: async (obj, params) => {
          return await new Liana.ResourceRemover(models.delivery_men, { recordId: params.id }).perform();
        },
      }