Skip to content

Commit

Permalink
fix typo in graphql query name
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickson-adbe committed Jun 5, 2024
1 parent fcc7312 commit aed5b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/graphql.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aed5b6a

Please sign in to comment.