"And"...?

Hi all!
Newb question here: how can one create an “and” query like ((A or B) and (C or D)) when Wix doesn’t seem to have an “AND” operator? Specific code example would be appreciated! (o:
thanks,
G

Hi,
As can be seen in the docs , the way to combine conditions is as follows:

wixData.query("myCollection") 
   .contains("description", "some words")
   .gt("age", 25)
   .ascending("last_name", "first_name")
   .limit(10) 
   .find() 
   .then((results) => {...})

Ah, so it defaults to “AND” unless you have a different operator… THANK YOU Ohad!!