feat: Initial user switching mutations

This commit is contained in:
2025-09-15 12:34:59 -04:00
parent c53fb152d4
commit 98876f23b8
8 changed files with 277 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
mutation userSwitchTo($userId: ID!) {
userSwitchTo(input: { userId: $userId }) {
authToken
refreshToken
user {
id
databaseId
username
email
firstName
lastName
avatar {
url
}
}
}
}