Configure Advanced Rules
On this page
Overview
You can manually configure all aspects of a collection's rules by editing the underlying configuration document directly through the App Services UI. Advanced Mode refers to editing rules in this manner.
When To Use Advanced Mode
The default or "Basic Mode" rules editor in the App Services UI covers the majority of use cases for collection rules. However, there are times when you need more fine-grained control than the UI interface provides. Consider using Advanced Mode if you need to do the following:
Configure a role that can only insert documents.
Define field-level read or write permissions for a field in an embedded document.
Determine field-level write permissions dynamically using a rule expression.
Warning
Once you convert a collection's rules to Advanced Mode, you may not be able to switch back to editing that collection's rules through the Basic Mode interface.
Procedure
Convert to Advanced Mode
Click the </> symbol by VIEW in the top left corner of the collection rules interface to enter Advanced View. The UI will switch an editor that shows a preview of the underlying Advanced Mode rule configuration document. Click Convert to Advanced Mode. Type "convert" and then click Confirm to confirm your action.
Define the Collection Rules
Once you have converted the collection to Advanced Mode you can edit the underlying configuration document. Collection rule configuration documents have the following form:
{ "roles": [ <Role Configuration>, ... ], "filters": [ <Filter Configuration>, ... ], "schema": { "properties": { "<Field Name>": <Schema Document>, ... } } }
Field | Description |
---|---|
roles | An array of Role configuration documents that each define a single role's Apply When condition and associated CRUD permissions. ImportantApp Services evaluates roles for each query in the order that they're defined. Ensure that each role configuration document's array index matches its desired position in the evaluation order. |
filters | An array of Filter configuration documents that each define a filter on the collection. |
schema | A schema that configures the shape and contents of all documents in the collection. NoteThe root of all collection schemas must be an object
schema document. You can embed other
schema types inside the For an example of how to define relationships in advanced mode, see: Configure Relationships. |