Co-authored-by: Vivek R <123vivekr@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
12 lines
211 B
GraphQL
12 lines
211 B
GraphQL
mutation UpdateUserSession(
|
|
$currentSession: String!
|
|
$sessionType: SessionType!
|
|
) {
|
|
updateUserSessions(
|
|
currentSession: $currentSession
|
|
sessionType: $sessionType
|
|
) {
|
|
currentRESTSession
|
|
}
|
|
}
|