graphql
No long description provided.
Installation
dagger install github.com/shykes/dagger/modules/graphql@781e14612dfc4b1c2e6c0838325b3a1dbcd78df3
Entrypoint
Return Type
Graphql
Example
func (m *myModule) example() *Graphql {
return dag.
Graphql()
}
Types
Graphql 🔗
An instance of the GraphQL module
fromJson() 🔗
Load a GraphQL schema from a JSON spec
Return Type
Schema !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
spec | File ! | - | No description provided |
Example
func (m *myModule) example(spec *File) *GraphqlSchema {
return dag.
Graphql().
FromJson(spec)
}
Schema 🔗
A GraphQL schema
file() 🔗
The schema encoded to a .graphql file
Return Type
File !
Example
func (m *myModule) example(spec *File) *File {
return dag.
Graphql().
FromJson(spec).
File()
}