Files
directus/docs/reference/system/extensions.md
Ben Haynes 1b87e4555f Docs structure (#9071)
* WIP

* updates

* docs updates

* structure

* big structure update

* docs module icon change

* in-app docs nav

* more content and structure changes

* Remove redundant

* Fix docs build in app

Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
2021-10-25 21:19:23 -04:00

935 B

pageClass
pageClass
page-reference

Extensions

The extensions endpoints are used by the Admin App to retrieve what extensions to install. Learn more about Extensions.

toc


List Extensions

List the available extensions in the project. The types of extensions that you can list are interfaces, displays, layouts, modules.

Query Parameters

This endpoint doesn't currently support any query parameters.

Returns

An array of interface extension keys.

REST API

GET /extensions/:type
Example
GET /extensions/interfaces

GraphQL

POST /graphql/system
type Query {
	extensions: extensions
}
Example
query {
	extensions {
		interfaces
	}
}