Query Functions for Site-O-Mat
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
HerrHase ae603c64b0
change naming
1 year ago
src adding 1 year ago
test adding 1 year ago
.gitignore init 1 year ago
LICENSE adding 1 year ago
README.md change naming 1 year ago
index.js adding 1 year ago
package-lock.json adding 1 year ago
package.json change naming 1 year ago

README.md

Site-O-Mat Query

Installation

Setup this registry in your project .npmrc file:

@site-o-mat:registry=https://gitea.node001.net/api/packages/site-o-mat/npm/

Install with npm or yarn

npm i --save-dev @site-o-mat/query
yarn add --dev @site-o-mat/query

Filter

Basic Usage:

import { Filter } from '@site-o-mat/query'

const filter = new Filter(options)
const isValid = filter.validate(result)

Options:

Name Type Description
_eq {Mixed} is equal
_neq {Mixed} is not equal
_in {Mixed} in array
_lt {Mixed} is lesser than
_lte {Mixed} is lesser or equal than
_gt {Mixed} is greater than
_gte {Mixed} is greater or equal than
_null {Boolean} is null
_nnull {Boolean} is not null

Reduce

Skip or Limit Elements from a an Array.

Basic Usage:

import { reduce } from '@site-o-mat/query'
results = reduce({
	limit: 5
}, results)

Options:

Name Type Description
limit {Number} limit elements
offset {Number} skip elements

OrderBy

Order elements in Array by name of property, default is 'asc', a '-' of the name is 'desc'.

Basic Usage:

import { orderBy } from '@site-o-mat/query'
results = orderBy([
	-published_at
], results)