fnash / graphql-qb
A php GraphQL Query Builder. Nice API. Readable queries.
Installs: 55 331
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 9
Open Issues: 1
Requires
- php: >7
- webonyx/graphql-php: ^0.11|^0.12|^0.13|^14.0
Requires (Dev)
- phpunit/phpunit: ^6.4
- symfony/var-dumper: *
This package is auto-updated.
Last update: 2025-03-05 08:00:37 UTC
README
graphql-qb
A php GraphQL Query Builder. Nice API. Readable queries. Examples in Unit Tests.
Includes:
- Query / Mutation / Fragment
- Sorted Fields
- Custom Operation name
- A predictable operation name is generated if you don't specify one and add variables
- Add variables
- Add arguments
- Directives (Include / Skip)
- Sub query
TODO:
- Arguments in sub queries
<?php include_once 'vendor/autoload.php'; use Fnash\GraphQL\Query; $query = Query::create('article') ->variables([ '$withTags' => 'Boolean = false', ]) ->fields([ 'id', 'title', 'body', 'myLanguageAlias' => 'language', 'tags' => Query::create()->fields([ 'id', 'tagLabel' => 'label', 'language', 'taxonomy' => Query::create()->fields([ 'id', 'label', 'language' ]), ]) ]) ->includeIf([ 'tags' => '$withTags' ]) ; echo $query;
query query_d084b5fa08a495bb76e87b51cb5e2b33fc87039a($withTags: Boolean = false) { article { body id myLanguageAlias: language tags @include(if: $withTags) { id language tagLabel: label taxonomy { id label language } } title } }