Search for issues using JQL (POST) - comments number limit

Hello,

I was wondering if there any limit to the number of comments returned by the issue query:

Search for issues using JQL (POST)

curl --request POST \ --url 'https://your-domain.atlassian.net/rest/api/2/search' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "expand": [ "names", "schema", "operations" ], "fields": [ "summary", "status", "comment" ], "fieldsByKeys": false, "jql": "project = HSP", "maxResults": 15, "startAt": 0 }'

As in this request you can set the limit of the maxResults for issue number, but is there one for comments number? If not than is there any limit e.g. 50 as in the paginated comment search?

What will happen if the issue has more than 1000+ comments?

** We are trying to get the last comment ids for all user’s active issues. With this call we can get it straight away assuming the comment will not be cut short due to size limits.
Our alternative is to first find all the user’s issues and then call another endpoint to obtain all comments for each issue.

Thanks in advance.