Order specifies how the records should be ordered.
(o ...storagepolicy.OrderOption)
| 62 | |
| 63 | // Order specifies how the records should be ordered. |
| 64 | func (spq *StoragePolicyQuery) Order(o ...storagepolicy.OrderOption) *StoragePolicyQuery { |
| 65 | spq.order = append(spq.order, o...) |
| 66 | return spq |
| 67 | } |
| 68 | |
| 69 | // QueryGroups chains the current query on the "groups" edge. |
| 70 | func (spq *StoragePolicyQuery) QueryGroups() *GroupQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected