bdunogier / ezplatform-graphql-bundle

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

Exposed richtext embeds #63

Open bdunogier opened 6 years ago

bdunogier commented 6 years ago

Issue #62

{
  content {
    blogPost(id: 240) {
      body {
        html5
        embeds {
          _info { id }
          ... on PlaceContent {
            name
            location { address }
          }
        }
      }
    }
  }
}

TODO