npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

js-rql

v1.0.7

Published

Javascript RQL lib to transform js/ts object to rql query string

Downloads

10

Readme

Javascript RQL

Build Status codecov npm Quality Gate Status

The js-rql is a simple and powerful library to transform javascript object to valid rql query string. Supports queries of any complexity (any nesting).

RQL

RQL (Resource query language) is designed for modern application development. It is built for the web, ready for NoSQL, and highly extensible with simple syntax. This is a query language fast and convenient database interaction. RQL was designed for use in URLs to request object-style data structures.

Credit

The code for this package is heavily inspired by javascript-rql.

RQL Reference

RQL for Web

Django RQL

Install

To install the javascript-rql from a terminal window type:

$ npm install --save js-rql

Usage

You can import rql function:

import { rql } from 'js-rql';

or

const { rql } = require('js-rql');

and use:

rql(rqlObject);

Examples

Simple filters
import rql, {BaseModel} from "js-rql";
import {Query} from "./types";

interface Person extends BaseModel {
	name: string
	age: number
}

const filter: Query<Person> = {
	name: 'eugene',
	age: 13,
};

rql(filter); // 'name=eugene&age=13'
Filters with text matching
import rql, {Query} from "js-rql";

const filter: Query<any> = {
	name: {
		$like: 'vasya*',
		$ilike: '***New',
	},
	city: {
		$like: {
			start: 'M',
			end: 'w',
		},
		$ilike: {
			start: 'M',
		},
	},
	country: {
		$like: {
			end: 'a',
		},
		$ilike: {
			pattern: '*u*ss*',
			start: 'R',
			end: 'a',
		},
	},
	area: {
		$ilike: true,
		$like: {
			invalidKey: 'qwe',
		},
	},
};

rql(filter); //'like(name,*vasya\**)&ilike(name,*\*\*\*New*)&like(city,M*w)&ilike(city,M*)&like(country,*a)&ilike(country,R*a)&ilike(country,*u*ss*)like(name,*vasya\**)&ilike(name,*\*\*\*New*)&like(city,M*w)&ilike(city,M*)&like(country,*a)&ilike(country,R*a)&ilike(country,*u*ss*)'
Filter with list
import rql, {Query} from "js-rql";

const filter: Query<any> = {
    age: {
        $out: [1, 2],
    },
    num: {
        $in: [3, 4, 5],
    },
};

rql(filter); //'out(age,(1,2))&in(num,(3,4,5))'
Filters with range
import rql, {Query} from "js-rql";

const filter: Query<any> = {
    age: {
        $range: {
            max: 5,
            min: 9,
        },
    },
};

rql(filter); //'range(age,9,5)'
Filters with relationals
import rql, {Query} from "js-rql";

const filter: Query<any> = {
    name: {
        $eq: 'vasya',
    },
    age: {
        $gt: 1,
        $lt: 8,
    },
    num: {
        $lte: 9,
        $gte: 4,
    },
};

rql(filter); //'eq(name,vasya)&gt(age,1)&lt(age,8)&lte(num,9)&gte(num,4)'
Filters with logical NOT
import rql, {Query} from "js-rql";

const filter: Query<any> = {
    name: {
        $not: [{
            $eq: 'vasya',
        }, {
            $eq: 'petya',
        }],
    },
    age: {
        $not: {
            $eq: 10,
            $in: [1, 2, 3],
        },
    },
};

rql(filter); //'not(eq(name,vasya))&not(eq(name,petya))&not(eq(age,10))&not(in(age,(1,2,3)))'
Filters with logical OR
import rql, {Query} from "js-rql";

const filter: Query<any> = {
    // You can use $or inside field
    color: {
        $or: [
            // Inside { } may be some conditions and for all them is used logical operator AND
            {$eq: 'red'},
            {$eq: 'blue'},
            {$eq: 'yellow'},
        ],
    },

    // Also you can use $or in root level, then inside must be objects array with fields name
    $or: [
        // Inside { } may be some fields with conditions and for all them is used logical operator AND
        {product: 'TV'},
        {product: 'Computer'},
    ],
};

rql(filter); //'(((eq(color,red))|(eq(color,blue)))|(eq(color,yellow)))&((product=TV)|(product=Computer))'
Combine AND and OR filters
// When you need to use same keys in and conditions (for example with OR) you can use special logical AND:
import rql, {Query} from "js-rql";

const filter: Query<any> = {
	$and: [
		{
			$or: [
				{status: 'new'},
				{type: 'program'},
			],
		},
		{
			$or: [
				{status: 'done'},
				{type: 'service'},
			]
		},
	]
};

rql(filter); // "(((status=new)|(type=program)))&(((status=done)|(type=service)))"
Filters with control operators

We support 2 key for ordering: ordering and sort. Use the one which is implemented by the backend.

import rql, {Query} from "js-rql";

const filter: Query<any> = {
	$select: ['products', 'agreements'],
	$ordering: '-created',
	$sort: ['-name'],
	$limit: {start: 10, count: 100},
};

rql(filter); //Result: 'select(products,agreements)&ordering(-created)&sort(-name)&limit(10,100)'
Combine any filters in one query
import rql, {Query} from "js-rql";

const combinationFilter: Query<any> = {
	offset: 0,
	limit: 10,
	$select: ['products', 'agreements'],
	$ordering: ['title', '-created'],
	$or: [
		{
			type: 'distribution',
			owner: {$eq: 'me'},
		},
		{
			type: {$in: ['sourcing', 'service']},
			owner: {$not: {$eq: 'me'}},
		},
	],
	name: {
		$or: [
			{$like: 'my test'},
			{$like: 'my'},
			{$ilike: '***CONTRACT'},
		],
  },
};

rql(filter); //'offset=0&limit=10&select(products,agreements)&ordering(title,-created)&((type=distribution&eq(owner,me))|(in(type,(sourcing,service))&not(eq(owner,me))))&(((like(name,"*my test*"))|(like(name,*my*)))|(ilike(name,*\*\*\*CONTRACT*)))'
Filters with empty values
// If values are empty, null, undefined then they will not be in the query.
import rql, {Query} from "js-rql";

const filter: Query<any> = {
  $select: [],
  $ordering: [],
  name: '',
  age: null,
  $or: [{name: undefined}],
  type: 'pending',
};

rql(filter); //'type=pending'

Contribute

If you want to contribute to the javascript-rql development feel free to open issues or fork the github repository and submit your pull request.

License

The js-rql is licensed under the Apache License 2.0.