Helper to create startsWith condition Creates a LIKE 'value%' pattern
// Find users whose name starts with 'John'User.findAll({ where: startsWith('name', 'John') })// SQL: WHERE name LIKE 'John%' Copy
// Find users whose name starts with 'John'User.findAll({ where: startsWith('name', 'John') })// SQL: WHERE name LIKE 'John%'
Helper to create startsWith condition Creates a LIKE 'value%' pattern