Skip to content

Add resolver for product analytics project settings

Elwyn Benson requested to merge product-analytics-project-settings-resolver into master

What does this MR do and why?

Add resolver for product analytics project settings

Allows fetching the current project settings via graphql for maintainer+ users. This will be used within the product analytics onboarding flow

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Screenshots or screen recordings

No visual differences.

How to set up and validate locally

  • Follow these instructions to setup Product Analytics in GDK.
  • Run query from this branch:
query getProductAnalyticsProjectSettings($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    productAnalyticsSettings {
      productAnalyticsConfiguratorConnectionString
      productAnalyticsDataCollectorHost
      cubeApiBaseUrl
      cubeApiKey
    }
  }
}

Relates to #462963 (closed)

Edited by Elwyn Benson

Merge request reports