Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolver is not executed? #97

Closed
Ponjimon opened this issue Jun 13, 2018 · 1 comment
Closed

Resolver is not executed? #97

Ponjimon opened this issue Jun 13, 2018 · 1 comment
Labels
Invalid 👎 This doesn't seem right

Comments

@Ponjimon
Copy link

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.

@Resolver(() => UserType)
export class UserResolver {
    @Query(() => UserType, {
        description:
            'Requests the public profile of a user. Some fields may be inaccessible.',
        nullable: true,
    })
    public async user(
        @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) {
            return null;
        }

        const { id: targetUserId } = fromGlobalId(id);
        const { id: userId } = fromGlobalId(viewer.user.id);

        const targetUser = await verifyAndSelectUser(targetUserId);

        // some other, non important stuff here

        return targetUser;
    }
}

UserType is just an @ObjectType class according to your documentation.

Am I doing something wrong?

@Ponjimon
Copy link
Author

Hm, nevermind. It seems that something was bugged on my side and it eventually started to work after I restarted everything lol.

@MichalLytek MichalLytek added the Invalid 👎 This doesn't seem right label Jun 13, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Invalid 👎 This doesn't seem right
Projects
None yet
Development

No branches or pull requests

2 participants