New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@uql/sqlite

Package Overview
Dependencies
Maintainers
1
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uql/sqlite - npm Package Compare versions

Comparing version 0.4.22 to 0.4.23

4

package.json

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "0.4.22",
"version": "0.4.23",
"main": "index.js",

@@ -25,3 +25,3 @@ "types": "index.d.ts",

"@types/sqlite3": "^3.1.7",
"@uql/core": "^0.4.22",
"@uql/core": "^0.4.23",
"copyfiles": "^2.4.1",

@@ -28,0 +28,0 @@ "rimraf": "^3.0.2",

@@ -486,2 +486,3 @@ [![build status](https://travis-ci.org/impensables/uql.svg?branch=master)](https://travis-ci.org/impensables/uql?branch=master)

import { hasKeys } from '@uql/core/util';
import { getMeta } from '@uql/core/entity/decorator';
import { querierMiddleware } from '@uql/express';

@@ -504,3 +505,3 @@

qm.$limit = obtainValidLimit(qm.$limit);
const prefix = hasKeys(qm.$populate) ? type.name + '.' : '';
const prefix = hasKeys(qm.$populate) ? getMeta(type).name + '.' : '';
qm.$filter = {

@@ -542,4 +543,4 @@ ...qm.$filter,

const users = await userRepository.findMany({
$populate: { profile: { $project: ['picture'] } },
$filter: { name: { $startsWith: 'lorem' } },
$populate: { profile: { $project: ['picture'] } },
$sort: { createdAt: -1 },

@@ -546,0 +547,0 @@ $limit: 100,

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc