api-skeletons / doctrine-graphql
GraphQL Type Driver for Doctrine ORM
Installs: 2 291
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 2
Open Issues: 2
Requires
- php: ^8.0
- api-skeletons/doctrine-querybuilder-filter: ^2.0
- doctrine/doctrine-laminas-hydrator: ^3.2
- doctrine/orm: ^2.11
- league/event: ^3.0
- psr/container: ^1.1||^2.0
- webonyx/graphql-php: ^v15.0
Requires (Dev)
- doctrine/coding-standard: ^11.0 || ^12.0
- doctrine/dbal: ^3.1.1
- phpunit/phpunit: ^9.5
- ramsey/uuid: ^4.7
- symfony/cache: ^5.3||^6.2
- vimeo/psalm: ^5.4
- dev-main
- 8.1.3
- 8.1.2
- 8.1.1
- 8.1.0
- 8.0.0
- 7.2.2
- 7.2.1
- 7.2.0
- 7.1.5
- 7.1.4
- 7.1.3
- 7.1.2
- 7.1.1
- 7.1.0
- 7.0.5
- 7.0.4
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
- 6.2.5
- 6.2.4
- 6.2.3
- 6.2.2
- 6.2.1
- 6.2.0
- 6.1.10
- 6.1.9
- 6.1.8
- 6.1.7
- 6.1.6
- 6.1.5
- 6.1.4
- 6.1.3
- 6.1.2
- 6.1.1
- 6.1.0
- 6.0.7
- 6.0.6
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.1.1
- 5.1.0
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.1
- 4.0.0
- 3.0.1
- 3.0.0
- dev-dependabot/github_actions/dot-github/workflows/actions/download-artifact-4.1.7
This package is auto-updated.
Last update: 2024-09-03 21:31:24 UTC
README
This project has been retired in favor of API-Skeletons/doctrine-orm-graphql
See the upgrade guide if you're a user of the 8.x branch.
All the original documentation can be found below.
This library provides a framework agnostic GraphQL driver for Doctrine ORM for use with webonyx/graphql-php. Configuration is available from zero to verbose. Multiple configurations for multiple drivers are supported.
Detailed documentation is available.
For an example application post to https://graphql.lcdb.org/
Library Highlights
- Uses PHP 8 Attributes
- Multiple independent configurations
- Support for all default Doctrine Types & custom types
- Support for the GraphQL Complete Connection Model
- Supports filtering of sub-collections
- Events for modifying queries and entity types
- Uses the Doctrine Laminas Hydrator for extraction
- Conforms to the Doctrine Coding Standard
Installation
Run the following to install this library using Composer:
composer require api-skeletons/doctrine-graphql
Entity Relationship Diagram
This Entity Relationship Diagram, created with Skipper, is used for the query examples below and testing this library.
Quick Start
Add attributes to your Doctrine entities
use ApiSkeletons\Doctrine\GraphQL\Attribute as GraphQL; #[GraphQL\Entity] class Artist { #[GraphQL\Field] public $id; #[GraphQL\Field] public $name; #[GraphQL\Association] public $performances; } #[GraphQL\Entity] class Performance { #[GraphQL\Field] public $id; #[GraphQL\Field] public $venue; /** * Not all fields need attributes. * Only add attribues to fields you want available in GraphQL */ public $city; }
Create the driver and GraphQL schema
use ApiSkeletons\Doctrine\GraphQL\Driver; use Doctrine\ORM\EntityManager; use GraphQL\Type\Definition\ObjectType; use GraphQL\Type\Definition\Type; use GraphQL\Type\Schema; $driver = new Driver($entityManager); $schema = new Schema([ 'query' => new ObjectType([ 'name' => 'query', 'fields' => [ 'artists' => [ 'type' => $driver->connection($driver->type(Artist::class)), 'args' => [ 'filter' => $driver->filter(Artist::class), 'pagination' => $driver->pagination(), ], 'resolve' => $driver->resolve(Artist::class), ], ], ]), 'mutation' => new ObjectType([ 'name' => 'mutation', 'fields' => [ 'artistUpdateName' => [ 'type' => $driver->type(Artist::class), 'args' => [ 'id' => Type::nonNull(Type::id()), 'input' => Type::nonNull($driver->input(Artist::class, ['name'])), ], 'resolve' => function ($root, $args) use ($driver): Artist { $artist = $driver->get(EntityManager::class) ->getRepository(Artist::class) ->find($args['id']); $artist->setName($args['input']['name']); $driver->get(EntityManager::class)->flush(); return $artist; }, ], ], ]), ]);
Run GraphQL queries
use GraphQL\GraphQL; $query = '{ artists { edges { node { id name performances { edges { node { venue } } } } } } }'; $result = GraphQL::executeQuery( schema: $schema, source: $query, variableValues: null, operationName: null ); $output = $result->toArray();
Run GraphQL mutations
use GraphQL\GraphQL; $query = 'mutation ArtistUpdateName($id: Int!, $name: String!) { artistUpdateName(id: $id, input: { name: $name }) { id name } }'; $result = GraphQL::executeQuery( schema: $schema, source: $query, variableValues: ['id' => 1, 'name' => 'newName'], operationName: 'ArtistUpdateName' ); $output = $result->toArray();
Filtering
For every attributed field and every attributed association, filters are available in your GraphQL query.
Example
{ artists ( filter: { name: { contains: "dead" } } ) { edges { node { id name performances ( filter: { venue: { eq: "The Fillmore" } } ) { edges { node { venue } } } } } } }
Each field has their own set of filters. Most fields have the following:
- eq - Equals.
- neq - Not equals.
- lt - Less than.
- lte - Less than or equal to.
- gt - Greater than.
- gte - Greater than or equal to.
- isnull - Is null. If value is true, the field must be null. If value is false, the field must not be null.
- between - Between. Identical to using gte & lte on the same field. Give values as
low, high
. - in - Exists within a list of comma-delimited values.
- notin - Does not exist within a list of comma-delimited values.
- startwith - A like query with a wildcard on the right side of the value.
- endswith - A like query with a wildcard on the left side of the value.
- contains - A like query.
Events
Filter Query Builder
You may modify the query builder used to resolve any connection by subscribing to events.
Each connection may have a unique event name. Entity::class . '.filterQueryBuilder'
is recommended.
Pass as the second parameter to $driver->resolve()
.
use ApiSkeletons\Doctrine\GraphQL\Event\FilterQueryBuilder; use App\ORM\Entity\Artist; use GraphQL\Type\Definition\ObjectType; use GraphQL\Type\Schema; use League\Event\EventDispatcher; $schema = new Schema([ 'query' => new ObjectType([ 'name' => 'query', 'fields' => [ 'artists' => [ 'type' => $driver->connection($driver->type(Artist::class)), 'args' => [ 'filter' => $driver->filter(Artist::class), 'pagination' => $driver->pagination(), ], 'resolve' => $driver->resolve(Artist::class, Artist::class . '.filterQueryBuilder'), ], ], ]), ]); $driver->get(EventDispatcher::class)->subscribeTo(Artist::class . '.filterQueryBuilder', function(FilterQueryBuilder $event) { $event->getQueryBuilder() ->innerJoin('entity.user', 'user') ->andWhere($event->getQueryBuilder()->expr()->eq('user.id', ':userId')) ->setParameter('userId', currentUser()->getId()) ; } );
Filter Association Criteria
You may modify the criteria object used to filter associations. For instance, if you use soft deletes then you would want to filter out deleted rows from an association.
use ApiSkeletons\Doctrine\GraphQL\Attribute as GraphQL; use ApiSkeletons\Doctrine\GraphQL\Event\FilterCriteria; use App\ORM\Entity\Artist; use League\Event\EventDispatcher; #[GraphQL\Entity] class Artist { #[GraphQL\Field] public $id; #[GraphQL\Field] public $name; #[GraphQL\Association(filterCriteriaEventName: self::class . '.performances.filterCriteria')] public $performances; } // Add a listener to your driver $driver->get(EventDispatcher::class)->subscribeTo( Artist::class . '.performances.filterCriteria', function (FilterCriteria $event): void { $event->getCriteria()->andWhere( $event->getCriteria()->expr()->eq('isDeleted', false) ); }, );
Entity ObjectType Definition
You may modify the array used to define an entity type before it is created. This can be used for generated data and the like. You must attach to events before defining your GraphQL schema. See the detailed documentation for details.
use ApiSkeletons\Doctrine\GraphQL\Driver; use ApiSkeletons\Doctrine\GraphQL\Event\EntityDefinition; use App\ORM\Entity\Artist; use GraphQL\Type\Definition\ResolveInfo; use GraphQL\Type\Definition\Type; use League\Event\EventDispatcher; $driver = new Driver($entityManager); $driver->get(EventDispatcher::class)->subscribeTo( Artist::class . '.definition', static function (EntityDefinition $event): void { $definition = $event->getDefinition(); // In order to modify the fields you must resovle the closure $fields = $definition['fields'](); // Add a custom field to show the name without a prefix of 'The' $fields['nameUnprefix'] = [ 'type' => Type::string(), 'description' => 'A computed dynamically added field', 'resolve' => static function ($objectValue, array $args, $context, ResolveInfo $info): mixed { return trim(str_replace('The', '', $objectValue->getName())); }, ]; $definition['fields'] = $fields; } );
Further Reading
Detailed documentation is available.