Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

An import from GraphQL_PPX.bs.js appears in .bs.js #281

Open
vknez opened this issue Jun 24, 2022 · 0 comments
Open

An import from GraphQL_PPX.bs.js appears in .bs.js #281

vknez opened this issue Jun 24, 2022 · 0 comments

Comments

@vknez
Copy link

vknez commented Jun 24, 2022

Hi. I'm using graphql-ppx to talk to Shopify API and I found the following in my .bs.js file:

import * as GraphQL_PPX from "@reasonml-community/graphql-ppx/bucklescript/GraphQL_PPX.bs.js";

This means I would need to include graphql-ppx as a dependency instead of devDependency in my ReScript project. Is that normal?

I suspect this query is the culprit:

query SpecificCollections($ids: [ID!]!) @ppxConfig(schema: "schemas/shopify.json") {
  nodes(ids: $ids) {
    __typename
    ... on Collection {
      id
      ...CategoryCollectionFields
    }
  }
}

fragment ImageFields on Image @ppxConfig(schema: "schemas/shopify.json") {
  id
  url @ppxCustom(module: "ShopifyApi__Scalars__Url")
  altText
  width
  height
}

fragment MetafieldImageFields on Metafield @ppxConfig(schema: "schemas/shopify.json") {
  reference {
    __typename
    ... on MediaImage {
      image {
        ...ImageFields
      }
    }
  }
}

fragment CategoryCollectionFields on Collection @ppxConfig(schema: "schemas/shopify.json") {
  id
  title
  image: metafield(namespace: "ns", key: "ky") {
    ...MetafieldImageFields
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant