import { Connection as RelayConnection } from 'graphql-relay'; export interface Connection extends RelayConnection { readonly count: number; readonly totalCount: number; readonly nodes: T[] | null; }