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