Compare commits

...

4 Commits

Author SHA1 Message Date
059e2149a0 Remove field for now
All checks were successful
Tests / Tests (pull_request) Successful in 15s
2024-10-25 01:00:06 -06:00
194d7c66a0 Merge pull request 'Add subfields to usernames and following' (#89) from kat/usernames-following-response into master
Reviewed-on: #89
2024-10-24 23:50:28 -06:00
3adc301935 Add subfields to usernames and following
All checks were successful
Tests / Tests (pull_request) Successful in 15s
2024-10-24 23:49:47 -06:00
9232c673e8 Merge pull request 'Return usernamesAndIds' (#88) from kat/update-usernames-and-following into master
Reviewed-on: #88
2024-10-24 23:46:27 -06:00
2 changed files with 0 additions and 3 deletions

View File

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

View File

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