api-skeletons/zf-doctrine-graphql
最新稳定版本:3.0.0
Composer 安装命令:
composer require api-skeletons/zf-doctrine-graphql
包简介
GraphQL for Doctrine using Hydrators
README 文档
README
This library uses Doctrine native traversal of related objects to provide full GraphQL querying of entities and all related fields and entities. Entity metadata is introspected and is therefore Doctrine data driver agnostic. Data is collected with hydrators thereby allowing full control over each field using hydrator filters, strategies and naming strategies. Multiple object managers are supported. Multiple hydrator configurations are supported. Works with GraphiQL.
A range of filters are provided to filter collections at any location in the query.
Doctrine provides easy taversal of your database. Consider the following imaginary query:
$entity[where id = 5] ->getRelation() ->getField1() ->getField2() ->getManyToOne([where name like '%dev%']) ->getName() ->getField3() ->getOtherRelation() ->getField4() ->getField5()
And see it realized in GraphQL with fine grained control over each field via hydrators:
{ entity (filter: { id: 5 }) { relation { field1 field2 manyToOne (filter: { name_contains: 'dev' }) { name field3 } } otherRelation { field4 field5 } } }
Read the Documentation
统计信息
- 总下载量: 14.22k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 37
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-05-31