GraphQL Schema Binding | 接口结构绑定¶
The GraphQL binding translates the semantic knowledge graph into an API schema, allowing frontend applications and integration layers to easily query and traverse the ontology's edge network.
How it works | 转换机制¶
- Abstract Classes: Projected as GraphQL
interfacedefinitions (e.g.,interface Entity). This strongly typed relationship helps API developers query across different polymorphous objects. - Concrete Classes: Projected as standard
typedefinitions thatimplementstheir abstract parent layer. - Relations: Transformed into direct Edge property queries arrays directly on the node (e.g., querying for all consumed resources inside a Process).