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" + } + ] + } +]