IsNull returns the `IS NULL` predicate.
(col string)
| 1036 | |
| 1037 | // IsNull returns the `IS NULL` predicate. |
| 1038 | func IsNull(col string) *Predicate { |
| 1039 | return P().IsNull(col) |
| 1040 | } |
| 1041 | |
| 1042 | // IsNull appends the `IS NULL` predicate. |
| 1043 | func (p *Predicate) IsNull(col string) *Predicate { |
searching dependent graphs…