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

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

package org.kohsuke.github;

import com.fasterxml.jackson.annotation.JsonIgnore;

public class GraphQLSearchVariables {
    public String login;
    public int first;
    public String after;

    @JsonIgnore
    public GraphQLSearchVariables next(GraphQLPageInfo pageInfo) {
        GraphQLSearchVariables nextVariables = new GraphQLSearchVariables();
        nextVariables.login = this.login;
        nextVariables.first = this.first;
        nextVariables.after = pageInfo.endCursor;

        return nextVariables;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy