module Github::Result

def first_page

or there are no pages at all in the result.
no first page - either because you are already on the first page
Retrives the result of the first page. Returns nil if there is
def first_page
  first_request = page_iterator.first
  self.instance_eval { @env = first_request.env } if first_request
  self.body
end