Package graphql.relay
Interface Connection<T>
-
- All Known Implementing Classes:
DefaultConnection
@PublicApi public interface Connection<T>
This represents a connection in Relay, which is a list ofedges as well as apageInfothat describes the pagination of that list. See https://facebook.github.io/relay/graphql/connections.htm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Edge<T>>getEdges()PageInfogetPageInfo()
-