mix absinthe.federation.schema.sdl (absinthe_federation v0.1.1) View Source
Generate a schema.graphql
file.
Usage
mix absinthe.schema.sdl [OPTIONS] [FILENAME]
Options
--schema
- The name of theAbsinthe.Schema
module defining the schema to be generated. Default: As configured for:absinthe
:schema
Examples
Write to default path./schema.graphql
using the:schema
configured for the:absinthe
application: mix absinthe.schema.sdl Write to path/path/to/schema.graphql
using theMySchema
schema mix absinthe.schema.sdl --schema MySchema /path/to/schema.graphql