mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
fix(server): gql schema is outdated (#6097)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user