I would like to filter the records based on the field ‘email’. i know i have to place the filter command . Any help is appreciated;
"axios.get(
“https://api.airtable.com/v0/"+app_id+"/test?view=Grid%20view”,
{
headers: { Authorization: "Bearer "+app_key } ,
}
).then(function(response){
self.items = response.data.records
}).catch(function(error){
console.log(error)
})
}
}"