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 ofedge
s as well as apageInfo
that 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()
PageInfo
getPageInfo()
-