Shopify / syrup

A type-safe GraphQL model generator for Kotlin, Swift, and TypeScript.

Home Page:https://shopify.github.io/syrup/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot run query if it has beta flag in React Native

henrytao-me opened this issue · comments

What

Screen Shot 2022-03-11 at 15 35 37

This is my query

fragment AppDetails on App {
  apiKey
  betaAdditionalUserData: beta(name: "Shopify-API-User-additionalData")
  handle
  icon {
    id
    src: url
  }
  id
  installation {
    id
    accessScopes {
      handle
    }
    appUrl(parameters: $parameters)
    pinned
  }
  title
  isChannel
}

The same query works fine on both Android and iOS.