updateResource method

Future<ResourceUpdated> updateResource(
  1. String type,
  2. String id, {
  3. Map<String, Object?> attributes = const {},
  4. Map<String, Identifier> one = const {},
  5. Map<String, Iterable<Identifier>> many = const {},
  6. Map<String, Object?> meta = const {},
  7. Map<String, Object?> documentMeta = const {},
  8. Map<String, String> headers = const {},
  9. Iterable<String> include = const [],
})

Implementation

Future<ResourceUpdated> updateResource(
  String type,
  String id, {
  Map<String, Object?> attributes = const {},
  Map<String, Identifier> one = const {},
  Map<String, Iterable<Identifier>> many = const {},
  Map<String, Object?> meta = const {},
  Map<String, Object?> documentMeta = const {},
  Map<String, String> headers = const {},
  Iterable<String> include = const [],
}) async {
  final response = await send(
      baseUri.resource(type, id),
      Request.patch(OutboundDataDocument.resource(Resource(type, id)
        ..attributes.addAll(attributes)
        ..relationships.addAll({
          ...one.map((key, value) => MapEntry(key, ToOne(value))),
          ...many.map((key, value) => MapEntry(key, ToMany(value))),
        })
        ..meta.addAll(meta))
        ..meta.addAll(documentMeta))
        ..headers.addAll(headers)
        ..include(include));
  return ResourceUpdated(response.http, response.document);
}