Hi,
Can anyone confirm me that it is possible to do multiple PartialMatch in a single request (i'm using SS 3.1.2)?
ie :
$request = mydatabase::get()->filter(array(
'type:PartialMatch' => "one",
'type:PartialMatch' => "two"));
For me only the last PartialMatch, so"two", is filtered. The first one is omited.
My goal is to filter the data which contain both"one" and "two".
Thanks