'How to get GraphQL Variables on postman

Lets suppose in request body, I am using following GraphQL Variables:

{
  "getUsers": {
    "offset": 0,
    "limit": 5,
    "cursor": ""
  }
}

Now on test body, I want to get value of limit, how can I do that?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source