@@ -34,7 +34,7 @@  | 
                                                    ||
| 34 | 34 |      { | 
                                                        
| 35 | 35 | $query = VehiclesQuery::createFromArgument($argument);  | 
                                                        
| 36 | 36 | |
| 37 | -        $paginator = new Paginator(function ($offset, $limit) use ($query) { | 
                                                        |
| 37 | +        $paginator = new Paginator(function($offset, $limit) use ($query) { | 
                                                        |
| 38 | 38 |              if ($offset !== null && $limit !== null) { | 
                                                        
| 39 | 39 | $query  | 
                                                        
| 40 | 40 | ->setLimit($limit)  | 
                                                        
@@ -157,9 +157,9 @@  | 
                                                    ||
| 157 | 157 | public static function createFromArgument(Argument $argument): VehiclesQuery  | 
                                                        
| 158 | 158 |      { | 
                                                        
| 159 | 159 | return new self(  | 
                                                        
| 160 | -            ($argument->offsetGet('owner'))? AppGlobalId::getIdFromGlobalId($argument->offsetGet('owner')) : null, | 
                                                        |
| 161 | -            ($argument->offsetGet('id'))? AppGlobalId::getIdFromGlobalId($argument->offsetGet('id')) : null, | 
                                                        |
| 162 | -            ($argument->offsetGet('after'))? AppGlobalId::getIdFromGlobalId($argument->offsetGet('after')) : null | 
                                                        |
| 160 | +            ($argument->offsetGet('owner')) ? AppGlobalId::getIdFromGlobalId($argument->offsetGet('owner')) : null, | 
                                                        |
| 161 | +            ($argument->offsetGet('id')) ? AppGlobalId::getIdFromGlobalId($argument->offsetGet('id')) : null, | 
                                                        |
| 162 | +            ($argument->offsetGet('after')) ? AppGlobalId::getIdFromGlobalId($argument->offsetGet('after')) : null | 
                                                        |
| 163 | 163 | );  | 
                                                        
| 164 | 164 | }  | 
                                                        
| 165 | 165 | }  |