commentedByMe()
Search for issues that the current user has commented on it.
Examples
issue in commentedByMe()
finds the issues that the current user has commented on.
commentedByMeAfter()
Search for issues that the current user has commented on it in a specific time range.
Examples
issue in commentedByMeAfter("-3d")
finds issues with comments from the current user within dates from the number of days you specify to the present.
commentedByMeBefore()
Search for issues that any user commented on before the given day.
Examples
issue in commentedByMeBefore("-3w")
finds issues with comments from the current user before 3 week.
commentedByUser()
Search for issues that any user has a comment on it.
Examples
issue in commentedByUser("username")
commentedByUserAfter()
Search for issues that the current user has commented on it in a specific time range.
Examples
issue in commentedByUserAfter("username", "-5d")
finds issues with comments from the user within dates from the number of days you specify to the present.
commentedByUserBefore()
Search for issues that any user commented on before the given day.
Examples
issue in commentedByUserBefore("username", "-2d")
finds issues with comments from the user before 2 days.