Key should return a cache key that uniquely identifies the query
()
| 52 | type Query interface { |
| 53 | // Key should return a cache key that uniquely identifies the query |
| 54 | Key() string |
| 55 | // Deps should return the resource names that the query targets. |
| 56 | // It's used to invalidate cached queries when the underlying data changes. |
| 57 | // If a dependency doesn't exist, it is ignored. (So if the underlying resource kind is unknown, it can return all possible dependency names.) |
no outgoing calls
no test coverage detected