I'm calling the firebase store via PHP, when I call:
$query = $collection
->where('c', '=', $vars['cid']);
or
$query = $collection
->where('t', '>', $params['lastSync']);
It works fine.. however when I combine it stops working:
$query = $collection
->where('c', '=', $vars['cid'])
->where('t', '>', $params['lastSync']);
How can I solve this?
Thank you so much! Maarten