This section describes the DDL commands pertaining to extensions.
Enable a particular extension for the current schema.
CREATE EXTENSION ExtensionName ";"
There’s a corresponding SDL declaration for enabling an extension, which is the recommended way of doing this.
Enable GraphQL extension for the current schema:
CREATE EXTENSION graphql;
Enable EdgeQL over HTTP extension for the current database:
CREATE EXTENSION edgeql_http;
Disable an extension.
DROP EXTENSION ExtensionName ";"
Disable GraphQL extension for the current schema:
DROP EXTENSION graphql;
Disable EdgeQL over HTTP extension for the current database:
DROP EXTENSION edgeql_http;