'Max limit of values in IN clause

If I have a query as below:

query {
      queryState(filter: {code: {in : ["WA", "VA"]}}){
        code
        name
      }
    }

What is the max number of values that I can provide in the array used for the IN clause? I tried looking up the documentation but did not find relevant information on this?



Sources

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

Source: Stack Overflow

Solution Source