# README
GraphQL
The preconfigured graphql.Schema
provides root objects for Query
, Mutation
and Subscription
.
app := fx.New(
env.Module,
logrus.Module,
graphql.Module,
fx.Invoke(func(schema *graphql.Schema) {
// use schema here
}),
)
app.Run()
# Variables
No description provided by the author