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