diff options
| author | Fuwn <[email protected]> | 2024-10-06 06:02:42 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-06 06:03:04 -0700 |
| commit | dc83ce03286a780827ea400289daf7fbcd228935 (patch) | |
| tree | 0947c3ec3b321c2e95e71b4359f8d3330914952d | |
| parent | feat(badges): return user for badge mutations (diff) | |
| download | due.moe-dc83ce03286a780827ea400289daf7fbcd228935.tar.xz due.moe-dc83ce03286a780827ea400289daf7fbcd228935.zip | |
feat(user): request id in initial query
| -rw-r--r-- | src/routes/user/[user]/+page.gql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes/user/[user]/+page.gql b/src/routes/user/[user]/+page.gql index aa9c86b0..91759675 100644 --- a/src/routes/user/[user]/+page.gql +++ b/src/routes/user/[user]/+page.gql @@ -1,5 +1,7 @@ query Profile($id: Int!) { User(id: $id) { + id + badges { id } |