Loop returning only few posts of category

Hi. I was trying to use a template on wordpress page which I have used before to return all posts of specific category on one page and it served my purpose but today this template is no more returning all posts but it returns some 20-30 posts out of 3000+ posts of the specific category. I tried even basic code available on documentation page but still it returns limited posts.

<Loop type=post category=general-knowledge>
	<Field title />
</Loop>

My category “general-knowledge” has 3000+ posts but template is not listing them all. I am using latest version.

It sounds like another plugin may be filtering WP_Query to limit posts automatically.

Does it make a difference if you use the count parameter?

<Loop type=post category=general-knowledge count=1000>