From 9712c697a910360c499f2bddbdb510962d17be8b Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 28 Sep 2024 18:53:43 -0700 Subject: feat(user): move profile page badges to graphql --- src/graphql/user/schema.graphql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/graphql') diff --git a/src/graphql/user/schema.graphql b/src/graphql/user/schema.graphql index d4360a39..942ee72d 100644 --- a/src/graphql/user/schema.graphql +++ b/src/graphql/user/schema.graphql @@ -1,10 +1,10 @@ type Query { - User(id: Int!): User + User(id: Int!): User! } type User { id: Int! - badges: [Badge] + badges: [Badge]! } type Badge { -- cgit v1.2.3