Package Exports
- sequelize-smartapi
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sequelize-smartapi) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
getList 支持 in
for example:
http://localhost:3000/users?groupId=[1, 2, null]
this will change the query to:
select * from users where groupId in (1, 2) or groupId is null;