diff --git a/src/index.tsx b/src/index.tsx index 8cf3691..42f9132 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -392,6 +392,7 @@ export type UploadStreamMetadataInput = { export type UserGql = { __typename?: "UserGQL"; createdAt?: Maybe; + elapsedTime: Scalars["Float"]["output"]; firebaseUid: Scalars["String"]["output"]; id: Scalars["Int"]["output"]; profileImageUri?: Maybe; @@ -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 } } `; diff --git a/src/operations/user.gql b/src/operations/user.gql index 8703384..de1d3b4 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -27,5 +27,6 @@ query getLoggedInUser { profileImageUri createdAt updatedAt + elapsedTime } } diff --git a/src/schema.gql b/src/schema.gql index 4cfcc1e..fe953d8 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -127,6 +127,7 @@ type UserGQL { profileImageUri: String createdAt: DateTime updatedAt: DateTime + elapsedTime: Float! } """