Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { Client *http.Client BaseURL string HTTPRequestOptions []HTTPRequestOption }
Client is the http client wrapper
func NewClient ¶
func NewClient(client *http.Client, baseURL string, options ...HTTPRequestOption) *Client
NewClient creates a new http client wrapper
func (*Client) Post ¶
func (c *Client) Post(ctx context.Context, operationName, query string, respData interface{}, vars map[string]interface{}, httpRequestOptions ...HTTPRequestOption) error
Post sends a http POST request to the graphql endpoint with the given query then unpacks the response into the given object.
type ErrorResponse ¶
type ErrorResponse struct { // populated when http status code is not OK NetworkError *HTTPError `json:"networkErrors"` // populated when http status code is OK but the server returned at least one graphql error GqlErrors *gqlerror.List `json:"graphqlErrors"` }
ErrorResponse represent an handled error
func (*ErrorResponse) Error ¶
func (er *ErrorResponse) Error() string
func (*ErrorResponse) HasErrors ¶
func (er *ErrorResponse) HasErrors() bool
HasErrors returns true when at least one error is declared
type GqlErrorList ¶
GqlErrorList is the struct of a standard graphql error response
func (*GqlErrorList) Error ¶
func (e *GqlErrorList) Error() string
type HTTPRequestOption ¶
HTTPRequestOption represents the options applicable to the http client
Click to show internal directories.
Click to hide internal directories.