deepSave method

  1. @override
Future<Map?> deepSave(
  1. covariant Map map
)
override

The "Deep Save" functionality is a single API request that can create or update a complete "object tree" in the database using a single transaction. The object tree starts with the root object and includes other child objects, their corresponding children and so on.

Implementation

@override
Future<Map?> deepSave(covariant Map map) async =>
    await Invoker.put('/data/$tableName/deep-save', map);