bdunogier / ezplatform-graphql-bundle

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

Relay connections support #11

Closed bdunogier closed 5 years ago

bdunogier commented 6 years ago

Issues: #21

Changes lists of content items to Connections:

{
  content {
    blogPosts(sortBy: DatePublished, last: 5) {
      pageInfo {
        hasNextPage
      }
      edges {
        cursor
        node {
          title
        }
      }
    }
  }
}

Allows to implement pagination, as well as individual items refetching.

TODO

bdunogier commented 5 years ago

Moved to https://github.com/ezsystems/ezplatform-graphql/pull/6.