PHPackages                             se7enxweb/ezplatform-graphql - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. se7enxweb/ezplatform-graphql

ActiveEzplatform-bundle[API Development](/categories/api)

se7enxweb/ezplatform-graphql
============================

GraphQL server for the eZ Platform Open Source CMS Repository.

v2.3.18(7mo ago)2355GPL-2.0-or-laterPHPPHP ^7.3 || ^8.0

Since Nov 14Pushed 2mo agoCompare

[ Source](https://github.com/se7enxweb/ezplatform-graphql)[ Packagist](https://packagist.org/packages/se7enxweb/ezplatform-graphql)[ RSS](/packages/se7enxweb-ezplatform-graphql/feed)WikiDiscussions 1.0 Synced 1mo ago

READMEChangelog (2)Dependencies (29)Versions (104)Used By (5)

eZ Platform GraphQL Bundle
==========================

[](#ez-platform-graphql-bundle)

This Symfony bundle adds a GraphQL server to eZ Platform, the Open Source CMS.

The schema: `/graphql`
----------------------

[](#the-schema-graphql)

`https:///graphql`

It first and foremost exposes the domain modelled using the repository, based on content types groups, content types and fields definitions. Use it to implement apps or sites dedicated to a given repository structure.

Example: an eZ Platform site.

**Warning: this feature requires specific setup steps. See the [Domain Schema documentation](doc/domain_schema.md).**

In addition to the schema based on the content model, the repository's Public API is also available under `_repository`. It exposes content, location, field, url alias... It is recommended for admin like applications, not limited to a particular repository.

Example: an eZ Platform Admin UI extension.

[Repository schema documentation](doc/repository_schema.md)

Installation
------------

[](#installation)

Install the package and its dependencies using composer:

```
composer require ezsystems/ezplatform-graphql

```

Add the bundles to `app/AppKernel.php` (*pay attention to the order*, it is important):

```
$bundles = array(
    // ...
    new EzSystems\EzPlatformGraphQL\EzSystemsEzPlatformGraphQLBundle(),
    new Overblog\GraphQLBundle\OverblogGraphQLBundle(),
    new AppBundle\AppBundle(),
);
```

Add the GraphQL routing configuration to `app/config/routing.yml`:

```
overblog_graphql:
    resource: "@OverblogGraphQLBundle/Resources/config/routing/graphql.yml"

overblog_graphql_endpoint:
    path: /graphql
    defaults:
        _controller: Overblog\GraphQLBundle\Controller\GraphController::endpointAction
        _format: "json"
```

### Generate your schema

[](#generate-your-schema)

Run the command that generates the GraphQL schema:

```
php bin/console ezplatform:graphql:generate-schema
php bin/console cache:clear

```

It will generate a lot of yaml files in `app/config/graphql/ezplatform`, based on your content types.

### GraphiQL

[](#graphiql)

The graphical graphQL client, GraphiQL, must be installed separately if you want to use it. As a developer, you probably want to.

```
composer require --dev overblog/graphiql-bundle

```

Add `OverblogGraphiQLBundle` to the `dev` bundles:

```
case 'dev':
    // ...
    $bundles[] = new Overblog\GraphiQLBundle\OverblogGraphiQLBundle();
```

Add the GraphiQL route to `app/config/routing_dev.yml`:

```
overblog_graphql_graphiql:
    resource: "@OverblogGraphiQLBundle/Resources/config/routing.xml"
```

Open `http:///graphiql`.

###  Health Score

50

—

FairBetter than 96% of packages

Maintenance75

Regular maintenance activity

Popularity11

Limited adoption so far

Community23

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor3

3 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~36 days

Recently: every ~232 days

Total

75

Last Release

78d ago

Major Versions

v1.0.10 → v2.3.52022-01-18

v1.0.11 → v2.3.82022-03-21

v1.0.12 → v2.3.102022-06-20

v1.0.13 → v2.3.122022-11-10

v1.0.14 → v2.3.182025-09-28

PHP version history (2 changes)v2.0.0-beta1PHP ^7.3

v2.3.5PHP ^7.3 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/d2a5049c5b1e7a22c301a2472d09281be35f717da316873861c1a8ae785ada7a?d=identicon)[7x](/maintainers/7x)

---

Top Contributors

[![bdunogier](https://avatars.githubusercontent.com/u/235928?v=4)](https://github.com/bdunogier "bdunogier (30 commits)")[![adamwojs](https://avatars.githubusercontent.com/u/211967?v=4)](https://github.com/adamwojs "adamwojs (7 commits)")[![webhdx](https://avatars.githubusercontent.com/u/10212760?v=4)](https://github.com/webhdx "webhdx (7 commits)")[![alongosz](https://avatars.githubusercontent.com/u/7099219?v=4)](https://github.com/alongosz "alongosz (4 commits)")[![ibexa-yuna](https://avatars.githubusercontent.com/u/67897517?v=4)](https://github.com/ibexa-yuna "ibexa-yuna (4 commits)")[![lserwatka](https://avatars.githubusercontent.com/u/130489?v=4)](https://github.com/lserwatka "lserwatka (4 commits)")[![se7enxweb](https://avatars.githubusercontent.com/u/51429274?v=4)](https://github.com/se7enxweb "se7enxweb (4 commits)")[![mnocon](https://avatars.githubusercontent.com/u/10993858?v=4)](https://github.com/mnocon "mnocon (3 commits)")[![barw4](https://avatars.githubusercontent.com/u/22300504?v=4)](https://github.com/barw4 "barw4 (3 commits)")[![Nattfarinn](https://avatars.githubusercontent.com/u/5822569?v=4)](https://github.com/Nattfarinn "Nattfarinn (3 commits)")[![glye](https://avatars.githubusercontent.com/u/289744?v=4)](https://github.com/glye "glye (2 commits)")[![crevillo](https://avatars.githubusercontent.com/u/306215?v=4)](https://github.com/crevillo "crevillo (2 commits)")[![dpobel](https://avatars.githubusercontent.com/u/305563?v=4)](https://github.com/dpobel "dpobel (2 commits)")[![jevillard](https://avatars.githubusercontent.com/u/3796755?v=4)](https://github.com/jevillard "jevillard (1 commits)")[![janit](https://avatars.githubusercontent.com/u/198965?v=4)](https://github.com/janit "janit (1 commits)")[![SylvainGuittard](https://avatars.githubusercontent.com/u/1157233?v=4)](https://github.com/SylvainGuittard "SylvainGuittard (1 commits)")[![masacc](https://avatars.githubusercontent.com/u/4290650?v=4)](https://github.com/masacc "masacc (1 commits)")[![ViniTou](https://avatars.githubusercontent.com/u/19517274?v=4)](https://github.com/ViniTou "ViniTou (1 commits)")

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/se7enxweb-ezplatform-graphql/health.svg)

```
[![Health](https://phpackages.com/badges/se7enxweb-ezplatform-graphql/health.svg)](https://phpackages.com/packages/se7enxweb-ezplatform-graphql)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[simplesamlphp/simplesamlphp

A PHP implementation of a SAML 2.0 service provider and identity provider.

1.1k12.4M193](/packages/simplesamlphp-simplesamlphp)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

19562.3M1.3k](/packages/drupal-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
