Skip to content

Instantly share code, notes, and snippets.

@mczachurski
Created October 10, 2017 18:19
Show Gist options
  • Select an option

  • Save mczachurski/1c4808c50bf54398a53e710e2e8f861f to your computer and use it in GitHub Desktop.

Select an option

Save mczachurski/1c4808c50bf54398a53e710e2e8f861f to your computer and use it in GitHub Desktop.
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