bdunogier / ezplatform-graphql-bundle

GraphQL server for eZ Platform, the open source Symfony CMS.
13 stars 6 forks source link

Add support for ezmatrix fields #78

Open bdunogier opened 5 years ago

bdunogier commented 5 years ago

Once ezmatrix has been implemented into eZ Platform, add GraphQL support for it.

A matrix columns are configured at field definition level, meaning that they can be exposed in the schema. With the matrix example from the Legacy doc:

{
  content {
    product {
      components {
        name
        partNumber
        location
      }
    }
  }
}