Definition
/**
* Create a JSONB all keys exist condition (?&).
*
* Example: json_exists_all(col('metadata'), raw_expr("array['category', 'name']"))
* Produces: metadata ?& array['category', 'name']
*/
json_exists_all(Expression $expr, Expression $keys) : OperatorCondition