@deep/nest-kit
    Preparing search index...

    Interface IBaseNotificationSubscriptionsResolverHost

    interface IBaseNotificationSubscriptionsResolverHost {
        notificationSubscription(
            id: string,
            ctx: IBaseActionContext,
        ): Promise<NotificationSubscription>;
        notificationSubscriptions(
            input: FetchNotificationSubscriptionsInput,
            info: GraphQLResolveInfo,
        ): Promise<PaginatedNotificationSubscriptions>;
        syncNotificationSubscription(
            input: SyncNotificationSubscriptionInput,
            ctx: IBaseActionContext,
        ): Promise<NotificationSubscription>;
        toggleNotificationSubscription(
            input: ToggleNotificationSubscriptionInput,
            ctx: IBaseActionContext,
        ): Promise<NotificationSubscription>;
    }
    Index

    Methods