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