Advertisement
shopnilSS

GQL Fetch API

Mar 18th, 2022
975
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const body = {
  2.         query : `
  3.            query test ($first: String, $last: String) {
  4.             test (input: {firstName: $first, lastName: $last}){
  5.               message
  6.             }
  7.           }
  8.         `,
  9.           variables: {
  10.           first: "Sadmaney",
  11.           last: "Shopnil"
  12.         }
  13.       }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement