From 65fcef6f17a8c5ec86d391a5e0b6fcf51cc6e35b Mon Sep 17 00:00:00 2001 From: Juyeong Maing Date: Sat, 27 Sep 2025 19:51:28 +0000 Subject: [PATCH] docs: fix typo in code --- content/graphql/resolvers-map.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/graphql/resolvers-map.md b/content/graphql/resolvers-map.md index 03e69222d0..8cf6884ecb 100644 --- a/content/graphql/resolvers-map.md +++ b/content/graphql/resolvers-map.md @@ -583,12 +583,12 @@ Assuming that we use the schema first approach and have enabled the typings gene ```typescript @@filename(graphql) -export (class Author { +export class Author { id: number; firstName?: string; lastName?: string; posts?: Post[]; -}) +} export class Post { id: number; title: string;