Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MappedRecords ¶
type MappedRecords struct {
Records json.RawMessage `json:"records"`
}
type QueryCondition ¶
type QueryExpression ¶
type QueryExpression struct {
Conditions []QueryCondition
}
type TableDeleteResponse ¶
type TableDeleteResponse struct {
Deleted uint64 `json:"deleted"`
}
type TableInsert ¶
type TableInsert struct {
Records json.RawMessage `json:"records"`
}
type TableInsertResponse ¶
type TableInsertResponse struct {
Inserted uint64 `json:"inserted"`
}
type TableQuery ¶
type TableQuery struct {
Query QueryExpression `json:"query"`
}
type TableSchema ¶
type TableSchema struct {
Schema *storage.TableSchemaStructure `json:"schema"`
}
type TableUpdate ¶
type TableUpdate struct { Query QueryExpression `json:"query"` ColumnNames []string `json:"column_names"` ColumnValues []any `json:"column_values"` }
type TableUpdateResponse ¶
type TableUpdateResponse struct {
Updated uint64 `json:"updated"`
}
Click to show internal directories.
Click to hide internal directories.