remove pointers for optionality -- shockingly easy
This commit is contained in:
+7
-7
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type InputObjectQueryResponse struct {
|
||||
User *InputObjectQueryUser `json:"user"`
|
||||
User InputObjectQueryUser `json:"user"`
|
||||
}
|
||||
|
||||
type InputObjectQueryUser struct {
|
||||
@@ -17,11 +17,11 @@ type InputObjectQueryUser struct {
|
||||
}
|
||||
|
||||
type UserQueryInput struct {
|
||||
Email *string `json:"email"`
|
||||
Name *string `json:"name"`
|
||||
Id *string `json:"id"`
|
||||
Role *UserQueryInputRole `json:"role"`
|
||||
Names []*string `json:"names"`
|
||||
Email string `json:"email"`
|
||||
Name string `json:"name"`
|
||||
Id string `json:"id"`
|
||||
Role UserQueryInputRole `json:"role"`
|
||||
Names []string `json:"names"`
|
||||
}
|
||||
|
||||
type UserQueryInputRole string
|
||||
@@ -31,7 +31,7 @@ const (
|
||||
UserQueryInputRoleTeacher UserQueryInputRole = "TEACHER"
|
||||
)
|
||||
|
||||
func InputObjectQuery(client *graphql.Client, query *UserQueryInput) (*InputObjectQueryResponse, error) {
|
||||
func InputObjectQuery(client *graphql.Client, query UserQueryInput) (*InputObjectQueryResponse, error) {
|
||||
variables := map[string]interface{}{
|
||||
"query": query,
|
||||
}
|
||||
|
||||
+2
-2
@@ -9,14 +9,14 @@ import (
|
||||
)
|
||||
|
||||
type ListInputQueryResponse struct {
|
||||
User *ListInputQueryUser `json:"user"`
|
||||
User ListInputQueryUser `json:"user"`
|
||||
}
|
||||
|
||||
type ListInputQueryUser struct {
|
||||
Id string `json:"id"`
|
||||
}
|
||||
|
||||
func ListInputQuery(client *graphql.Client, names []*string) (*ListInputQueryResponse, error) {
|
||||
func ListInputQuery(client *graphql.Client, names []string) (*ListInputQueryResponse, error) {
|
||||
variables := map[string]interface{}{
|
||||
"names": names,
|
||||
}
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type QueryWithAliasResponse struct {
|
||||
User *QueryWithAliasUser
|
||||
User QueryWithAliasUser
|
||||
}
|
||||
|
||||
type QueryWithAliasUser struct {
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type QueryWithDoubleAliasResponse struct {
|
||||
User *QueryWithDoubleAliasUser `json:"user"`
|
||||
User QueryWithDoubleAliasUser `json:"user"`
|
||||
}
|
||||
|
||||
type QueryWithDoubleAliasUser struct {
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type QueryWithEnumsResponse struct {
|
||||
User *QueryWithEnumsUser `json:"user"`
|
||||
User QueryWithEnumsUser `json:"user"`
|
||||
}
|
||||
|
||||
type QueryWithEnumsUser struct {
|
||||
|
||||
+5
-5
@@ -9,14 +9,14 @@ import (
|
||||
)
|
||||
|
||||
type QueryWithSlicesResponse struct {
|
||||
User *QueryWithSlicesUser `json:"user"`
|
||||
User QueryWithSlicesUser `json:"user"`
|
||||
}
|
||||
|
||||
type QueryWithSlicesUser struct {
|
||||
Emails []string `json:"emails"`
|
||||
EmailsOrNull []string `json:"emailsOrNull"`
|
||||
EmailsWithNulls []*string `json:"emailsWithNulls"`
|
||||
EmailsWithNullsOrNull []*string `json:"emailsWithNullsOrNull"`
|
||||
Emails []string `json:"emails"`
|
||||
EmailsOrNull []string `json:"emailsOrNull"`
|
||||
EmailsWithNulls []string `json:"emailsWithNulls"`
|
||||
EmailsWithNullsOrNull []string `json:"emailsWithNullsOrNull"`
|
||||
}
|
||||
|
||||
func QueryWithSlices(client *graphql.Client) (*QueryWithSlicesResponse, error) {
|
||||
|
||||
+3
-3
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type QueryWithStructsResponse struct {
|
||||
User *QueryWithStructsUser `json:"user"`
|
||||
User QueryWithStructsUser `json:"user"`
|
||||
}
|
||||
|
||||
type QueryWithStructsUser struct {
|
||||
@@ -17,8 +17,8 @@ type QueryWithStructsUser struct {
|
||||
}
|
||||
|
||||
type QueryWithStructsUserAuthMethodsAuthMethod struct {
|
||||
Provider *string `json:"provider"`
|
||||
Email *string `json:"email"`
|
||||
Provider string `json:"provider"`
|
||||
Email string `json:"email"`
|
||||
}
|
||||
|
||||
func QueryWithStructs(client *graphql.Client) (*QueryWithStructsResponse, error) {
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type SimpleInputQueryResponse struct {
|
||||
User *SimpleInputQueryUser `json:"user"`
|
||||
User SimpleInputQueryUser `json:"user"`
|
||||
}
|
||||
|
||||
type SimpleInputQueryUser struct {
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type SimpleQueryResponse struct {
|
||||
User *SimpleQueryUser `json:"user"`
|
||||
User SimpleQueryUser `json:"user"`
|
||||
}
|
||||
|
||||
type SimpleQueryUser struct {
|
||||
|
||||
+3
-3
@@ -9,12 +9,12 @@ import (
|
||||
)
|
||||
|
||||
type TypeNameQueryResponse struct {
|
||||
User *TypeNameQueryUser `json:"user"`
|
||||
User TypeNameQueryUser `json:"user"`
|
||||
}
|
||||
|
||||
type TypeNameQueryUser struct {
|
||||
Typename *string `json:"__typename"`
|
||||
Id string `json:"id"`
|
||||
Typename string `json:"__typename"`
|
||||
Id string `json:"id"`
|
||||
}
|
||||
|
||||
func TypeNameQuery(client *graphql.Client) (*TypeNameQueryResponse, error) {
|
||||
|
||||
+2
-2
@@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
type UnionNoFragmentsQueryRandomLeafArticle struct {
|
||||
Typename *string `json:"__typename"`
|
||||
Typename string `json:"__typename"`
|
||||
}
|
||||
|
||||
func (v UnionNoFragmentsQueryRandomLeafArticle) implementsGraphQLInterfaceUnionNoFragmentsQueryRandomLeafLeafContent() {
|
||||
@@ -20,7 +20,7 @@ type UnionNoFragmentsQueryRandomLeafLeafContent interface {
|
||||
}
|
||||
|
||||
type UnionNoFragmentsQueryRandomLeafVideo struct {
|
||||
Typename *string `json:"__typename"`
|
||||
Typename string `json:"__typename"`
|
||||
}
|
||||
|
||||
func (v UnionNoFragmentsQueryRandomLeafVideo) implementsGraphQLInterfaceUnionNoFragmentsQueryRandomLeafLeafContent() {
|
||||
|
||||
+2
-2
@@ -31,8 +31,8 @@ const (
|
||||
)
|
||||
|
||||
type UsesEnumTwiceQueryResponse struct {
|
||||
Me *UsesEnumTwiceQueryMeUser
|
||||
OtherUser *UsesEnumTwiceQueryOtherUser
|
||||
Me UsesEnumTwiceQueryMeUser
|
||||
OtherUser UsesEnumTwiceQueryOtherUser
|
||||
}
|
||||
|
||||
func UsesEnumTwiceQuery(client *graphql.Client) (*UsesEnumTwiceQueryResponse, error) {
|
||||
|
||||
Reference in New Issue
Block a user