mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -06:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import { graphql } from '~/composables/gql/gql';
|
|
|
|
export const CONNECT_SIGN_IN = graphql(/* GraphQL */`
|
|
mutation ConnectSignIn($input: ConnectSignInInput!) {
|
|
connectSignIn(input: $input)
|
|
}
|
|
`);
|
|
|
|
export const CONNECT_SIGN_OUT = graphql(/* GraphQL */`
|
|
mutation SignOut {
|
|
connectSignOut
|
|
}
|
|
`);
|