You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I managed to create a "working" installation now, like, it successfully returns the schema if I run an introspection query and I can also send a valid GraphQL query back to the server.
But somehow, the resolver is never executed. I placed a console.log into the resolver function, but it is never seen in the console output and the server also returns null, no matter what I do.
@Resolver(()=>UserType)exportclassUserResolver{
@Query(()=>UserType,{description:
'Requests the public profile of a user. Some fields may be inaccessible.',nullable: true,})publicasyncuser(
@Arg('id',()=>ID)id: string,
@Ctx()ctx: GraphQLContext): Promise<User|null>{const{ viewer }: {viewer: Viewer|null}=ctx;console.warn('This is never shown.');if(!viewer){returnnull;}const{id: targetUserId}=fromGlobalId(id);const{id: userId}=fromGlobalId(viewer.user.id);consttargetUser=awaitverifyAndSelectUser(targetUserId);// some other, non important stuff herereturntargetUser;}}
UserType is just an @ObjectType class according to your documentation.
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
So, I'm coming from this: #96
I managed to create a "working" installation now, like, it successfully returns the schema if I run an introspection query and I can also send a valid GraphQL query back to the server.
But somehow, the resolver is never executed. I placed a console.log into the resolver function, but it is never seen in the console output and the server also returns
null
, no matter what I do.UserType
is just an@ObjectType
class according to your documentation.Am I doing something wrong?
The text was updated successfully, but these errors were encountered: