Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
loopback-single-query
Advanced tools
The loopback-connector-juggler is a fantastic ORM/ODM that perfectly meets all database query needs. However, when we work with relational databases and include many relationships in the root filter object or its scope, we notice a very large loss of performance.
The loopback-single-query creates a single SQL query from the Loopback Filters to solve these cases. By optimizing tables and relationships in your database, performance gains can achieve impressive results.
This library was tested with Loopback version 2.39.0 and MySQL 5.7.25. Contributions are welcome.
Install:
npm install loopback-single-query
On need:
const filter = {
"include": [
{"relation": "relation1"},
{"relation": "relation2"},
{"relation": "relation3"},
{"relation": "relation4"},
{
"relation": "relation5",
"scope": {
"include": [
{
"relation": "subrelation1",
"scope": {
...
}
},
...
]
}
"fields": {
"id": true,
"title": true
}
"where": {
"and": [
{"title": {"like": "%Term%"}},
{"type": {"inq": [1, 3]}},
{"description": null},
{"id": {
"and": [
{"neq": 100},
{"gte": 1000}
]
}
]
},
"order": ["title ASC", "created DESC"],
"limit": 1,
"skip": 10,
};
const app = require('server/server');
const SingleQuery = require('loopback-single-query');
// Promise
const ps = SingleQuery.find(app.models.Model, filter);
ps.then(console.log);
ps.catch(console.error);
// OR
// Callback
SingleQuery.find(app.models.Model, filter, (err, data) => {
if (err) return console.error(err);
console.log(data);
});
FAQs
Creates a single SQL query from the loopback filters.
The npm package loopback-single-query receives a total of 1 weekly downloads. As such, loopback-single-query popularity was classified as not popular.
We found that loopback-single-query demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.