Skip to main content

GradeFilterOperation

contains(target: Grade): GradeFilterOperation

Check if a value is contains the target.


eq(target: Grade): GradeFilterOperation

Check if a value is equal to the target.


gt(target: Grade): GradeFilterOperation

Check if a value is greater than the target.


gte(target: Grade): GradeFilterOperation

Check if a value is greater than or equal to the target.


in(target: Grade[]): GradeFilterOperation

Check if a value is one of the ones in the target array.


lt(target: Grade): GradeFilterOperation

Check if a value is less than the target.


lte(target: Grade): GradeFilterOperation

Check if a value is less than or equal to the target.


not_contains(target: Grade): GradeFilterOperation

Check if a value is does not contain the target.


not_eq(target: Grade): GradeFilterOperation

Check if a value is not equal to the target.


not_in(target: Grade[]): GradeFilterOperation

Check if a value is none of the ones in the target array.