Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Input (0.18 sec)

  1. .github/actions/notify-translations/app/main.py

    add_comment_mutation = """
    mutation Q($discussion_id: ID!, $body: String!) {
      addDiscussionComment(input: {discussionId: $discussion_id, body: $body}) {
        comment {
          id
          url
          body
        }
      }
    }
    """
    
    update_comment_mutation = """
    mutation Q($comment_id: ID!, $body: String!) {
      updateDiscussionComment(input: {commentId: $comment_id, body: $body}) {
        comment {
          id
          url
          body
        }
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Sep 27 23:01:46 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. .github/actions/people/app/main.py

    
    class Settings(BaseSettings):
        input_token: SecretStr
        github_repository: str
        httpx_timeout: int = 30
    
    
    def get_graphql_response(
        *,
        settings: Settings,
        query: str,
        after: Union[str, None] = None,
        category_id: Union[str, None] = None,
    ) -> Dict[str, Any]:
        headers = {"Authorization": f"token {settings.input_token.get_secret_value()}"}
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
Back to top