npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

nestjs-dynamic-filter

v1.0.10

Published

A flexible filtering system for NestJS applications with MongoDB and PostgreSQL support

Readme

nestjs-dynamic-filter

A flexible filtering system for NestJS applications. This package provides an easy way to implement complex filtering in your NestJS applications with MongoDB and PostgreSQL support.

Installation

npm install nestjs-dynamic-filter

Features

  • Easy-to-use decorators for defining filterable fields
  • Support for multiple filter operations (exact, contains, greater than, less than, etc.)
  • Automatic Swagger documentation
  • Built-in pagination support
  • MongoDB/Mongoose integration
  • PostgreSQL/TypeORM integration
  • Type-safe filtering
  • Database-agnostic query building

Quick Start

  1. Import the NestjsDynamicFilterModule in your app.module.ts:

For MongoDB:

import { NestjsDynamicFilterModule } from 'nestjs-dynamic-filter';

@Module({
  imports: [
    NestjsDynamicFilterModule.forRoot({
      databaseType: 'mongodb', // Optional, defaults to 'mongodb'
    }),
    // ... other imports
  ],
})
export class AppModule {}

For PostgreSQL:

import { NestjsDynamicFilterModule } from 'nestjs-dynamic-filter';

@Module({
  imports: [
    NestjsDynamicFilterModule.forRoot({
      databaseType: 'postgres',
    }),
    // ... other imports
  ],
})
export class AppModule {}
  1. Define your filter DTO:
import { FilterableField, FilterOperationType } from 'nestjs-dynamic-filter';
import { PaginationQueryDto } from 'nestjs-dynamic-filter';

export enum UserStatus {
  ACTIVE = 'ACTIVE',
  INACTIVE = 'INACTIVE'
}

export class UserFilterDto extends PaginationQueryDto {
  @FilterableField()
  name?: string;

  @FilterableField({
    operations: [FilterOperationType.EXACT],
    enum: UserStatus
  })
  status?: UserStatus;

  @FilterableField({
    operations: [FilterOperationType.GTE, FilterOperationType.LTE]
  })
  age?: number;
}
  1. Use in your controller:

For MongoDB:

import { FilterBuilderService } from 'nestjs-dynamic-filter';
import { InjectModel } from '@nestjs/mongoose';
import { Model } from 'mongoose';

@Controller('users')
export class UserController {
  constructor(
    private readonly filterBuilder: FilterBuilderService,
    @InjectModel('User') private readonly userModel: Model<User>,
  ) {}

  @Get()
  async findAll(@Query() query: UserFilterDto) {
    const filter = this.filterBuilder.buildQuery(query);
    return this.userModel.find(filter).exec();
  }
}

For PostgreSQL:

import { FilterBuilderService } from 'nestjs-dynamic-filter';
import { InjectRepository } from '@nestjs/typeorm';
import { Repository } from 'typeorm';

@Controller('users')
export class UserController {
  constructor(
    private readonly filterBuilder: FilterBuilderService,
    @InjectRepository(User) private readonly userRepository: Repository<User>,
  ) {}

  @Get()
  async findAll(@Query() query: UserFilterDto) {
    const where = this.filterBuilder.buildQuery(query);
    return this.userRepository.find({ where });
  }
}

Filter Operations

  • exact: Exact match
  • icontains: Case-insensitive contains
  • in: Value in array
  • gte: Greater than or equal
  • lte: Less than or equal

Query Parameters

For a field named age, you can use:

  • age__exact=25
  • age__gte=18
  • age__lte=65

For text fields:

  • name__icontains=john

Advanced Usage

Getting Available Filters

For MongoDB:

import { FilterService } from 'nestjs-dynamic-filter';
import { InjectModel } from '@nestjs/mongoose';
import { Model } from 'mongoose';

@Controller('users')
export class UserController {
  constructor(
    private readonly filterService: FilterService,
    @InjectModel('User') private readonly userModel: Model<User>,
  ) {}

  @Get('@filters')
  async getFilters() {
    return this.filterService.getFilters(UserFilterDto, this.userModel);
  }
}

For PostgreSQL:

import { FilterService } from 'nestjs-dynamic-filter';
import { InjectRepository } from '@nestjs/typeorm';
import { Repository } from 'typeorm';

@Controller('users')
export class UserController {
  constructor(
    private readonly filterService: FilterService,
    @InjectRepository(User) private readonly userRepository: Repository<User>,
  ) {}

  @Get('@filters')
  async getFilters() {
    return this.filterService.getFilters(UserFilterDto, this.userRepository);
  }
}

Custom Filter Operations

@FilterableField({
  operations: [
    FilterOperationType.EXACT,
    FilterOperationType.ICONTAINS,
    FilterOperationType.IN
  ]
})
field?: string;

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT