(operationName string, query interface{}, variables map[string]interface{})
| 104 | } |
| 105 | |
| 106 | func (c *Client) Query(operationName string, query interface{}, variables map[string]interface{}) error { |
| 107 | err := c.apiClient.Query(operationName, query, variables) |
| 108 | return handleError(err) |
| 109 | } |
| 110 | |
| 111 | // PageInfo is a PageInfo GraphQL object https://docs.github.com/en/graphql/reference/objects#pageinfo. |
| 112 | type PageInfo struct { |
nothing calls this directly
no test coverage detected