Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

typegraphql - How to filter type-graphql subscription using context, instead of args?

I am trying to send notification to different users and want every user to see only his. I have already succeeded to do you with @Args.

Heres the subscribtion:

@Subscription(() => Notification, {
    topics: "NOTIFICATIONS",
    filter: ({ payload, args }: ResolverFilterData<Notification, NewNotificationArgs>) => {
        return payload.userId === args.userId;
    },
})
newNotification(
    @Root() notification: Notification,
    @Args() { userId }: NewRequestArgs
): Notification {
   return notification;
}

And the mutation:

@Mutation(() => Boolean)
async createNotification(
    @PubSub("NOTIFICATIONS") notifyAboutNewNotification: Publisher<Notification>
): Promise<Boolean> {
    const notification = await Notification.create({
        userId: <some id>,
        message: <some message>
    }).save();

    await notifyAboutNewRequest(notification);

    return true;
}

Now I want you use a userId, that I have stored in the context.req.session.userId as a cookie.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I logged my context and It looks like I was getting the values, but undefined. You need to use the onConnect event to upgrade the context.

Links than helped me: Discussion Youtube


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.6k users

...