GraphQL.Tools
GraphQL.Tools copied to clipboard
GraphQL.Tools is a GraphQL to C# compiler (code-generator) which turns your GraphQL schema into a set of C# classes, interfaces, and enums.
Results
2
GraphQL.Tools issues
Sort by
recently updated
recently updated
newest added
Currently, GraphQL.Tools just support reading schema from .gql files. We can add the ability to read from 3rd party services like `GraphQL Playground`.
enhancement
good first issue
Consider the example schema : https://workshop.chillicream.com/graphql/ This has mutations and it has input types like below input UploadSpeakerPhotoInput { id: Int! photo: Upload! } The above is not converted to...