Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
870 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.

question from:https://stackoverflow.com/questions/65834157/how-to-filter-type-graphql-subscription-using-context-instead-of-args

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

1 Answer

0 votes
by (71.8m points)

ResolverFilterData contains payload, args, context and info. So you can access that by filter: ({ context }) => { ... }.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...