Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for GraphQL (0.26 sec)

  1. docs/zh/docs/tutorial/first-steps.md

    以及更少见的:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    /// tip
    
    您可以随意使用任何一个操作(HTTP方法)。
    
    **FastAPI** 没有强制要求操作有任何特定的含义。
    
    此处提供的信息仅作为指导,而不是要求。
    
    比如,当使用 GraphQL 时通常你所有的动作都通过 `post` 一种方法执行。
    
    ///
    
    ### 步骤 4:定义**路径操作函数**
    
    这是我们的「**路径操作函数**」:
    
    * **路径**:是 `/`。
    * **操作**:是 `get`。
    * **函数**:是位于「装饰器」下方的函数(位于 `@app.get("/")` 下方)。
    
    ```Python hl_lines="7"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. docs/uk/docs/tutorial/first-steps.md

    **FastAPI** не нав'язує жодного певного значення для кожного методу.
    
    Наведена тут інформація є рекомендацією, а не обов'язковою вимогою.
    
    Наприклад, під час використання GraphQL зазвичай усі дії виконуються тільки за допомогою `POST` операцій.
    
    ///
    
    ### Крок 4: визначте **функцію операції шляху (path operation function)**
    
    Ось "**функція операції шляху**":
    
    * **шлях**: це `/`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. docs/pt/docs/features.md

    * Suporte a **WebSocket**.
    * Suporte a **GraphQL**.
    * Tarefas em processo _background_.
    * Eventos na inicialização e encerramento.
    * Cliente de testes construído sobre HTTPX.
    * Respostas em **CORS**, GZip, Static Files, Streaming.
    * Suporte a **Session e Cookie**.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. docs/vi/docs/index.md

    * Bảo mật và xác thực, hỗ trợ **OAuth2**(với **JWT tokens**) và **HTTP Basic**.
    * Những kĩ thuật nâng cao hơn (nhưng tương đối dễ) để định nghĩa **JSON models lồng nhau** (cảm ơn Pydantic).
    * Tích hợp **GraphQL** với <a href="https://strawberry.rocks" class="external-link" target="_blank">Strawberry</a> và các thư viện khác.
    * Nhiều tính năng mở rộng (cảm ơn Starlette) như:
        * **WebSockets**
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. docs/zh/docs/index.md

    * 安全性和身份验证,包括通过 **JWT 令牌**和 **HTTP 基本身份认证**来支持 **OAuth2**。
    * 更进阶(但同样简单)的技巧来声明 **多层嵌套 JSON 模型** (借助 Pydantic)。
    * 许多额外功能(归功于 Starlette)比如:
        * **WebSockets**
        * **GraphQL**
        * 基于 HTTPX 和 `pytest` 的极其简单的测试
        * **CORS**
        * **Cookie Sessions**
        * ......以及更多
    
    ## 性能
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. docs/vi/docs/tutorial/first-steps.md

    **FastAPI** không bắt buộc bất kì ý nghĩa cụ thể nào.
    
    Thông tin ở đây được biểu thị như là một chỉ dẫn, không phải là một yêu cầu bắt buộc.
    
    Ví dụ, khi sử dụng GraphQL bạn thông thường thực hiện tất cả các hành động chỉ bằng việc sử dụng các toán tử `POST`.
    
    ///
    
    ### Step 4: Định nghĩa **hàm cho đường dẫn toán tử**
    
    Đây là "**hàm cho đường dẫn toán tử**":
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/first-steps.md

    You are free to use each operation (HTTP method) as you wish.
    
    **FastAPI** doesn't enforce any specific meaning.
    
    The information here is presented as a guideline, not a requirement.
    
    For example, when using GraphQL you normally perform all the actions using only `POST` operations.
    
    ///
    
    ### Step 4: define the **path operation function**
    
    This is our "**path operation function**":
    
    * **path**: is `/`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 26 11:48:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. docs/ja/docs/tutorial/first-steps.md

    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    /// tip | "豆知識"
    
    各オペレーション (HTTPメソッド)は自由に使用できます。
    
    **FastAPI**は特定の意味づけを強制しません。
    
    ここでの情報は、要件ではなくガイドラインとして提示されます。
    
    例えば、GraphQLを使用する場合、通常は`POST`オペレーションのみを使用してすべてのアクションを実行します。
    
    ///
    
    ### Step 4: **パスオペレーション**を定義
    
    以下は「**パスオペレーション関数**」です:
    
    * **パス**: は`/`です。
    * **オペレーション**: は`get`です。
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. docs/zh/docs/features.md

    * 令人惊叹的性能。它是 <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">Python 可用的最快的框架之一,和 **NodeJS** 及 **Go** 相当</a>。
    * **支持 WebSocket** 。
    * **支持 GraphQL** 。
    * 后台任务处理。
    * Startup 和 shutdown 事件。
    * 测试客户端基于 HTTPX。
    * **CORS**, GZip, 静态文件, 流响应。
    * 支持 **Session 和 Cookie** 。
    * 100% 测试覆盖率。
    * 代码库 100% 类型注释。
    
    ## Pydantic 特性
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. docs/pl/docs/index.md

    * Bardziej zaawansowane (ale równie proste) techniki deklarowania **głęboko zagnieżdżonych modeli JSON** (dzięki Pydantic).
    * Wiele dodatkowych funkcji (dzięki Starlette) takie jak:
        * **WebSockety**
        * **GraphQL**
        * bardzo proste testy bazujące na HTTPX oraz `pytest`
        * **CORS**
        * **Sesje cookie**
        * ...i więcej.
    
    ## Wydajność
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top