scim-query-filter-parser
TypeScript icon, indicating that this package has built-in type declarations

2.0.4 • Public • Published

Build Status

tl;dr

import { compileFilter, compileSorter } from "scim-query-filter-parser";
 
const results = [{ userName: "somebody123" }, { userName: "somebody456" }]
  .filter(compileFilter('userName eq "somebody123"'))
  .sort(compileSorter("userName"));

Description

This implements a parser and compiler for the filtering and sorting features defined in System for Cross-Domain Identity Management (SCIM) Protocol 2.0. It was originally built for use by AuthX;

Methods & Properties

compileFilter(input: string): (data: any) => boolean

Compile a SCIM filter expression into a function.

compileSorter(input: string): (a: any, b: any) => -1 | 0 | 1

Compile a SCIM sort expression into a function.

Package Sidebar

Install

npm i scim-query-filter-parser

Weekly Downloads

11,973

Version

2.0.4

License

MIT

Unpacked Size

188 kB

Total Files

99

Last publish

Collaborators

  • mike-marcacci