| 60 | } |
| 61 | |
| 62 | type hostScopedClient struct { |
| 63 | *api.Client |
| 64 | hostname string |
| 65 | } |
| 66 | |
| 67 | func (c *hostScopedClient) Query(queryName string, query interface{}, variables map[string]interface{}) error { |
| 68 | return c.Client.Query(c.hostname, queryName, query, variables) |
nothing calls this directly
no outgoing calls
no test coverage detected