Skip to main content
In previous versions of nestjs-query the connection type was shared between all instances which caused the totalCount field to not always be exposed. In v0.15.x all instances of a connection are uniquely named. For example, suppose the following DTOS.
todo-item.dto.ts
In previous versions the generated graphql would have been
In the latest version the relation gets its own connection type.
Edit this page