`Code generated by` disclaimer should be at the top of the file, as it is demonstrated in [this article](https://go.dev/blog/generate) on The Go Blog. The current placing breaks integration with some code formatters and linters which do no skip files generated by `genqlient`.
39 lines
854 B
Go
39 lines
854 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) {
|
|
var err error
|
|
|
|
var retval ListOfListsOfListsResponse
|
|
err = client.MakeRequest(
|
|
nil,
|
|
"ListOfListsOfLists",
|
|
`
|
|
query ListOfListsOfLists {
|
|
listOfListsOfLists
|
|
}
|
|
`,
|
|
&retval,
|
|
nil,
|
|
)
|
|
return &retval, err
|
|
}
|
|
|