🚀 Attribute features
Attribute features are SDK composers, not Express middleware; attributesService mounts all five with the datastore and authentication context described in the index.
Inventory
| Feature | Composed schema(s) | Composed route(s) | Purpose |
|---|---|---|---|
createAttributeFeature | createAttributesSchema | createAttributeRoute | Create a group. |
getAttributeFeature | getAttributeSchema | getAttributeRoute | Read one group. |
findAttributesFeature | findAttributesSchema | findAttributesRoute | List groups. |
updateAttributeFeature | updateAttributesSchema | updateAttributeRoute | Rename a group. |
deleteAttributeFeature | deleteAttributeSchema | deleteAttributeRoute | Delete a group. |
Details
Each feature is mounted by attributesService. The source definitions below show the exact schema-to-route composition.
createAttributeFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by attributesService or a compatible custom service context.View complete source
getAttributeFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by attributesService or a compatible custom service context.View complete source
findAttributesFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by attributesService or a compatible custom service context.View complete source
updateAttributeFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by attributesService or a compatible custom service context.View complete source
deleteAttributeFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by attributesService or a compatible custom service context.View complete source