matcha-keystone-utils
TypeScript icon, indicating that this package has built-in type declarations

4.3.2 • Public • Published

Keystone Utils

Relationship required

Relationship field validator, raising a validation error when relationship doesn't have at least one object. Like the isRequired: true on other fields.

Usage

  • Add validateInput: relationRequiredValidateInput in the hooks of the relationship field

Example

See testSchema/relationshipRequired/index.ts.

Cascade delete

On a 1-to-1 or 1-to-many relationship:

  • Delete children when parent is deleted
  • Do not delete children when they are removed from parent relation

Usage

  • Use beforeOperationDeleteOne({ ref: "<child ref>" }) for one-to-one relationships and beforeOperationDeleteMany({ ref: "<child ref>" }) for one-to-many relationships
  • The ref value must be the same as the ref config of the relationship field
  • Add it as a before operation hook to relationship fields you want to cascade delete

Example

See testSchema/cascadeDelete/oneToOne.ts and testSchema/cascadeDelete/oneToMany.ts.

History [Beta]

Usage

  • Add the History schema to your lists using getHistoryEntity()
  • Add the afterOperationSaveHistory hook to any object you want to historize

Example

See testSchema/historized

Readme

Keywords

Package Sidebar

Install

npm i matcha-keystone-utils

Weekly Downloads

18

Version

4.3.2

License

MIT

Unpacked Size

21.9 kB

Total Files

21

Last publish

Collaborators

  • diesirae