Arguments
url
String!Required
A link or a web address of a given URL transformed into a scannable QR code.
Mutation
1mutation getUrlQRCode($url: String!) {2 getUrlQRCode(url: $url) {3 link4 svg5 }6}
Try it
Input Variables
1{2 "url": "https://website.com"3}
Response
1{2 "getUrlQRCode": {3 "link": "link",4 "svg": "svg"5 }6}
Was this section helpful?