It would be great to have support of `in` operator for scalar types to create simple queries with arrays like: ``` graphql { allMarkdownRemark( filter: { id: { in: ["0","1"] } } ) { edges{ node { id } } } } ``` for now I need to build regexp