-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
39 lines (34 loc) · 1.07 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package ssql
type ConditionPair struct {
Field string
Value interface{}
Op string
}
type SQLQueryOptions struct {
Table string
Tag string // Override client tag config explicitly per query.
MainSortField string
MainSortDirection string
Fields map[string]bool // omit to query all fields.
WithTotalCount bool
Params *Params
Conditions []*ConditionPair
}
type Params struct {
OffsetParams *OffsetParams
SortParams []*SortParams
CursorParams *CursorParams
}
// FieldValuePairs describes a piece of data that is stored in a database table column.
type FieldValuePairs struct {
Fields []string
Values []interface{}
}
// Used for in response for Find method, returning pagination info for both offset and cursor pagination.
type PageInfo struct {
HasPreviousPage *bool `json:"hasPreviousPage,omitempty"`
HasNextPage *bool `json:"hasNextPage,omitempty"`
StartCursor *string `json:"startCursor,omitempty"`
EndCursor *string `json:"endCursor,omitempty"`
TotalCount *int `json:"-"`
}