Uses of Interface
graphql.relay.ConnectionCursor
-
Packages that use ConnectionCursor Package Description graphql.relay -
-
Uses of ConnectionCursor in graphql.relay
Classes in graphql.relay that implement ConnectionCursor Modifier and Type Class Description class
DefaultConnectionCursor
Fields in graphql.relay declared as ConnectionCursor Modifier and Type Field Description private ConnectionCursor
DefaultEdge. cursor
private ConnectionCursor
DefaultPageInfo. endCursor
private ConnectionCursor
DefaultPageInfo. startCursor
Methods in graphql.relay that return ConnectionCursor Modifier and Type Method Description ConnectionCursor
SimpleListConnection. cursorForObjectInConnection(T object)
find the object's cursor, or null if the object is not in this connection.ConnectionCursor
DefaultEdge. getCursor()
ConnectionCursor
Edge. getCursor()
ConnectionCursor
DefaultPageInfo. getEndCursor()
ConnectionCursor
PageInfo. getEndCursor()
ConnectionCursor
DefaultPageInfo. getStartCursor()
ConnectionCursor
PageInfo. getStartCursor()
Constructors in graphql.relay with parameters of type ConnectionCursor Constructor Description DefaultEdge(T node, ConnectionCursor cursor)
DefaultPageInfo(ConnectionCursor startCursor, ConnectionCursor endCursor, boolean hasPreviousPage, boolean hasNextPage)
-