PRAW has a method which can return the most recent comments within a subreddit:
for comment in reddit.subreddit("test").comments(limit=25):
print(comment.author)I can't seem to find any way to do this with Devvit. getComments() returns from a specific post ID and then there is getCommentsByUser() but nothing to get comments by subreddit. Am I missing something?