haxe-graphql
                                
                                
                                
                                    haxe-graphql copied to clipboard
                            
                            
                            
                        Should catch typos in query variable names
Should catch typos / mismatches (and ideally "unused variables") in query variable names:
query FooQuery($some_id: ID!, $withBaz: Boolean!, $limit: Int) {
  foo_query(a: $some_typo_id, b: $limit_typo, c: $offset_typo) {
    bar
    baz @include(if: $withBaz_typo) {
      someBazMember
    }
  }
}