NOT filter in php

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?

Ok so I got the answer:

$banner_ads_random = cockpit('collections')->find('banner_ads',[
  'filter' => [
    'order' => [
      '$ne' => 'random'
    ],
    'publish' => true
    ]
]);