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

graphql.relay.Connection Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.relay;


import java.util.ArrayList;
import java.util.List;

public class Connection {
    private List edges = new ArrayList();

    private PageInfo pageInfo;

    public List getEdges() {
        return edges;
    }

    public void setEdges(List edges) {
        this.edges = edges;
    }

    public PageInfo getPageInfo() {
        return pageInfo;
    }

    public void setPageInfo(PageInfo pageInfo) {
        this.pageInfo = pageInfo;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy