nahid / jsonq

A PHP query builder for JSON
Creative Commons Zero v1.0 Universal
870 stars 105 forks source link

How to use a previous set as a new set to query over those results? #52

Closed dimitrihilverda closed 4 years ago

dimitrihilverda commented 5 years ago

I like to use a pre queried result set to do another query over, I do not get it to work.

if I did this: $jsonQO->Where('Position.Status', '=', $value); $jsonQO->Where('Position.Hours', '=', $othervalue); $jsonQO->Where(Position.Location, '=', $jetAnotherValue); $jsonQO->from('vacancy')->get();

Now I want to do another where on the results I tryed : $jsonQO = $jsonQO->from('vacancy')->get(); $jsonQO->where('Position.JobTitle', 'contains', $value); $jsonQO->from('vacancy')->get();

but that did not work...

nahid commented 4 years ago

use $jsonQO->reset()