Helper to create JSON path query condition Evaluates JSON path and returns result (PostgreSQL @@ operator)
// Query JSON pathUser.findAll({ where: jsonPathQuery('data', '$.key') })// SQL: WHERE data @@ '$.key' Copy
// Query JSON pathUser.findAll({ where: jsonPathQuery('data', '$.key') })// SQL: WHERE data @@ '$.key'
Helper to create JSON path query condition Evaluates JSON path and returns result (PostgreSQL @@ operator)