Order specifies how the records should be ordered.
(o ...node.OrderOption)
| 56 | |
| 57 | // Order specifies how the records should be ordered. |
| 58 | func (nq *NodeQuery) Order(o ...node.OrderOption) *NodeQuery { |
| 59 | nq.order = append(nq.order, o...) |
| 60 | return nq |
| 61 | } |
| 62 | |
| 63 | // QueryStoragePolicy chains the current query on the "storage_policy" edge. |
| 64 | func (nq *NodeQuery) QueryStoragePolicy() *StoragePolicyQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected