refactor: migrate completely to urql

This commit is contained in:
Andrew Bastin
2022-02-02 00:33:34 +05:30
parent eae94e3dbf
commit 2df1c1c6ed
26 changed files with 748 additions and 1677 deletions

View File

@@ -0,0 +1,3 @@
query ExportAsJSON($teamID: ID!) {
exportCollectionsToJSON(teamID: $teamID)
}

View File

@@ -0,0 +1,7 @@
query GetMyTeams {
myTeams {
id
name
myRole
}
}

View File

@@ -0,0 +1,8 @@
query GetUserInfo {
me {
uid
displayName
email
photoURL
}
}