Query represents the generic query interface. A query's sole purpose is to return the source of the query as a JSON-serializable object. Returning map[string]interface{} is the norm for queries.
| 8 | // is to return the source of the query as a JSON-serializable object. |
| 9 | // Returning map[string]interface{} is the norm for queries. |
| 10 | type Query interface { |
| 11 | // Source returns the JSON-serializable query request. |
| 12 | Source() (interface{}, error) |
| 13 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…