GraphQL.Net.GraphQLType.GraphQLType C# (CSharp) Method

GraphQLType() public method

public GraphQLType ( Type type ) : System
type System.Type
return System
        public GraphQLType(Type type)
        {
            CLRType = type;
            Name = type.Name;
            OwnFields = new List<GraphQLField>();
            IncludedTypes = new List<GraphQLType>();
        }