Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. .github/actions/notify-translations/app/main.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 Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top