mirror of
https://github.com/directus/directus.git
synced 2026-01-22 21:58:04 -05:00
* first half of broken links fixed * next chunk of broken links resolved * next chunk of urls * last chunk of links * one more * filter rules * homepage links * removed localhost * filter rules for query * updated links * relationships link * changed links from references to glossary
951 B
951 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.
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
}
}