Helper for passing an array as a single bound parameter (e.g. for PostgreSQL's = ANY(?)).
Unlike bare arrays interpolated in the sql template (which expand to (?, ?, ?) for IN clauses),
this binds the entire array as one parameter, letting knex handle the array encoding.
Helper for passing an array as a single bound parameter (e.g. for PostgreSQL's = ANY(?)). Unlike bare arrays interpolated in the sql template (which expand to (?, ?, ?) for IN clauses), this binds the entire array as one parameter, letting knex handle the array encoding.