From 3adc301935f91564c287eb3736ae3bfc3817eadf Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Thu, 24 Oct 2024 23:49:47 -0600 Subject: [PATCH] Add subfields to usernames and following --- src/operations/user.gql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/operations/user.gql b/src/operations/user.gql index fc85a02..e96c997 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -71,7 +71,10 @@ query getUsernamesAndFollowing( ) { followers following - usernamesAndIds + usernamesAndIds { + username + id + } } }