Project

General

Profile

Actions

Bug #36509

closed

GraphQL: Incorrect totalCount when querying with first parameter

Added by Kamil Szubrycht over 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Normal
Category:
API
Target version:
-
Difficulty:
Triaged:
Yes
Fixed in Releases:
Found in Releases:

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

Also available in: Atom PDF