SchemaConfiguration
SchemaConfiguration : object
Druxt Schema configuration object.
Kind: global typedef
Properties
| Name | Type | Description |
|---|---|---|
| bundle | string | The Drupal Entity bundle. |
| entityType | string | The Drupal Entity type. |
| filter | Array.<string> | Array of regex strings used to filter the generated schema files. |
| mode | string | The Drupal Display mode. |
| schemaType | 'view' | 'form' | The Schema type. |
Example
{
bundle: 'page',
entityType: 'node',
filters: [],
mode: 'default',
schemaType: 'view'
}