Add elapsedTime to getUser gql operation

This commit is contained in:
Ivan Malison 2024-03-26 16:50:57 -06:00
parent 773a2eaed0
commit 679150326f
3 changed files with 5 additions and 0 deletions

View File

@ -392,6 +392,7 @@ export type UploadStreamMetadataInput = {
export type UserGql = { export type UserGql = {
__typename?: "UserGQL"; __typename?: "UserGQL";
createdAt?: Maybe<Scalars["DateTime"]["output"]>; createdAt?: Maybe<Scalars["DateTime"]["output"]>;
elapsedTime: Scalars["Float"]["output"];
firebaseUid: Scalars["String"]["output"]; firebaseUid: Scalars["String"]["output"];
id: Scalars["Int"]["output"]; id: Scalars["Int"]["output"];
profileImageUri?: Maybe<Scalars["String"]["output"]>; profileImageUri?: Maybe<Scalars["String"]["output"]>;
@ -651,6 +652,7 @@ export type GetLoggedInUserQuery = {
profileImageUri?: string | null; profileImageUri?: string | null;
createdAt?: any | null; createdAt?: any | null;
updatedAt?: any | null; updatedAt?: any | null;
elapsedTime: number;
} | null; } | null;
}; };
@ -1337,6 +1339,7 @@ export const GetLoggedInUserDocument = gql`
profileImageUri profileImageUri
createdAt createdAt
updatedAt updatedAt
elapsedTime
} }
} }
`; `;

View File

@ -27,5 +27,6 @@ query getLoggedInUser {
profileImageUri profileImageUri
createdAt createdAt
updatedAt updatedAt
elapsedTime
} }
} }

View File

@ -127,6 +127,7 @@ type UserGQL {
profileImageUri: String profileImageUri: String
createdAt: DateTime createdAt: DateTime
updatedAt: DateTime updatedAt: DateTime
elapsedTime: Float!
} }
""" """