Skip to content

Version 2.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 29 May 18:42
· 29 commits to main since this release

Added groupBy parameter to collection options

(optional) array of fields to group the exported data into multiple files, eg. ['collection'] (per collection)

This is useful when you have a large amount of data in a collection (such as directus_permissions) and want to split it up into multiple files.

{
  directus_permissions: {
    watch: ['permissions'],
    groupBy: ['collection', 'role'],
    …
  },
}

Full Changelog: v2.0.0...v2.1.0