View Source mix absinthe.schema.sdl (absinthe v1.7.1)
Generate a schema.graphql
file.
usage
Usage
mix absinthe.schema.sdl [OPTIONS] [FILENAME]
options
Options
--schema
- The name of theAbsinthe.Schema
module defining the schema to be generated. Default: As configured for:absinthe
:schema
examples
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 the MySchema
schema
mix absinthe.schema.sdl --schema MySchema /path/to/schema.graphql