com.introproventures.graphql.jpa.query.schema.relay.GenericPage 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.relay;
import graphql.relay.Edge;
import graphql.relay.PageInfo;
import java.util.List;
public class GenericPage implements Page {
private List> edges;
private PageInfo pageInfo;
public GenericPage(List> edges, PageInfo pageInfo) {
this.edges = edges;
this.pageInfo = pageInfo;
}
@Override
public List> getEdges() {
return edges;
}
@Override
public PageInfo getPageInfo() {
return pageInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy