Documentation
¶
Index ¶
- type Config
- type Enum
- type EnumValue
- type Enums
- type ImplementedBy
- type InputObject
- type InputObjectField
- type InputObjects
- type Interface
- type InterfaceField
- type InterfaceFieldArg
- type Interfaces
- type Mutation
- type MutationField
- type MutationFieldArg
- type MutationFieldReturn
- type Object
- type ObjectField
- type ObjectFieldArg
- type ObjectImplements
- type Objects
- type Query
- type QueryField
- type QueryFieldArg
- type QueryFieldReturn
- type README
- type READMEItem
- type Scalar
- type Scalars
- type Union
- type UnionPossibleType
- type Unions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
BaseDir string
}
func (*Config) MakeLinkFromType ¶
func (m *Config) MakeLinkFromType(typ *introspection.Type) (string, error)
type ImplementedBy ¶
type InputObject ¶
type InputObject struct {
Name string
Description string
InputFields []*InputObjectField
}
type InputObjectField ¶
type InputObjects ¶
type InputObjects struct {
InputObjects []*InputObject
}
type Interface ¶
type Interface struct {
Name string
Description string
Implemented []*ImplementedBy
Fields []*InterfaceField
}
type InterfaceField ¶
type InterfaceField struct {
Name string
Type string
TypeLink string
Description string
Args []*InterfaceFieldArg
}
type InterfaceFieldArg ¶
type Interfaces ¶
type Interfaces struct {
Interfaces []*Interface
}
type Mutation ¶
type Mutation struct {
Description string
Fields []*MutationField
}
type MutationField ¶
type MutationField struct {
Name string
Description string
Args []*MutationFieldArg
Returns []*MutationFieldReturn
}
type MutationFieldArg ¶
type MutationFieldReturn ¶
type Object ¶
type Object struct {
Name string
Description string
Implements []*ObjectImplements
Fields []*ObjectField
}
type ObjectField ¶
type ObjectField struct {
Name string
Type string
TypeLink string
Description string
Args []*ObjectFieldArg
}
type ObjectFieldArg ¶
type ObjectImplements ¶
type Query ¶
type Query struct {
Description string
Fields []*QueryField
}
type QueryField ¶
type QueryField struct {
Name string
Description string
Args []*QueryFieldArg
Return *QueryFieldReturn
}
type QueryFieldArg ¶
type QueryFieldReturn ¶
type README ¶ added in v0.0.3
type README struct {
Items []*READMEItem
}
type READMEItem ¶ added in v0.0.3
type Union ¶
type Union struct {
Name string
Description string
PossibleTypes []*UnionPossibleType
}
type UnionPossibleType ¶
Click to show internal directories.
Click to hide internal directories.