Groups
Use groups to divide app modules into logical blocks and to change the order of modules in the GUI.
Default groups
When creating a new app, new modules are automatically added to the Other group. If you've never used this feature in your app before, all of your modules will be placed in this group.

Change the groups and order
By changing the Groups file, you can set up as many groups as you want and group the modules into logical blocks. Once you create a new group and put a single module there, the grouping will take effect and your app will no longer use the default grouping.

One module can belong to one or more groups, but it has to belong to at least one. You won't be allowed to save the group's configuration otherwise.
[
{
"label": "Notes",
"modules": [
"WatchNotes",
"listNotes",
"createANewNote",
"getANote",
"UpdateANote",
"deleteANote"
]
}
{
"label": "Tasks",
"modules": [
"watchTasks",
"listTasks",
"createTask",
"getTask",
"updateTask",
]
}
]
Last updated