Hi all,
This code works for me to pull all the items with order=random, in PHP:
$banner_ads_random = cockpit('collections')->find('banner_ads',[
'filter' => [
'order' => 'random',
'publish' => true
]
]);
but how would I get all the records with order <> random?