Files
automatisch/packages/web/src/graphql/queries/get-current-user.ts
2023-03-01 21:40:39 +00:00

14 lines
203 B
TypeScript

import { gql } from '@apollo/client';
export const GET_CURRENT_USER = gql`
query GetCurrentUser {
getCurrentUser {
id
fullName
email
createdAt
updatedAt
}
}
`;