com.introproventures.graphql.jpa.query.schema.impl.PageArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-jpa-query-schema Show documentation
Show all versions of graphql-jpa-query-schema Show documentation
Provides GraphQL JPA Query Schema Generation and Execution Support
The newest version!
package com.introproventures.graphql.jpa.query.schema.impl;
public final class PageArgument {
private int start;
private int limit;
public PageArgument(Integer start, Integer limit) {
this.start = start;
this.limit = limit;
}
public int getStart() {
return start;
}
public int getLimit() {
return limit;
}
public int getOffset() {
return (getStart() - 1) * getLimit();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy