then( spreadArgs( function( $args ) { return array_merge( $args, [ 'cache_domain' => microtime(), // Prevent caching of the query self::KEY_SKIP_FILTERS => true, ] ); } ) ); } /** * @param array $args * * @return bool */ public static function shouldSkip( $args ) { return (bool) Relation::propEq( self::KEY_SKIP_FILTERS, true, (array) $args ); } }