Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrInvalidFilterValue = errors.New("invalid filter value")
Functions ¶
This section is empty.
Types ¶
type WherableBuilder ¶
type WherableBuilder interface { GreaterEqualThan(field string, value interface{}) string GreaterThan(field string, value interface{}) string LessEqualThan(field string, value interface{}) string LessThan(field string, value interface{}) string NotEqual(field string, value interface{}) string Equal(field string, value interface{}) string In(field string, value ...interface{}) string Or(orExpr ...string) string And(andExpr ...string) string }
Click to show internal directories.
Click to hide internal directories.