Skip to main content

Connection<TDto>

Namespace: Meshmakers.Octo.Communication.Contracts.GraphQL

Represents a connection object.

public class Connection<TDto>

Type Parameters

TDto

Inheritance ObjectConnection<TDto>

Properties

Edges

Returns the edges.

public ICollection<TDto> Edges { get; set; }

Property Value

ICollection<TDto>

Items

Returns the items.

public ICollection<TDto> Items { get; set; }

Property Value

ICollection<TDto>

PageInfo

Returns the page info.

public PageInfo PageInfo { get; set; }

Property Value

PageInfo

TotalCount

Returns the total count.

public int TotalCount { get; set; }

Property Value

Int32

Constructors

Connection()

public Connection()