import { gql } from "graphql-tag" export const GetProfilingConsent = gql` query GetProfilingConsent($locale: String!) { all_profiling_consent(locale: $locale) { items { main_icon profiling_consent_banner { button_text header sub_header } profiling_consent_modal { header sub_header cards { card { image_type preamble title } } } } } } `