Skip to main content

isNull

isNull(column: string)

import { OP, Param } from 'cl-orm';

/**
* { condition: '`preferences` IS NULL', params: [] }
*/
OP.isNull('preferences');

/**
* { condition: '`updatedAt` IS NULL', params: [] }
*/
OP.isNull('updatedAt');