Arguments
slug
String!Required
A short, human-readable, URL-friendly identifier of a product. You can get slug value from the endpoint.
Mutation
1mutation getProductQRCodeBySlug($slug: String!) {2 getProductQRCodeBySlug(slug: $slug) {3 link4 svg5 }6}
Try it
Input Variables
1{2 "slug": "slug"3}
Response
1{2 "getProductQRCodeBySlug": {3 "link": "link",4 "svg": "svg"5 }6}
Was this section helpful?