(queryName string, query interface{}, variables map[string]interface{})
| 75 | type graphqlClient interface { |
| 76 | Query(queryName string, query interface{}, variables map[string]interface{}) error |
| 77 | Mutate(queryName string, query interface{}, variables map[string]interface{}) error |
| 78 | } |
| 79 | |
| 80 | type Client struct { |
no outgoing calls
no test coverage detected