I'm accepting a GET query parameter which will be used as piece of a search string.
If I have this:
x = request.args['x']
MyTable.query.filter(MyTable.myCol.ilike(x)).one()
Am I vulnerable to a SQL injection attack?
EDIT - I am using Postgres and SQLAlchemy 1.0 I think.