mutation

getUrlQRCode

Converts a given URL into a scannable QR code.
Arguments
Required
A link or a web address of a given URL transformed into a scannable QR code.
Response
link
String
Original url that was used to encoded url into a QR code.
String representation of the QR Code in SVG format.
Mutation
1mutation getUrlQRCode($url: String!) {
2 getUrlQRCode(url: $url) {
3 link
4 svg
5 }
6}
Try it
Input Variables
1{
2 "url": "https://website.com"
3}
Response
1{
2 "getUrlQRCode": {
3 "link": "link",
4 "svg": "svg"
5 }
6}