mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-24 04:27:27 +08:00
fix(server): gql schema is outdated (#6097)
This commit is contained in:
@@ -394,14 +394,18 @@ export type GetUserQueryVariables = Exact<{
|
|||||||
export type GetUserQuery = {
|
export type GetUserQuery = {
|
||||||
__typename?: 'Query';
|
__typename?: 'Query';
|
||||||
user:
|
user:
|
||||||
| { __typename: 'LimitedUserType'; email: string; hasPassword: boolean }
|
| {
|
||||||
|
__typename: 'LimitedUserType';
|
||||||
|
email: string;
|
||||||
|
hasPassword: boolean | null;
|
||||||
|
}
|
||||||
| {
|
| {
|
||||||
__typename: 'UserType';
|
__typename: 'UserType';
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
avatarUrl: string | null;
|
avatarUrl: string | null;
|
||||||
email: string;
|
email: string;
|
||||||
hasPassword: boolean;
|
hasPassword: boolean | null;
|
||||||
}
|
}
|
||||||
| null;
|
| null;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user