Versions in this module Expand all Collapse all v0 v0.18.0 Jul 16, 2023 Changes in this version + var AllEnumWithDescription = []EnumWithDescription + var AllMissingEnum = []MissingEnum + type A interface + GetA func() string + IsA func() + type ArrayOfA interface + GetTrickyField func() []A + GetTrickyFieldPointer func() []A + IsArrayOfA func() + type B interface + GetB func() int + IsB func() + type C interface + GetA func() string + GetC func() bool + IsA func() + IsC func() + type CDImplemented struct + A string + B int + C bool + D *string + func (CDImplemented) IsA() + func (CDImplemented) IsB() + func (CDImplemented) IsC() + func (CDImplemented) IsD() + func (this CDImplemented) GetA() string + func (this CDImplemented) GetB() int + func (this CDImplemented) GetC() bool + func (this CDImplemented) GetD() *string + type CyclicalA struct + FieldFour string + FieldOne *CyclicalB + FieldThree *CyclicalB + FieldTwo *CyclicalB + type CyclicalB struct + FieldFive string + FieldFour *CyclicalA + FieldOne *CyclicalA + FieldThree *CyclicalA + FieldTwo *CyclicalA + type D interface + GetA func() string + GetB func() int + GetD func() *string + IsA func() + IsB func() + IsD func() + type EnumWithDescription string + const EnumWithDescriptionCat + const EnumWithDescriptionDog + func (e *EnumWithDescription) UnmarshalGQL(v interface{}) error + func (e EnumWithDescription) IsValid() bool + func (e EnumWithDescription) MarshalGQL(w io.Writer) + func (e EnumWithDescription) String() string + type ExistingEnum string + type ExistingInput struct + Enum ExistingEnum + Int ExistingInterface + Name string + type ExistingInterface interface + IsExistingInterface func() + type ExistingModel struct + Enum ExistingEnum + Int ExistingInterface + Name string + type ExistingType struct + Enum *ExistingEnum + Existing *MissingTypeNullable + Int ExistingInterface + Name *string + type ExistingUnion interface + IsExistingUnion func() + type ExtraFieldsTest struct + FieldInt int64 + FieldIntSlice []int64 + FieldInternalType extrafields.Type + FieldStringPtr *string + SchemaField string + type FieldMutationHook struct + Enum *ExistingEnum + Name *string + NoVal *string + Repeated *string + type FooBarer interface + GetName func() string + IsFooBarer func() + type FooBarr struct + Name string + func (FooBarr) IsFooBarer() + func (this FooBarr) GetName() string + type ImplArrayOfA struct + TrickyField []*CDImplemented + TrickyFieldPointer []*CDImplemented + func (ImplArrayOfA) IsArrayOfA() + func (this ImplArrayOfA) GetTrickyField() []A + func (this ImplArrayOfA) GetTrickyFieldPointer() []A + type InterfaceWithDescription interface + GetName func() *string + IsInterfaceWithDescription func() + type MissingEnum string + const MissingEnumGoodbye + const MissingEnumHello + func (e *MissingEnum) UnmarshalGQL(v interface{}) error + func (e MissingEnum) IsValid() bool + func (e MissingEnum) MarshalGQL(w io.Writer) + func (e MissingEnum) String() string + type MissingInput struct + Enum *MissingEnum + Name *string + NonNullString string + NullEnum graphql.Omittable[*MissingEnum] + NullObject graphql.Omittable[*ExistingInput] + NullString graphql.Omittable[*string] + type MissingInterface interface + GetName func() *string + IsMissingInterface func() + type MissingTypeNotNull struct + Enum MissingEnum + Existing *ExistingType + Int MissingInterface + Missing2 *MissingTypeNullable + Name string + func (MissingTypeNotNull) IsExistingInterface() + func (MissingTypeNotNull) IsExistingUnion() + func (MissingTypeNotNull) IsMissingInterface() + func (MissingTypeNotNull) IsMissingUnion() + func (this MissingTypeNotNull) GetName() *string + type MissingTypeNullable struct + Enum *MissingEnum + Existing *ExistingType + Int MissingInterface + Missing2 *MissingTypeNotNull + Name *string + func (MissingTypeNullable) IsExistingInterface() + func (MissingTypeNullable) IsExistingUnion() + func (MissingTypeNullable) IsMissingInterface() + func (MissingTypeNullable) IsMissingUnion() + func (this MissingTypeNullable) GetName() *string + type MissingUnion interface + IsMissingUnion func() + type NotCyclicalA struct + FieldOne string + FieldTwo int + type NotCyclicalB struct + FieldOne string + FieldTwo *NotCyclicalA + type OmitEmptyJSONTagTest struct + Value *string + ValueNonNil string + type Recursive struct + FieldFour string + FieldOne *Recursive + FieldThree *Recursive + FieldTwo *Recursive + type RenameFieldTest struct + GOODnaME string + OtherField string + type TypeWithDescription struct + Name *string + func (TypeWithDescription) IsUnionWithDescription() + type UnionWithDescription interface + IsUnionWithDescription func() + type X interface + GetId func() string + IsX func() + type Xer struct + Id string + Name string + func (Xer) IsX() + func (this Xer) GetId() string