All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kohsuke.github.GraphQLConnection Maven / Gradle / Ivy

package org.kohsuke.github;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Represents the result of a GraphQL connection.
 *
 * @param  the type parameter
 * @author Hiroyuki Wada
 */
public class GraphQLConnection {
    @JsonProperty("edges")
    public T[] edges;

    @JsonProperty("pageInfo")
    public GraphQLPageInfo pageInfo;

    @JsonProperty("totalCount")
    public int totalCount;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy