We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regarding my previous issue (#161) I'm asking if it is possible to access / call a core function from my bind object?
I'd like to "override" the core find() function
db.bind('tickets').bind({ findTickets: function(params, cb) { this.find(params, function(err, result) { ... }); } });
Is it possible somehow to use find insead of findTickets and access the parent find function instead of this.find()?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Regarding my previous issue (#161) I'm asking if it is possible to access / call a core function from my bind object?
I'd like to "override" the core find() function
Is it possible somehow to use find insead of findTickets and access the parent find function instead of this.find()?
The text was updated successfully, but these errors were encountered: