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

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

package org.kohsuke.github;

import com.fasterxml.jackson.annotation.JsonIgnore;

public class GraphQLTeamSearchVariables extends GraphQLSearchVariables {
    public String teamName;

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

        return nextVariables;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy