sessions method

Future<List<SessionMixin>> sessions()

Returns all active Sessions of the authenticated MyUser.

Authentication

Mandatory.

Sorting

Returned Sessions are sorted primarily by their last activity DateTime, and secondary by their IDs (if the last activity DateTime is the same), in descending order.

Implementation

Future<List<SessionMixin>> sessions() async {
  Log.debug('sessions()', '$runtimeType');

  final QueryResult result = await client.query(
    QueryOptions(
      operationName: 'Sessions',
      document: SessionsQuery().document,
    ),
  );
  return Sessions$Query.fromJson(result.data!).sessions.list;
}