org.kohsuke.github.GraphQLEdge Maven / Gradle / Ivy
package org.kohsuke.github;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Represents the result of a GraphQL edge.
*
* @param the type parameter
* @author Hiroyuki Wada
*/
public class GraphQLEdge {
@JsonProperty("cursor")
public String cursor;
@JsonProperty("node")
public T node;
}