Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到了 Relay 的一些示例,但我将 graphQL 与 Apollo 一起使用,但找不到任何示例或文档如何通过突变处理 GraphQL 中的文件上传?
Apollo 客户端目前不支持文件上传。就像身份验证一样,在 GraphQL 之外处理文件上传可能会更好(至少目前是这样)。
这就是为什么我建议通过单独的端点上传文件(即 /uploads 快速路由,或直接到 S3 等),然后在上传成功完成后使用文件信息调用突变。