Error: expected value of type Int!, found a list
    ╭─[0110_list_usage_in_non_list_type.graphql:20:5]
    │
  5 │   int: Int!
    │        ──┬─  
    │          ╰─── expected type declared here as Int!
    │ 
 20 │     int: [1, 2, 3]
    │     ───────┬──────  
    │            ╰──────── provided value is a list
────╯
Error: expected value of type String!, found a list
    ╭─[0110_list_usage_in_non_list_type.graphql:21:5]
    │
  6 │   str: String!
    │        ───┬───  
    │           ╰───── expected type declared here as String!
    │ 
 21 │     str: ["1"]
    │     ─────┬────  
    │          ╰────── provided value is a list
────╯
Error: expected value of type Boolean!, found a list
    ╭─[0110_list_usage_in_non_list_type.graphql:22:5]
    │
  7 │   bool: Boolean!
    │         ────┬───  
    │             ╰───── expected type declared here as Boolean!
    │ 
 22 │     bool: [true, false]
    │     ─────────┬─────────  
    │              ╰─────────── provided value is a list
────╯
Error: expected value of type Int, found a list
    ╭─[0110_list_usage_in_non_list_type.graphql:23:5]
    │
  8 │   opt: Int
    │        ─┬─  
    │         ╰─── expected type declared here as Int
    │ 
 23 │     opt: [1, 2, 3]
    │     ───────┬──────  
    │            ╰──────── provided value is a list
────╯
Error: expected value of type ID!, found a list
    ╭─[0110_list_usage_in_non_list_type.graphql:24:5]
    │
  9 │   id: ID!
    │       ─┬─  
    │        ╰─── expected type declared here as ID!
    │ 
 24 │     id: [1, "2", 3]
    │     ───────┬───────  
    │            ╰───────── provided value is a list
────╯

