fix(server): gql schema is outdated (#6097)

This commit is contained in:
liuyi
2024-03-13 04:11:44 +00:00
parent 495855cc07
commit 73801ce864

View File

@@ -394,14 +394,18 @@ export type GetUserQueryVariables = Exact<{
export type GetUserQuery = {
__typename?: 'Query';
user:
| { __typename: 'LimitedUserType'; email: string; hasPassword: boolean }
| {
__typename: 'LimitedUserType';
email: string;
hasPassword: boolean | null;
}
| {
__typename: 'UserType';
id: string;
name: string;
avatarUrl: string | null;
email: string;
hasPassword: boolean;
hasPassword: boolean | null;
}
| null;
};