From e8f4ba072828d77734568fe22ec402de3659a9b8 Mon Sep 17 00:00:00 2001 From: Luara Kerlen dos Santos Rangel Date: Mon, 28 Oct 2024 19:41:06 -0300 Subject: [PATCH] feat: update sponsoredBanners query with additional fields The sponsoredBanners query has been updated to include the `bannerImageId`, `width`, and `height` fields in the advertisement object. This allows for retrieving additional information about the banners for display purposes. --- react/queries/sponsoredBanners.gql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/react/queries/sponsoredBanners.gql b/react/queries/sponsoredBanners.gql index f04ee07..358fce8 100644 --- a/react/queries/sponsoredBanners.gql +++ b/react/queries/sponsoredBanners.gql @@ -14,10 +14,10 @@ query sponsoredBanners( advertisement { imageUrl targetUrl - campaignId - actionCost - adRequestId adResponseId + bannerImageId + width + height } } }