You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Repository methods defined with a @ Query annotation are sent having the default size value of 10 set in the request and so only get the first 10 documents.
This can be worked around currently by adding a Pageable.unpaged() parameter to the method and changing the return type to SearchPage<T>
The text was updated successfully, but these errors were encountered:
Repository methods defined with a
@ Query
annotation are sent having the default size value of 10 set in the request and so only get the first 10 documents.This can be worked around currently by adding a
Pageable.unpaged()
parameter to the method and changing the return type toSearchPage<T>
The text was updated successfully, but these errors were encountered: