Versions in this module Expand all Collapse all v0 v0.17.54 Jan 20, 2024 v0.17.53 Jan 20, 2024 v0.17.52 Jan 20, 2024 v0.17.51 Jan 20, 2024 v0.17.47 Jan 20, 2024 v0.17.46 Jan 20, 2024 v0.17.45 Jan 20, 2024 Changes in this version + var AllEnumWithDescription = []EnumWithDescription + var AllMissingEnum = []MissingEnum + type A interface + IsA func() + type ArrayOfA interface + IsArrayOfA func() + type B interface + IsB func() + type C interface + 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() + 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 + 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 + SchemaField string + type FieldMutationHook struct + Enum *ExistingEnum + Name *string + NoVal *string + Repeated *string + type FooBarer interface + IsFooBarer func() + type FooBarr struct + Name string + func (FooBarr) IsFooBarer() + type ImplArrayOfA struct + TrickyField []*CDImplemented + TrickyFieldPointer []*CDImplemented + func (ImplArrayOfA) IsArrayOfA() + type InterfaceWithDescription interface + 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 + 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() + 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() + type MissingUnion interface + IsMissingUnion func() + type Mutation struct + type NotCyclicalA struct + FieldOne string + FieldTwo int + type NotCyclicalB struct + FieldOne string + FieldTwo NotCyclicalA + type OmitEmptyJSONTagTest struct + Value *string + ValueNonNil string + type Query struct + type Recursive struct + FieldFour string + FieldOne *Recursive + FieldThree *Recursive + FieldTwo *Recursive + type RenameFieldTest struct + BadName string + OtherField string + type Subscription struct + type TypeWithDescription struct + Name *string + func (TypeWithDescription) IsUnionWithDescription() + type UnionWithDescription interface + IsUnionWithDescription func() + type X interface + IsX func() + type Xer struct + Id string + Name string + func (Xer) IsX()