| Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | no | RFC? | no | Version/Branch | dev-master Paginator $count callback does work with promise when using forward, but not backward. In case of backward, you get: `Object of class GraphQL\\Executor\\Promise\\Promise could not be converted to int` Example code: ```php $paginator = new Paginator(function($offset, $limit) { return $this->someLoader->load(new SomeKey($criteria, $offset, $limit))->then(function(array $ids) { return $this->someOtherLoader->loadMany($ids); }); }); $paginator->auto($args, function() { return $this->someLoader->load(new SomeKey($criteria))->then(FnUtils::arrayLikeCount()); }); ```