fix: merge

This commit is contained in:
Peng Xiao 2025-06-25 16:42:21 +08:00
parent f2f17bc337
commit f19e2caf61
No known key found for this signature in database
GPG Key ID: 21D49B4CA2B82E60
2 changed files with 11 additions and 0 deletions

View File

@ -381,6 +381,11 @@ export const createCommentMutation = {
content
createdAt
updatedAt
user {
id
name
avatarUrl
}
}
}
}`,

View File

@ -3307,6 +3307,12 @@ export type CreateCommentMutation = {
content: any;
createdAt: string;
updatedAt: string;
user: {
__typename?: 'PublicUserType';
id: string;
name: string;
avatarUrl: string | null;
};
}>;
};
};