This enables accessing the Extensions field, as defined in the response format: https://spec.graphql.org/October2021/#sec-Response-Format Extensions can be enabled using configuration option use_extensions. This will change the return parameters of the generated client functions. Making it a breaking change if enabled. Since extensions are untyped as defined in the spec, the Client will return an interface of type map[string]interface{}.
44 lines
933 B
Go
44 lines
933 B
Go
// Code generated by github.com/Khan/genqlient, DO NOT EDIT.
|
|
|
|
package test
|
|
|
|
import (
|
|
"github.com/Khan/genqlient/graphql"
|
|
)
|
|
|
|
// ListOfListsOfListsResponse is returned by ListOfListsOfLists on success.
|
|
type ListOfListsOfListsResponse struct {
|
|
ListOfListsOfLists [][][]string `json:"listOfListsOfLists"`
|
|
}
|
|
|
|
// GetListOfListsOfLists returns ListOfListsOfListsResponse.ListOfListsOfLists, and is useful for accessing the field via an interface.
|
|
func (v *ListOfListsOfListsResponse) GetListOfListsOfLists() [][][]string {
|
|
return v.ListOfListsOfLists
|
|
}
|
|
|
|
func ListOfListsOfLists(
|
|
client graphql.Client,
|
|
) (*ListOfListsOfListsResponse, error) {
|
|
req := &graphql.Request{
|
|
OpName: "ListOfListsOfLists",
|
|
Query: `
|
|
query ListOfListsOfLists {
|
|
listOfListsOfLists
|
|
}
|
|
`,
|
|
}
|
|
var err error
|
|
|
|
var data ListOfListsOfListsResponse
|
|
resp := &graphql.Response{Data: &data}
|
|
|
|
err = client.MakeRequest(
|
|
nil,
|
|
req,
|
|
resp,
|
|
)
|
|
|
|
return &data, err
|
|
}
|
|
|