Is it possible to use .eq() twice?

I want to filter my query first based on email, that works. But then I want to filter that again with another filter.
I thought this would work, but it doesn’t

wixData.query("MembersOrders")
.eq("eMail", userEmail) .eq("status", currentStatus) .find() .then( (results) => { ...

Does anyone maybe has a solution or alternative? It would be highly appreciated!
Thanks in advance!