mrevutskyi / flask-restless-ng

A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models.
https://flask-restless-ng.readthedocs.io
Other
64 stars 11 forks source link

feat: added @> and <@ PostgreSQL operators #46

Closed ajite closed 4 months ago

ajite commented 4 months ago

I also added tests and documentation.

You can now search in PostgreSQL array type field:

[{'name': 'tags', 'op': '@>', 'val': ['bug']}]

This will search for all rows where the tags field contains the value 'bug'.