travis-r6s / gridsome-source-shopify

Shopify source plugin for Gridsome
https://gridsome-shopify-starter.netlify.com
MIT License
16 stars 14 forks source link

Cannot get metafileds in ShopifyProduct #72

Closed antero10 closed 3 years ago

antero10 commented 3 years ago

I'm trying to get metafields from products, but I get an error. Here is my request

query Products {
  allShopifyProduct {
    edges {
      node {
        id
        tags
        metafields
      }
    }
  }
}

And the error

{
  "error": {
    "errors": [
      {
        "message": "Cannot query field \"metafields\" on type \"ShopifyProduct\".",
        "stringified": "Cannot query field \"metafields\" on type \"ShopifyProduct\".\n\nGraphQL request:7:9\n6 |         tags\n7 |         metafields\n  |         ^\n8 |       }"
      }
    ]
  }
}

It is possible to use metafields?