favoriteChatContacts method
- int? first,
- FavoriteChatContactsCursor? after,
- int? last,
- FavoriteChatContactsCursor? before,
Returns favorited ChatContacts of the authenticated MyUser ordered by the custom order of MyUser's favorites list (using ChatContact.favoritePosition field).
Use favoriteChatContact to update the position of a ChatContact in MyUser's favorites list.
Authentication
Mandatory.
Sorting
Returned ChatContacts are sorted in the order specified by the authenticated MyUser in favoriteChatContact descending (starting from the highest ChatContactFavoritePosition and finishing at the lowest).
Pagination
It's allowed to specify both first
and last
counts at the same time,
provided that after
and before
cursors are equal. In such case the
returned page will include the ChatContact pointed by the cursor and the
requested count of ChatContacts preceding and following it.
If it's desired to receive the ChatContact, pointed by the cursor,
without querying in both directions, one can specify first
or last
count
as 0.
Implementation
Future<FavoriteContacts$Query$FavoriteChatContacts> favoriteChatContacts({
int? first,
FavoriteChatContactsCursor? after,
int? last,
FavoriteChatContactsCursor? before,
}) async {
throw UnimplementedError();
// final variables = FavoriteContactsArguments(
// first: first,
// last: last,
// before: before,
// after: after,
// );
// final QueryResult result = await client.query(
// QueryOptions(
// operationName: 'FavoriteContacts',
// document: FavoriteContactsQuery(variables: variables).document,
// variables: variables.toJson(),
// ),
// );
// return FavoriteContacts$Query.fromJson(result.data!).favoriteChatContacts;
}