Giter Club home page Giter Club logo

mongoose-slug-plugin's Issues

update hook

  1. add an option to disable slug history field
  2. add pre update and findOneUpdate hook, current validate hook only fire when save.
    Thanks.

The `str` argument was missing at getUniqueSlug

Hello, I've been facing with an issue when I try to save documents which uses mongoose-slug-plugin.

I've set alwaysUpdateSlug options to false to avoid slug check on each save(), but it keeps trying to check the slug.

Here is my plugin settings:
ShopSchema.plugin(mongooseSlugPlugin, { tmpl: "<%=name.en%>", alwaysUpdateSlug: false });

Here is the log:
Error: The str argument was missing at getUniqueSlug (/app/node_modules/mongoose-slug-plugin/index.js:8:29)

I guess it's because I select fields when I get document from its collections and I don't select slug field because I don't need it. But plugin tries to check the slug field which is null at this point.

How can I disable this plugin for doc.save() functions? Or is there a way to bypass it where I don't want this plugin to check document?

use of deprecated count()

DeprecationWarning: collection.count is deprecated, and will be removed in a future version. Use collection.countDocuments or collection.estimatedDocumentCount instead

I tested just changing line 13 of index from:
const count = await constructor.count(query);
to:
const count = await constructor.countDocuments(query);
and it fixed the warning message (as per guidelines of mongoose herehttps://mongoosejs.com/docs/deprecations.html

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.