How to display all entries by default
Whenever you create a new View, by default, GravityView displays only 25 records (also known as entries, or form submissions).
If you want to change this default, to display all entries instead, you can use the following filter:
add_filter( 'gravityview_default_page_size', function( $default = 25 ) { return -1; });