jaqt

0.7.1 • Public • Published

jaqt: javascript queries and transformations

jaqt (pronounced 'jacket') is a query engine for arrays and objects, inspired by graphql and sql. e.g:

from(dataset).where({name: 'John'}).select({lastName:_})

Table of Contents

  1. Background
  2. Quickstart
  3. Usage
  4. Reference
  5. Contributions
  6. License

Background

There are many libraries that add a kind of query language to javascript arrays. GraphQL is one of those. But all the libraries I have found add a custom query language. Either by adding specific functions that mimic SQL, or by explicitly defining a query language like GraphQL. In all cases this means that you give up the power of javascript itself and must switch to a different, less capable language.

So this library is explicitly not a query language itself, but it uses some javascript trickery to add some syntactic sugar to the native Array.map and Array.filter functions so that you can get most of the ease of use of something like GraphQL, while staying squarely in javascript country.

There are no speed improvements or indexes over normal Array.filter and Array.map.

Usage

The examples below all use the data below:

let data = JSON.parse(`[
	{
		name: "John",
		lastName: "Doe",
		friends: [
			"Jane"
		]
	},
	{
		name: "Jane",
		lastName: "Doe",
		friends: [
			"John"
		]
	}
]`)

And this is how you can use this library:

import {from, _} from 'jaqt'

from(data)
.where({
	friends: {
		name: 'John'
	}
})
.select({
	name: o => o.name+' '+o.lastName
})

Contributions

Contributions are welcome. Please fork the github repository and make your changes there, then open a pull request. If you find any bugs or other issues, please use the github repository Issues. Check if your issue has already been posted before you add a new issue.

The github repository is at https://github.com/muze-nl/array-where-select

License

This software is licensed under MIT open source license. See the License file.

Package Sidebar

Install

npm i jaqt

Weekly Downloads

8

Version

0.7.1

License

MIT

Unpacked Size

22.5 kB

Total Files

4

Last publish

Collaborators

  • poef