1 个仓库
The end-to-end process of parsing queries, validating them against a schema, and resolving data to return a structured response.
Distinct from GraphQL Operation Validations: None of the candidates cover the holistic processing lifecycle; they focus on validation, routing, or request modification.
Explore 1 awesome GitHub repository matching web development · GraphQL Operation Processing. Refine with filters or upvote what's useful.
该项目是 GraphQL 规范的 PHP 实现。它提供了一套用于构建处理查询和变更(mutations)服务器的工具,包括模式解析器、用于评估操作的执行引擎,以及用于操作抽象语法树(AST)的工具包。 该库的特色在于其专门的 AST 工具包,允许对 GraphQL 抽象语法树进行检查、修改和打印。它还包含一种延迟字段解析机制,以实现异步数据获取并防止阻塞主执行线程。 该实现涵盖了广泛的功能领域,包括通过模式定义语言(SDL)进行的模式管理、用于安全的基于规则的文档验证,以及确保符合规范响应的格式化错误处理。
Handles the end-to-end lifecycle of parsing, validating, and resolving GraphQL operations.