Compare commits

..

2 Commits

Author SHA1 Message Date
b21a425065 Generate gql changes
All checks were successful
Tests / Tests (pull_request) Successful in 9s
2024-10-24 13:48:50 -06:00
b736a95124 Fix cache merge
Some checks failed
Tests / Tests (pull_request) Failing after 11s
2024-10-24 21:29:00 +02:00
2 changed files with 3 additions and 0 deletions

View File

@@ -3147,6 +3147,7 @@ export type GetUsernamesAndFollowingQuery = {
__typename?: "UsernamesAndFollowingResponse";
followers: Array<number>;
following: Array<number>;
usernames: Array<string>;
};
};
@@ -5138,6 +5139,7 @@ export const GetUsernamesAndFollowingDocument = gql`
) {
followers
following
usernames
}
}
`;

View File

@@ -71,6 +71,7 @@ query getUsernamesAndFollowing(
) {
followers
following
usernames
}
}