diff options
| author | Fuwn <[email protected]> | 2024-10-07 02:32:36 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-07 02:32:36 -0700 |
| commit | 0e6917a9ec3ec8ada6724e0832acd6643ec2afae (patch) | |
| tree | f563c5f23947dd3b3cf3627ad7eff96b80a8e935 /src/graphql/user | |
| parent | fix(badges): fix field clearing regression (diff) | |
| download | due.moe-0e6917a9ec3ec8ada6724e0832acd6643ec2afae.tar.xz due.moe-0e6917a9ec3ec8ada6724e0832acd6643ec2afae.zip | |
fix(graphql): wait for database update on badge mutation
Diffstat (limited to 'src/graphql/user')
| -rw-r--r-- | src/graphql/user/resolvers.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graphql/user/resolvers.ts b/src/graphql/user/resolvers.ts index 422d9170..2e1160bc 100644 --- a/src/graphql/user/resolvers.ts +++ b/src/graphql/user/resolvers.ts @@ -33,7 +33,7 @@ const auth = async (context: Context) => { const authenticatedBadgesOperation = async ( context: Context, - operation: (identity: UserIdentity, authorised: boolean) => void + operation: (identity: UserIdentity, authorised: boolean) => Promise<any> ) => { const identity = await auth(context); @@ -41,7 +41,7 @@ const authenticatedBadgesOperation = async ( const authorised = authorisedJson.includes(identity.id); - operation(identity, authorised); + await operation(identity, authorised); return { id: identity.id, @@ -63,7 +63,7 @@ const authenticatedPreferencesOperation = async ( return { id: identity.id, badges: [] as Badge[], - preferences: operation(identity, authorised) as Promise<UserPreferences> + preferences: await operation(identity, authorised) } }; |