From cf3e84721f37500d6780ba5c310dfb2c1c8144c6 Mon Sep 17 00:00:00 2001 From: Marcelo Date: Thu, 13 Aug 2020 11:36:30 -0300 Subject: [PATCH] Update RESTv1.php Get the batch informations to use [moreResults] => NO_MORE_RESULTS and an count(entityResults) --- src/GDS/Gateway/RESTv1.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/GDS/Gateway/RESTv1.php b/src/GDS/Gateway/RESTv1.php index cc3521b..0362f97 100644 --- a/src/GDS/Gateway/RESTv1.php +++ b/src/GDS/Gateway/RESTv1.php @@ -453,6 +453,20 @@ public function getEndCursor() return null; } + + /** + * Get the batch informations from the last response + * + * @return mixed + */ + public function getBatch() + { + if(isset($this->obj_last_response->batch)) { + return $this->obj_last_response->batch; + } + return null; + } + /** * Create a mapper that's right for this Gateway *