ResultLimitDto.java

package no.nav.nom.graphql.model;

@javax.annotation.processing.Generated(
    value = "com.kobylynskyi.graphql.codegen.GraphQLCodegen",
    date = "2026-03-30T10:02:45+0000"
)
public enum ResultLimitDto {

    LIMIT_10("LIMIT_10"),
    LIMIT_20("LIMIT_20"),
    LIMIT_30("LIMIT_30"),
    LIMIT_50("LIMIT_50"),
    LIMIT_100("LIMIT_100"),
    LIMIT_200("LIMIT_200"),
    UNLIMITED("UNLIMITED");

    private final String graphqlName;

    private ResultLimitDto(String graphqlName) {
        this.graphqlName = graphqlName;
    }

    @Override
    public String toString() {
        return this.graphqlName;
    }

}