GraphQL is a query language for your API that was developed by Facebook. It provides an alternative to REST APIs, and allows the client to request specific data from the server rather than getting a fixed set of data with each request.
One key difference between GraphQL and REST APIs is that in a GraphQL API, the client can specify exactly which fields it wants to retrieve in the query, rather than getting a fixed set of data with each endpoint. This allows the client to request only the data it needs, rather than getting more data than it needs and filtering it on the client side.
packagemainimport("bytes""context""fmt""io/ioutil""net/http""github.com/shurcooL/githubv4")funcmain(){src:=oauth2.StaticTokenSource(&oauth2.Token{AccessToken:"<YOUR_ACCESS_TOKEN>"},)httpClient:=oauth2.NewClient(context.Background(),src)client:=githubv4.NewClient(httpClient)// Define the GraphQL query
varquerystruct{Repositorystruct{Namegithubv4.StringDescriptiongithubv4.String}`graphql:"repository(owner: $owner, name: $name)"`}variables:=map[string]interface{}{"owner":githubv4.String("<OWNER>"),"name":githubv4.String("<REPO_NAME>"),}// Execute the query
err:=client.Query(context.Background(),&query,variables)iferr!=nil{fmt.Println(err)return}// Print the results
fmt.Println(query.Repository.Name)fmt.Println(query.Repository.Description)}
In this example, the Repository field in the query specifies the data that the client wants to retrieve, and the owner and name variables are used to specify the repository that the client wants to query. The client.Query function is used to execute the query and retrieve the data from the server.