Files
cultureat-bak/wp-content/themes/ccat/app/graphql/switchTo.gql
Pascal Martineau 1cea2fe9f8
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m0s
refactor: Use AuthUser fragment for login / swithcTo
2025-09-18 12:47:13 -04:00

9 lines
146 B
GraphQL

mutation switchTo($userId: ID!) {
switchTo(input: { userId: $userId }) {
authToken
refreshToken
user {
...AuthUser
}
}
}