RemoteDataModel
The simplest way to define a data model is by defining it locally. However, this isn't always desirable - sometimes, you want the admin view to be auto-generated, and you don't really care that much about how it looks / what it contains, at least initially. If so, remote data models may be a good option.
Remote data models allow a server to do two things:
Define a list of data models "definitions" that should be auto generated, including fields and field types
Define a channel for CRUDL actions to occur that "just works" for all dynamically generated models, and doesn't require a developer to implement these actions manually for each model.
However, because there is now server code in the picture, you'll also need the ability to modify your server and it will need to use one of the supported stacks (see here).
If you only want part of the above, consider reading about [mixing remote and local data models](./Mixing Remote and Local.md)!
Wrapper Component
Last updated