From d0c970ea4ddf8d88eb871408fe14f2e87892e6d4 Mon Sep 17 00:00:00 2001 From: hedvig-ops-bot Date: Fri, 7 Aug 2026 06:21:07 +0000 Subject: [PATCH] Update GQL Schema --- .../com/hedvig/android/apollo/octopus/schema.graphqls | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/apollo/apollo-octopus-public/src/commonMain/graphql/com/hedvig/android/apollo/octopus/schema.graphqls b/app/apollo/apollo-octopus-public/src/commonMain/graphql/com/hedvig/android/apollo/octopus/schema.graphqls index 967aa772d9..587cd600b7 100644 --- a/app/apollo/apollo-octopus-public/src/commonMain/graphql/com/hedvig/android/apollo/octopus/schema.graphqls +++ b/app/apollo/apollo-octopus-public/src/commonMain/graphql/com/hedvig/android/apollo/octopus/schema.graphqls @@ -5053,6 +5053,7 @@ input ShopSessionAttributionInput { A/B testing experiments """ experiments: [ShopSessionExperimentInput!] + """""" trackingData: JSON """ The Vertex recommendation instance that led the member here (cross-sell arm only). @@ -5917,23 +5918,23 @@ enum __DirectiveLocation { """ INPUT_FIELD_DEFINITION } -directive @defer (label: String, if: Boolean! = true) on FRAGMENT_SPREAD|INLINE_FRAGMENT +directive @defer(label: String, if: Boolean! = true) on FRAGMENT_SPREAD | INLINE_FRAGMENT """ Directs the executor to include this field or fragment only when the `if` argument is true. """ -directive @include ("Included when true." if: Boolean!) on FIELD|FRAGMENT_SPREAD|INLINE_FRAGMENT +directive @include("Included when true." if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT """ Directs the executor to skip this field or fragment when the `if` argument is true. """ -directive @skip ("Skipped when true." if: Boolean!) on FIELD|FRAGMENT_SPREAD|INLINE_FRAGMENT +directive @skip("Skipped when true." if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT """ Marks an element of a GraphQL schema as no longer supported. """ -directive @deprecated ("Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/)." reason: String = "No longer supported") on FIELD_DEFINITION|ARGUMENT_DEFINITION|INPUT_FIELD_DEFINITION|ENUM_VALUE +directive @deprecated("Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/)." reason: String = "No longer supported") on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | ENUM_VALUE """ Exposes a URL that specifies the behavior of this scalar. """ -directive @specifiedBy ("The URL that specifies the behavior of this scalar." url: String!) on SCALAR +directive @specifiedBy("The URL that specifies the behavior of this scalar." url: String!) on SCALAR schema { query: Query mutation: Mutation