code:
const query = `SELECT DISTINCT :attribute FROM "users"`
sequelize.query(query { replacements: { attribute: attributes[0] } });
result (generated by sequelize):
SELECT DISTINCT 'locale' FROM "users"
how can i pass attribute to the query without single quotes or with double quotes ?