Error: the required argument `req1` is not provided
    ╭─[0054_argument_not_provided.graphql:14:5]
    │
  2 │   multipleReqs(req1: Int!, req2: Int!): String
    │                ─────┬────  
    │                     ╰────── argument defined here
    │ 
 14 │     multipleReqs
    │     ──────┬─────  
    │           ╰─────── missing value for argument `req1`
────╯
Error: the required argument `req2` is not provided
    ╭─[0054_argument_not_provided.graphql:14:5]
    │
  2 │   multipleReqs(req1: Int!, req2: Int!): String
    │                            ─────┬────  
    │                                 ╰────── argument defined here
    │ 
 14 │     multipleReqs
    │     ──────┬─────  
    │           ╰─────── missing value for argument `req2`
────╯
Error: the required argument `req1` is not provided
    ╭─[0054_argument_not_provided.graphql:17:5]
    │
  2 │   multipleReqs(req1: Int!, req2: Int!): String
    │                ─────┬────  
    │                     ╰────── argument defined here
    │ 
 17 │     onlyOneArg: multipleReqs(req2: 1)
    │     ────────────────┬────────────────  
    │                     ╰────────────────── missing value for argument `req1`
────╯
Error: the required argument `if` is not provided
    ╭─[0054_argument_not_provided.graphql:21:9]
    │
 21 │   basic @skip @include(wrong: false) {
    │         ──┬──  
    │           ╰──── missing value for argument `if`
    │
    ├─[built_in.graphql:98:3]
    │
 98 │ ╭─▶   "Skipped when true."
 99 │ ├─▶   if: Boolean!
    │ │                    
    │ ╰──────────────────── argument defined here
────╯
Error: the required argument `if` is not provided
     ╭─[0054_argument_not_provided.graphql:21:15]
     │
  21 │   basic @skip @include(wrong: false) {
     │               ───────────┬──────────  
     │                          ╰──────────── missing value for argument `if`
     │
     ├─[built_in.graphql:104:3]
     │
 104 │ ╭─▶   "Included when true."
 105 │ ├─▶   if: Boolean!
     │ │                    
     │ ╰──────────────────── argument defined here
─────╯
Error: the argument `wrong` is not supported
    ╭─[0054_argument_not_provided.graphql:21:24]
    │
 21 │   basic @skip @include(wrong: false) {
    │               ───────────┬──────────  
    │                          ╰──────────── argument by this name not found
    │                          │            
    │                          ╰──────────── directive declared here
────╯
Error: the required argument `req1` is not provided
    ╭─[0054_argument_not_provided.graphql:26:5]
    │
  2 │   multipleReqs(req1: Int!, req2: Int!): String
    │                ─────┬────  
    │                     ╰────── argument defined here
    │ 
 26 │     a: multipleReqs(req2: 1)
    │     ────────────┬───────────  
    │                 ╰───────────── missing value for argument `req1`
────╯
Error: the required argument `req2` is not provided
    ╭─[0054_argument_not_provided.graphql:27:5]
    │
  3 │   multipleOptAndReq(req1: Int!, req2: Int!, opt1: Int = 0, opt2: Int = 0): String
    │                                 ─────┬────  
    │                                      ╰────── argument defined here
    │ 
 27 │     b: multipleOptAndReq(req1: 1)
    │     ──────────────┬──────────────  
    │                   ╰──────────────── missing value for argument `req2`
────╯
Error: the required argument `req2` is not provided
    ╭─[0054_argument_not_provided.graphql:28:5]
    │
  3 │   multipleOptAndReq(req1: Int!, req2: Int!, opt1: Int = 0, opt2: Int = 0): String
    │                                 ─────┬────  
    │                                      ╰────── argument defined here
    │ 
 28 │     c: multipleOptAndReq(opt1: 1, opt2: 1, req1: 1)
    │     ───────────────────────┬───────────────────────  
    │                            ╰───────────────────────── missing value for argument `req2`
────╯

