Easily restify odin databases
- Node.js
8.12or higher is required. - foxify
0.10.20or higher is required. - @foxify/odin
0.8.0or higher is required.
npm i -s foxify-restify-odinconst Foxify = require('foxify');
const restify = require('foxify-restify-odin');
const User = require('./models/User');
let app = new Foxify();
app.get('/users', restify(User), async (req, res) => {
res.json({
users: await req.fro.query.get(),
total_users: await req.fro.counter.count(),
});
});
app.start();type Operator = "lt" | "lte" | "eq" | "ne" | "gte" | "gt" |
"exists" | "in" | "nin" | "bet" | "nbe" | "like" | "nlike";
interface FilterObject {
field: string;
operator: Operator;
value: string | number | boolean | any[] | object | Date;
}
interface Filter {
and?: Array<FilterObject | Filter>;
or?: Array<FilterObject | Filter>;
has?: string | { relation: string, filter: Filter | FilterObject };
}
interface Query {
filter?: Filter | FilterObject;
include?: string[];
sort?: string[];
skip?: number;
limit?: number;
}
interface RouteOptions {
pre?: Foxify.Handler | Foxify.Handler[];
post?: Foxify.Handler | Foxify.Handler[];
}
interface RoutesOptions {
index: RouteOptions & { lean?: boolean; } | false;
count: RouteOptions | false;
store: RouteOptions | false;
show: RouteOptions | false;
update: RouteOptions | false;
delete: RouteOptions | false;
}
interface Options {
name: string;
prefix: string;
qs: QSParseOptions;
defaults: Query;
pre: Foxify.Handler | Foxify.Handler[];
routes: Partial<RoutesOptions>;
}
restify(model: typeof Odin, options: Partial<restify.Options> = {}): Router;This module's middleware parses url query string and executes a query on the given model accordingly and passes the query to you (since you might need to do some modifications on the query, too)
It also passes a counter which is exactly like query but without applying skip, limit, sort just because you might want to send a total count in your response as well
Lastly it passes the a decoded key in req.fro which is the parsed query string that is used in the middleware
Stringify all query params using qs default options
All the possible query modifiers are explained as a single modification but they all can be used together
/users?sort%5B0%5D=age
qs.stringify({
filter: {
field: "username",
operator: "eq",
value: "ardalanamini",
}
})qs.stringify({
filter: {
or: [
{
field: "username",
operator: "eq",
value: "ardalanamini",
},
{
and: [
{
field: "age",
operator: "gte",
value: 18,
},
{
field: "email",
operator: "exists",
value: true,
},
],
},
],
},
})filter can be a single filter object or and/or of Array<filter object>
possible operators:
lt | lte | eq | ne | gte | gt | exists | in | nin | bet | nbe | like | nlike
qs.stringify({
include: [
"relation1",
"relation2.subRelation1.subRelation2",
]
})qs.stringify({
sort: [
"field1", // same as "+field1"
"-field2",
"+field3",
]
})qs.stringify({
skip: 100,
})qs.stringify({
limit: 10,
})We use SemVer for versioning. For the versions available, see the tags on this repository.
- Ardalan Amini - Owner/Developer - @ardalanamini
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details
If my work helps you, please consider

