From 569412f2dc98c3fd2224c2eff8e2f390d4966225 Mon Sep 17 00:00:00 2001 From: "Joey@macstudio" Date: Sat, 11 Jul 2026 17:39:26 +0800 Subject: [PATCH] docs: fix GraphQL photo author schema --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fbe481..6fb9992 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ type Photo { url: String width: Int height: Int - authorId: String + author: Author } ``` @@ -273,7 +273,11 @@ query { width height url - authorId + author { + id + name + url + } } } }