Created
October 10, 2017 18:19
-
-
Save mczachurski/1c4808c50bf54398a53e710e2e8f861f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class GraphQLSchema : Schema | |
| { | |
| public GraphQLSchema(Func<Type, GraphType> resolveType) | |
| : base(resolveType) | |
| { | |
| Query = (GraphQLQuery)resolveType(typeof(GraphQLQuery)); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment