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