best-teacher-64851
08/24/2023, 12:06 AMconst recommendations = await Recommendation_Table.findRecords({
selectorName: 'all'}
);
and then filtering to the records I actually want using statements like this:
let recFiltered = recommendation.filter(record => record.condition.includes(condition));
I couldn't figure out why certain conditions were giving me the default until I walked it back and saw recommendations
only ever has 20 records - this has me at a total dead-end, any help is appreciated!acceptable-kangaroo-64719
08/24/2023, 10:32 AMwitty-football-93730
08/24/2023, 1:56 PMThatTable.findRecords({selectorName: 'all', limit: 1000})
witty-football-93730
08/24/2023, 1:57 PMhttps://cdn.discordapp.com/attachments/1144060182150787162/1144269227797262427/Screenshot_2023-08-24_at_9.56.55_AM.png▾
best-teacher-64851
08/24/2023, 5:06 PM