aalhour commented on PR #5967: URL: https://github.com/apache/hbase/pull/5967#issuecomment-2355118557
I looked at [GitHub's GraphQL API docs](https://docs.github.com/en/graphql/reference/input-objects#minimizecommentinput) and unfortunately it doesn't support mutations over filters. The API has the following input fields: 1. `classifier (ReportedContentClassifiers!)` 2. `clientMutationId (String)` 3. `subjectId (ID!)` The `!` character in the type definition denotes a required field, which means you need to pass the commentID (`subjectID`) with each API call, if you want to use the API you'll have to fetch all comments and then iterate over all of them minimizing them one by one (N+1 API calls). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
