aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/shurcooL/githubv4/githubv4.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-24 19:22:32 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-24 19:22:32 +0200
commitc4a207622a894ba9839f1a3c47c9d78beff9b861 (patch)
tree009d80b363b5392e6eba4bec85b0ae74b3942995 /vendor/github.com/shurcooL/githubv4/githubv4.go
parentc86e7231b223d532e26ab5449715c65b6b4e3fde (diff)
downloadgit-bug-c4a207622a894ba9839f1a3c47c9d78beff9b861.tar.gz
github: query most of the data
Diffstat (limited to 'vendor/github.com/shurcooL/githubv4/githubv4.go')
-rw-r--r--vendor/github.com/shurcooL/githubv4/githubv4.go56
1 files changed, 56 insertions, 0 deletions
diff --git a/vendor/github.com/shurcooL/githubv4/githubv4.go b/vendor/github.com/shurcooL/githubv4/githubv4.go
new file mode 100644
index 00000000..3a544bf2
--- /dev/null
+++ b/vendor/github.com/shurcooL/githubv4/githubv4.go
@@ -0,0 +1,56 @@
+package githubv4
+
+import (
+ "context"
+ "net/http"
+
+ "github.com/shurcooL/graphql"
+)
+
+// Client is a GitHub GraphQL API v4 client.
+type Client struct {
+ client *graphql.Client
+}
+
+// NewClient creates a new GitHub GraphQL API v4 client with the provided http.Client.
+// If httpClient is nil, then http.DefaultClient is used.
+//
+// Note that GitHub GraphQL API v4 requires authentication, so
+// the provided http.Client is expected to take care of that.
+func NewClient(httpClient *http.Client) *Client {
+ return &Client{
+ client: graphql.NewClient("https://api.github.com/graphql", httpClient),
+ }
+}
+
+// NewEnterpriseClient creates a new GitHub GraphQL API v4 client for the GitHub Enterprise
+// instance with the specified GraphQL endpoint URL, using the provided http.Client.
+// If httpClient is nil, then http.DefaultClient is used.
+//
+// Note that GitHub GraphQL API v4 requires authentication, so
+// the provided http.Client is expected to take care of that.
+func NewEnterpriseClient(url string, httpClient *http.Client) *Client {
+ return &Client{
+ client: graphql.NewClient(url, httpClient),
+ }
+}
+
+// Query executes a single GraphQL query request,
+// with a query derived from q, populating the response into it.
+// q should be a pointer to struct that corresponds to the GitHub GraphQL schema.
+func (c *Client) Query(ctx context.Context, q interface{}, variables map[string]interface{}) error {
+ return c.client.Query(ctx, q, variables)
+}
+
+// Mutate executes a single GraphQL mutation request,
+// with a mutation derived from m, populating the response into it.
+// m should be a pointer to struct that corresponds to the GitHub GraphQL schema.
+// Provided input will be set as a variable named "input".
+func (c *Client) Mutate(ctx context.Context, m interface{}, input Input, variables map[string]interface{}) error {
+ if variables == nil {
+ variables = map[string]interface{}{"input": input}
+ } else {
+ variables["input"] = input
+ }
+ return c.client.Mutate(ctx, m, variables)
+}