private GraphQLFieldInfo GetIntrospectedSchemaField()
 {
     return(GraphQLObjectTypeFieldInfo.CreateResolverFieldInfo(
                "__schema",
                (Expression <Func <IntrospectedSchemaType> >)(() => this.Schema.IntrospectedSchema),
                "Access the current type schema of this server."));
 }
 private GraphQLFieldInfo GetIntrospectedTypeField()
 {
     return(GraphQLObjectTypeFieldInfo.CreateResolverFieldInfo(
                "__type",
                (Expression <Func <string, IntrospectedType> >)((string name) => this.Schema.IntrospectType(name)),
                "Request the type information of a single type."));
 }