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

GetAllFieldIncludeBaseType() public method

public GetAllFieldIncludeBaseType ( ) : IEnumerable
return IEnumerable
        public IEnumerable<GraphQLField> GetAllFieldIncludeBaseType()
        {
            return BaseType != null ? OwnFields.Concat(BaseType.GetAllFieldIncludeBaseType()) : OwnFields;
        }