From 9c0cb4c69269669e0345d93df5d60ace2f709646 Mon Sep 17 00:00:00 2001 From: HeetShah Date: Sun, 19 Nov 2023 21:49:57 -0700 Subject: [PATCH] adds users.json file --- .gitignore | 1 - .../typescript/graphql/sampleData/users.json | 24 +++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 backend/typescript/graphql/sampleData/users.json diff --git a/.gitignore b/.gitignore index 56e1dce..fab8049 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,3 @@ backend/typescript/serviceAccount.json package-lock.json .gitignore package.json -backend/typescript/graphql/sampleData/users.json diff --git a/backend/typescript/graphql/sampleData/users.json b/backend/typescript/graphql/sampleData/users.json new file mode 100644 index 0000000..86672be --- /dev/null +++ b/backend/typescript/graphql/sampleData/users.json @@ -0,0 +1,24 @@ +[ + { + "uid": "12345", + "email": "test@uwblueprint.org", + "emailVerified": true, + "displayName": "First and last", + "photoURL": "some link", + "disabled": false, + "metadata": { + "lastSignInTime": "last sign in time", + "creationTime": "creation time" + }, + "tokensValidAfterTime": "tokens valid after time", + "providerData": [ + { + "uid": "12345", + "displayName": "First and last", + "email": "test@uwblueprint.org", + "photoURL": "some link", + "providerId": "google.com" + } + ] + } +]