Absinthe.Plug.DocumentProvider.Default (absinthe_plug v1.5.8) View Source

This is the default document provider, implementing the Absinthe.Plug.DocumentProvider behaviour.

This document provider will handle any document that's provided:

  • As the body of an HTTP POST with content-type application/graphql
  • As the parsed "query" parameter in an HTTP POST of content-type application/json
  • As the "query" parameter in an HTTP GET query string

(Note that the parsing itself happens in Absinthe.Plug.Parser / Absinthe.Plug; this document provider just knows how to work with the value.)

Configuring

By default, this is the only document provider configured by Absinthe.Plug.init/1.

Using the :document_providers option, however, you can:

  • Add additional document providers to expand the ways that documents can be loaded. See, for example, Absinthe.Plug.DocumentProvider.Compiled.
  • Remove this document provider from the configuration to disallow ad hoc queries.

See the documentation on Absinthe.Plug.init/1 for more details on the :document_providers option.