Hi, I want to do a filter by multiple fields, something like that:
firestoreConnect(({ location }) => [
{
collection: 'students',
where: ['age', '>=', 12],
where: ['name', '==', 'Gabe'],
},
];
firestoreConnect(({ location }) => [
{
collection: 'students',
where: [
['age', '>=', 12],
['name', '==', 'Gabe'],
],
},
];
Most helpful comment