attachments method

Future<GetAttachments$Query> attachments(
  1. ChatItemId id
)

Returns the Attachments of a ChatItem identified by the provided id.

The authenticated MyUser should be a member of the Chat the provided ChatItem belongs to, in order to view it.

Authentication

Mandatory.

Implementation

Future<GetAttachments$Query> attachments(ChatItemId id) async {
  Log.debug('attachments($id)', '$runtimeType');

  final variables = GetAttachmentsArguments(id: id);
  final QueryResult result = await client.query(
    QueryOptions(
      operationName: 'GetAttachments',
      document: GetAttachmentsQuery(variables: variables).document,
      variables: variables.toJson(),
    ),
  );
  return GetAttachments$Query.fromJson(result.data!);
}