graphql
No long description provided.
Installation
dagger install github.com/shykes/dagger/modules/graphql@a5ea6e6a94d2afc84b695c6ca75fc8c6f3ae748f
Entrypoint
Return Type
Graphql
Example
dagger -m github.com/shykes/dagger/modules/graphql@a5ea6e6a94d2afc84b695c6ca75fc8c6f3ae748f call \
func (m *myModule) example() *Graphql {
return dag.
Graphql()
}
@function
def example() -> dag.Graphql:
return (
dag.graphql()
)
@func()
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
dagger -m github.com/shykes/dagger/modules/graphql@a5ea6e6a94d2afc84b695c6ca75fc8c6f3ae748f call \
from-json --spec file:path
func (m *myModule) example(spec *File) *GraphqlSchema {
return dag.
Graphql().
FromJson(spec)
}
@function
def example(spec: dagger.File) -> dag.GraphqlSchema:
return (
dag.graphql()
.from_json(spec)
)
@func()
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
dagger -m github.com/shykes/dagger/modules/graphql@a5ea6e6a94d2afc84b695c6ca75fc8c6f3ae748f call \
from-json --spec file:path \
file
func (m *myModule) example(spec *File) *File {
return dag.
Graphql().
FromJson(spec).
File()
}
@function
def example(spec: dagger.File) -> dagger.File:
return (
dag.graphql()
.from_json(spec)
.file()
)
@func()
example(spec: File): File {
return dag
.graphql()
.fromJson(spec)
.file()
}