AbsintheGenerator.Schema (absinthe_generator v0.1.2) View Source
We can utilize this module to generate resolver files which are then used in the mutations/queries/subscriptions
Definitions
:app_name
(String.t/0
) - Required. Application name you're generating the code under:moduledoc
(String.t/0
) - Moduledoc message can be injected into the resulting output code:queries
(list ofString.t/0
) - List of query namespaces The default value is[]
.:mutations
(list ofString.t/0
) - List of mutation namespaces The default value is[]
.:subscriptions
(list ofString.t/0
) - List of subscription namespaces The default value is[]
.:types
(list ofString.t/0
) - List of types The default value is[]
.:data_sources
(list ofkeyword/0
) - List of %AbsintheGenerator.Schema.DataSource
{} The default value is[]
.:pre_middleware
(list ofkeyword/0
) - List of %AbsintheGenerator.Schema.Middleware
{} The default value is[]
.:post_middleware
(list ofkeyword/0
) - List of %AbsintheGenerator.Schema.Middleware
{} The default value is[]
.