Graphql request:
query FetchProductVendors {
productVendors (first: 250) {
edges {
node
}
}
}
Cannot query field "productVendors" on type "QueryRoot". Did you mean "productFeeds", "productFeed", "productVariant", "productVariants", or "products"?GraphQL: Validation
When using shop {} that works, but with a deprecation warnng:
query FetchProductVendors {
shop {
productVendors (first: 250) {
edges {
node
}
}
}
}
The field Shop.productVendors is deprecated. Use QueryRoot.productVendors instead.GraphQL: Deprecation