Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UpdateDiscussionComment (0.39 sec)

  1. scripts/notify_translations.py

    """
    
    update_comment_mutation = """
    mutation Q($comment_id: ID!, $body: String!) {
      updateDiscussionComment(input: {commentId: $comment_id, body: $body}) {
        comment {
          id
          url
          body
        }
      }
    }
    """
    
    
    class Comment(BaseModel):
        id: str
        url: str
        body: str
    
    
    class UpdateDiscussionComment(BaseModel):
        comment: Comment
    
    
    class UpdateCommentData(BaseModel):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top