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

View File

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

View File

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