Versions in this module Expand all Collapse all v0 v0.2.0 Dec 10, 2025 v0.1.0 Dec 10, 2025 Changes in this version + type Filter map[string][]string + func (f *Filter) AddWhere(sql string, args ...any) (string, []any) + type Limit struct + Limit int64 + Offset int64 + func (l *Limit) AddLimit(sql string) string + type OrderBy []OrderClause + func (o *OrderBy) AddOrderBy(sql string) string + type OrderByDirection = string + var OrderByAscending OrderByDirection = "ASC" + var OrderByDescending OrderByDirection = "DESC" + type OrderClause struct + Column string + Direction OrderByDirection + NullsLast *bool