Skip to content

Instantly share code, notes, and snippets.

@stalniy
Created October 16, 2020 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stalniy/79b41be946eb3a9bf5448704ef8dbe84 to your computer and use it in GitHub Desktop.
Save stalniy/79b41be946eb3a9bf5448704ef8dbe84 to your computer and use it in GitHub Desktop.
MongoDB Query parser
import { MongoQueryParser, $eq } from '@ucast/mongo';
const parser = new MongoQueryParser({ $eq });
const ast = parser.parse({
authorId: 1
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment