10 lines
115 B
TypeScript
10 lines
115 B
TypeScript
|
import { gql } from '@urql/core'
|
||
|
|
||
|
export default gql`
|
||
|
query SignOutQuery {
|
||
|
signOut {
|
||
|
error
|
||
|
}
|
||
|
}
|
||
|
`
|