OBJECT

ProjectCardEdge

An edge in a connection.

link GraphQL Schema definition

1type ProjectCardEdge {
2
3# A cursor for use in pagination.
4cursor: String!
5
6# The item at the end of the edge.
7node: ProjectCard
8
9}