mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
19 lines
198 B
TypeScript
19 lines
198 B
TypeScript
import {gql} from 'apollo-boost'
|
|
|
|
export interface MeQueryData {
|
|
me: {
|
|
id: string
|
|
|
|
roles: string[]
|
|
}
|
|
}
|
|
|
|
export const ME_QUERY = gql`
|
|
query {
|
|
me {
|
|
id
|
|
roles
|
|
}
|
|
}
|
|
`
|