0.1.1 • Published 5 years ago

feathers-query-stringify v0.1.1

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

feathers-query-stringify

This simple code snippet converts feathersJS query objects into an url query string that you can use to build your REST API calls.

It can handle nestes Objects as well as Arrays.

Example

import stringify from "feathers-query-stringify";

const query = {
  $limit: 10,
  $sort: {
    createdAt: -1
  }
}

const output = stringify(query);

// => "$limit=10&$sort[createdAt]=-1"