Master Data Manager
The data
directory can be used to queue insert
, update
, and delete
operations over the project's business-objects
definitions
Lists --> data/insert/Lists.json
data/insert/Lists.json
[
{
"id": 1,
"list": "Test List"
},
{
"id": 2,
"list": "Another List"
}
]
Tasks -->data/insert/Lists.json
data/insert/Lists.json
[
{
"id": 1,
"list_id": 1,
"task": "Task 1",
"complete": false
},
{
"id": 2,
"list_id": 1,
"task": "Task 2",
"complete": true
}
]
Updated 8 months ago
What’s Next