Definition
/**
* Create a JSONB any key exists condition (?|).
*
* Example: json_exists_any(col('metadata'), raw_expr("array['category', 'name']"))
* Produces: metadata ?| array['category', 'name']
*/
json_exists_any(Expression $expr, Expression $keys) : OperatorCondition