feat: make email and password updatable

This commit is contained in:
Ali BARIN
2022-03-30 21:18:57 +02:00
committed by Ömer Faruk Aydın
parent b8fb84ef42
commit bb6c464770
8 changed files with 202 additions and 42 deletions

View File

@@ -0,0 +1,12 @@
import { gql } from '@apollo/client';
export const GET_CURRENT_USER = gql`
query GetCurrentUser {
getCurrentUser {
id
email
createdAt
updatedAt
}
}
`;