Connection<TDto>
Namespace: Meshmakers.Octo.Communication.Contracts.GraphQL
Represents a connection object.
public class Connection<TDto>
Type Parameters
TDto
Inheritance Object → Connection<TDto>
Properties
Edges
Returns the edges.
public ICollection<TDto> Edges { get; set; }
Property Value
Items
Returns the items.
public ICollection<TDto> Items { get; set; }
Property Value
PageInfo
Returns the page info.
public PageInfo PageInfo { get; set; }
Property Value
TotalCount
Returns the total count.
public int TotalCount { get; set; }
Property Value
Constructors
Connection()
public Connection()