Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@prisma-utils/nestjs-request-parser
Advanced tools
This package allows for automatically parsing query parameters and map them to a `prisma` compatible format to be automatically appended to `FindMany` calls.
This package allows for automatically parsing query parameters and map them to a prisma
compatible format to be automatically appended to FindMany
calls.
First, you need to add the decorator to a method in your controller.
@Controller()
export class UserController {
constructor(private readonly userService: UserService) {}
@Get()
getAll(@RequestParser() requestParams: ParsedQueryModel) {
console.log(requestParams);
return this.userService.getAll(requestParams);
}
}
Then call the route as follows:
example.com/api/users?sort=-id,name&limit=20&page=5
will return 20 entries from the 5th page (i.e., entry 81 - 100). Entries are ordered by id (descending) and name (ascending).
name | description | default |
---|---|---|
sort | order by attribute. Comma separated list of attributes. - in front of a attribute (i.e., -id ) means order by attribute descending . | id |
limit | limit the result to a specific number of entries. Provides the possibility to set a maximum value as well | 20 |
page | describe the page that should be retrieved (use in combination with limit ) | 1 |
{
"limitParamName": "limit",
"limitDefaultValue": 20,
"maxLimit": 100,
"pageParamName": "page",
"pageDefaultValue": 1,
"orderParamName": "sort",
"orderDefaultValue": "id"
}
This library was generated with Nx.
Run nx build request-parser
to build the library.
Run nx test request-parser
to execute the unit tests via Jest.
FAQs
This package allows for automatically parsing query parameters and map them to a `prisma` compatible format to be automatically appended to `FindMany` calls.
We found that @prisma-utils/nestjs-request-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.