Extensions​

This section describes the SDL commands pertaining to extensions.

Syntax​

Declare that the current schema enables a particular extension.

  1. using extensions ExtensionName ";"

Description​

Extension declaration must be outside any module block since extensions affect the entire database and not a specific module.

Examples​

Enable GraphQL extension for the current schema:

  1. using extension graphql;

Enable EdgeQL over HTTP extension for the current database:

  1. using extension edgeql_http;