Boolean¶
-
class
aiosnow.fields.boolean.BooleanQueryable¶ -
is_falsy() → aiosnow.query.condition.Condition¶ Example: active.is_falsy()
All records in which the Active field is False, empty, or NULL.
-
is_true() → aiosnow.query.condition.Condition¶ Example: active.is_true()
All records in which the Active field is True.
-
-
class
aiosnow.fields.boolean.Boolean(*, truthy: Optional[Set[T]] = None, falsy: Optional[Set[T]] = None, **kwargs)¶