From 92329625130b49fde73c6b031e3e8931e8fedf5a Mon Sep 17 00:00:00 2001 From: mdickson-adbe <95774602+mdickson-adbe@users.noreply.github.com> Date: Wed, 5 Jun 2024 18:30:28 -0400 Subject: [PATCH] fix typo in graphql query name (#111) --- scripts/graphql.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/graphql.js b/scripts/graphql.js index 0d59b62f..fd20c366 100644 --- a/scripts/graphql.js +++ b/scripts/graphql.js @@ -103,7 +103,7 @@ export async function graphqlAllCampaignsFilter(first,cursor,filter) { } export async function graphqlCampaignByName(campaignName) { - const queryName = 'getCampaignNamesFilter'; + const queryName = 'getCampaignNameFilter'; const encodedCampaignName = encodeURIComponent(campaignName); const encodedSemiColon = encodeURIComponent(';'); //persisted query URLs have to be encoded together with the first semicolon