Compare commits

...

5 Commits

Author SHA1 Message Date
170ff70b7a Merge pull request 'Add required types to followers in feed operation' (#177) from loewy/add-required-types-to-feed-operation into master
Reviewed-on: #177
2025-04-09 12:48:35 -06:00
8df09b8c93 run just gql
All checks were successful
Tests / Tests (pull_request) Successful in 15s
2025-04-09 11:47:16 -07:00
644ea66e98 add required types to followers in feed operation
Some checks failed
Tests / Tests (pull_request) Failing after 17s
2025-04-09 11:43:27 -07:00
0a5097c5c0 Merge pull request 'Add followers to feed operation for reactions' (#176) from loewy/add-followers-in-reactions into master
Reviewed-on: #176
2025-04-08 18:21:33 -06:00
f4445f7ecb add followers to feed operation for reactions
All checks were successful
Tests / Tests (pull_request) Successful in 10s
2025-04-08 16:48:12 -07:00
2 changed files with 28 additions and 0 deletions

View File

@ -3219,6 +3219,12 @@ export type GetFeedQuery = {
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null; profileImageUri?: string | null;
followers?: Array<{
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
}; };
}>; }>;
}>; }>;
@ -3283,6 +3289,12 @@ export type VideoCardFieldsFragment = {
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null; profileImageUri?: string | null;
followers?: Array<{
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
}; };
}>; }>;
}; };
@ -3356,6 +3368,12 @@ export type GetVideoFeedQuery = {
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null; profileImageUri?: string | null;
followers?: Array<{
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
}; };
}>; }>;
}>; }>;
@ -5055,6 +5073,11 @@ export const VideoCardFieldsFragmentDoc = gql`
id id
username username
profileImageUri profileImageUri
followers {
id
username
profileImageUri
}
} }
reaction reaction
} }

View File

@ -64,6 +64,11 @@ fragment VideoCardFields on VideoGQL {
id id
username username
profileImageUri profileImageUri
followers {
id
username
profileImageUri
}
} }
reaction reaction
} }