I have a simple grid view data like that:
and I want to filter my data by company’s uniqueness and get an array which includes list of companies by unique like e'Google', 'Facebook', 'Apple']
read Formula Field Reference but couldn’t find. I can fetch entire data and make filtering on client side but instead of getting entire data, I want to pull only array of companies. By code below so far. Thank you
const RES = await db('users').select({
view: 'Grid view',
filterByFormula: 'some filter should be happen at there',
}).all()
console.log(RES) // should return u'Google', 'Facebook', 'Apple']