gitextract_grojiw9z/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── node.js.yml │ └── publish.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .oxfmtrc.json ├── LICENSE ├── README.md ├── fixtures/ │ ├── db.json │ └── db.json5 ├── package.json ├── public/ │ └── test.html ├── schema.json ├── src/ │ ├── adapters/ │ │ ├── normalized-adapter.test.ts │ │ ├── normalized-adapter.ts │ │ └── observer.ts │ ├── app.test.ts │ ├── app.ts │ ├── bin.ts │ ├── matches-where.test.ts │ ├── matches-where.ts │ ├── paginate.test.ts │ ├── paginate.ts │ ├── parse-where.test.ts │ ├── parse-where.ts │ ├── random-id.ts │ ├── service.test.ts │ ├── service.ts │ └── where-operators.ts ├── tsconfig.json └── views/ └── index.html