blob: 33f34d1d9b048b6414046918f253e1c9ba3e5189 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.services.graphql.common.api.pagination;
import java.util.ArrayList;
import java.util.List;
/**
* A Relay connection for the GraphQL API.
*
* @author sbegaudeau
*/
public class SiriusGraphQLConnection {
/**
* The total count.
*/
private int totalCount;
/**
* The edges.
*/
private List<SiriusGraphQLEdge> edges = new ArrayList<>();
/**
* The page info.
*/
private SiriusGraphQLPageInfo pageInfo;
/**
* The constructor.
*
* @param totalCount
* The total count
* @param edges
* The edges
* @param pageInfo
* The page info
*/
public SiriusGraphQLConnection(int totalCount, List<SiriusGraphQLEdge> edges, SiriusGraphQLPageInfo pageInfo) {
this.totalCount = totalCount;
this.edges = edges;
this.pageInfo = pageInfo;
}
/**
* Return the totalCount.
*
* @return the totalCount
*/
public int getTotalCount() {
return this.totalCount;
}
/**
* Return the edges.
*
* @return the edges
*/
public List<SiriusGraphQLEdge> getEdges() {
return this.edges;
}
/**
* Return the pageInfo.
*
* @return the pageInfo
*/
public SiriusGraphQLPageInfo getPageInfo() {
return this.pageInfo;
}
}