Documentation ¶
Overview ¶
Package query is a library for mysql query, support for complex conditional paging queries. Deprecated: has been moved to package pkg/ggorm
Index ¶
Constants ¶
const ( // Eq equal Eq = "eq" // Neq not equal Neq = "neq" // Gt greater than Gt = "gt" // Gte greater than or equal Gte = "gte" // Lt less than Lt = "lt" // Lte less than or equal Lte = "lte" // Like fuzzy lookup Like = "like" // In include In = "in" // AND logic and AND string = "and" // OR logic or OR string = "or" )
Variables ¶
var ( // ErrNotFound record // Deprecated: moved to package pkg/gorm/query ErrorNotFound ErrNotFound = gorm.ErrRecordNotFound )
Functions ¶
func SetMaxSize ¶
func SetMaxSize(max int)
SetMaxSize change the default maximum number of pages per page Deprecated: moved to package pkg/gorm/query SetMaxSize
Types ¶
type Column ¶
type Column struct { Name string `json:"name" form:"name"` // column name Exp string `json:"exp" form:"exp"` // expressions, which default to = when the value is null, have =, !=, >, >=, <, <=, like, in Value interface{} `json:"value" form:"value"` // column value Logic string `json:"logic" form:"logic"` // logical type, defaults to and when the value is null, with &(and), ||(or) }
Column query info Deprecated: moved to package pkg/gorm/query Column
type Conditions ¶
type Conditions struct {
Columns []Column `json:"columns" form:"columns" binding:"min=1"` // columns info
}
Conditions query conditions
func (*Conditions) ConvertToGorm ¶
func (c *Conditions) ConvertToGorm() (string, []interface{}, error)
ConvertToGorm conversion to gorm-compliant parameters based on the Columns parameter ignore the logical type of the last column, whether it is a one-column or multi-column query Deprecated: will be moved to package pkg/gorm/query ConvertToGorm
type Page ¶
type Page struct {
// contains filtered or unexported fields
}
Page info Deprecated: moved to package pkg/gorm/query Page
func DefaultPage ¶
DefaultPage default page, number 20 per page, sorted by id backwards Deprecated: moved to package pkg/gorm/query DefaultPage
func NewPage ¶
NewPage custom page, starting from page 0. the parameter columnNames indicates a sort field, if empty means id descending, if there are multiple column names, separated by a comma, a '-' sign in front of each column name indicates descending order, otherwise ascending order. Deprecated: moved to package pkg/gorm/query NewPage
type Params ¶
type Params struct { Page int `json:"page" form:"page" binding:"gte=0"` Size int `json:"size" form:"size" binding:"gte=1"` Sort string `json:"sort,omitempty" form:"sort" binding:""` Columns []Column `json:"columns,omitempty" form:"columns"` // not required }
Params query parameters Deprecated: moved to package pkg/gorm/query Params
func (*Params) ConvertToGormConditions ¶
ConvertToGormConditions conversion to gorm-compliant parameters based on the Columns parameter ignore the logical type of the last column, whether it is a one-column or multi-column query Deprecated: will be moved to package pkg/gorm/query ConvertToGormConditions