Actions
Bug #36509
closedGraphQL: Incorrect totalCount when querying with first parameter
Description
The totalCount
value becomes incorrect when first
parameter is included in the query.
query { hosts { totalCount } }
totalCount = 84
query { hosts(first: 10) { totalCount } }
totalCount = 10
Actions