Re: [sqlalchemy] Not able to filter json column filter in flask-sqlalchemy

2017-12-06 Thread Mike Bayer
On Wed, Dec 6, 2017 at 7:42 AM, wrote: > Hi, > > I am using flask-sqlalchemy in my project, but I am not able to understand > how to query(filter_by) on a json column > > test_example: > > #I am using Postgresql backend > app = Flask(__name__) >

[sqlalchemy] Not able to filter json column filter in flask-sqlalchemy

2017-12-06 Thread shrey . chauhan
Hi, I am using flask-sqlalchemy in my project, but I am not able to understand how to query(filter_by) on a json column test_example: #I am using Postgresql backend app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://postgres:postgres@localhost:5432/test_db' db =