Skip to content

Commit

Permalink
chore: fix README.md formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
reeceyang authored Jul 5, 2024
1 parent b4cd384 commit b1e7a54
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A [Feathers](https://feathersjs.com) database adapter for [Sequelize](http://seq
- [API](#api)
- [`service(options)`](#serviceoptions)
- [params.sequelize](#paramssequelize)
- [operators](#operators)
- [operators](#operatormap)
- [Caveats](#caveats)
- [Sequelize `raw` queries](#sequelize-raw-queries)
- [Working with MSSQL](#working-with-mssql)
Expand Down Expand Up @@ -118,9 +118,6 @@ Beware that when setting a [top-level `where` property](https://sequelize.org/ma

This library offers some additional functionality when using `sequelize.returning` in services that support `multi`. The `multi` option allows you to create, patch, and remove multiple records at once. When using `sequelize.returning` with `multi`, the `sequelize.returning` is used to indicate if the method should return any results. This is helpful when updating large numbers of records and you do not need the API (or events) to be bogged down with results.

```js


### operatorMap

Sequelize deprecated string based operators a while ago for security reasons. Starting at version 4.0.0 `feathers-sequelize` converts queries securely, so you can still use string based operators listed below. If you want to support additional Sequelize operators, the `operatorMap` service option can contain a mapping from query parameter name to Sequelize operator. By default supported are:
Expand Down

0 comments on commit b1e7a54

Please sign in to comment.