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

graphql.relay.Edge Maven / Gradle / Ivy

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


public class Edge {

    public Edge(Object node, ConnectionCursor cursor) {
        this.node = node;
        this.cursor = cursor;
    }

    Object node;
    ConnectionCursor cursor;

    public Object getNode() {
        return node;
    }

    public void setNode(Object node) {
        this.node = node;
    }

    public ConnectionCursor getCursor() {
        return cursor;
    }

    public void setCursor(ConnectionCursor cursor) {
        this.cursor = cursor;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy