From ebce5edaa98c88391735e21dd4c0d00f6c2f7730 Mon Sep 17 00:00:00 2001 From: Glen Dsouza Date: Fri, 10 May 2024 01:02:35 +0530 Subject: [PATCH] Fix error invoking getFundraisingById Resolver (#2294) * Declare resolver in index * remove changes in README.md --- src/resolvers/Query/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/resolvers/Query/index.ts b/src/resolvers/Query/index.ts index bf6b192b61e..f03ee4de140 100644 --- a/src/resolvers/Query/index.ts +++ b/src/resolvers/Query/index.ts @@ -22,6 +22,7 @@ import { getDonationById } from "./getDonationById"; import { getDonationByOrgId } from "./getDonationByOrgId"; import { getDonationByOrgIdConnection } from "./getDonationByOrgIdConnection"; import { getFundById } from "./getFundById"; +import { getFundraisingCampaignById } from "./getFundraisingCampaign"; import { getPlugins } from "./getPlugins"; import { getlanguage } from "./getlanguage"; import { me } from "./me"; @@ -79,6 +80,7 @@ export const Query: QueryResolvers = { users, usersConnection, getFundById, + getFundraisingCampaignById, venue, fundsByOrganization, getEventAttendee,