Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Query ¶
type Query struct {
Kind base.Kind `json:"kind,omitempty"`
Context *QueryContext `json:"context,omitempty"`
Fetch QueryFetch `json:"fetch,omitempty"`
Spec *Spec `json:"spec,omitempty"`
}
type QueryContext ¶
type QueryFetch ¶
type QueryFetch string
const ( QueryFetchLinks QueryFetch = "links" QueryFetchItems QueryFetch = "items" )
type QueryResult ¶
type QueryResultKind ¶
type QueryResultKind string
const (
QueryResultKindQueryresult QueryResultKind = "queryresult"
)
type SpecSort ¶ added in v1.0.0
type SpecSort struct {
By string `json:"by"`
Order SpecSortOrder `json:"order,omitempty"`
}
type SpecSortOrder ¶ added in v1.0.0
type SpecSortOrder string
const ( SpecSortOrderAsc SpecSortOrder = "asc" SpecSortOrderDesc SpecSortOrder = "desc" )
Click to show internal directories.
Click to hide internal directories.