To retrieves all the issues where in which Secure Form Forms is filled and submitted, you can use Secure Form issue Property the concept of issue properties with JQL. This issue Property property works fine with JQL Queries queries and It will only show you those issue where you have view ‘view’ permission.
issue.property[SecureForm].Status ~ 'submitted'
In JQL, you can run above query with any JQL query, To get this data, just go to JQL and run the below query and it will return all issues where secure form is submitted and have a property with SecureForm status=submitted. You can also add it up with other JQL operators to make your search better.
issue.property[SecureForm].Status ~ 'submitted'
Example: If you want to filter out all the issues that is created today and have Secure Form Submitted then this JQL Query can help you.
...