/ frontend / graphql / setting.gql
setting.gql
 1  query setting($locale: I18NLocaleCode!) {
 2    setting(locale: $locale) {
 3      data {
 4        id
 5        attributes {
 6          gtm_id
 7          about_link
 8          faq_link
 9          announcement
10          matomo_script_url
11          opencollective_link
12          code_link
13          stripe_dashboard_link
14          tos_link
15          data_policy_link
16        }
17      }
18    }
19  }