Michael Calcinai
Michael Calcinai
@matthewknill this suggests it can't be done via the API, closing for now.
@matthewknill OK, maybe it needs to be a parameter rather than a where? i.e. using `->addParameter()` to the request
@matthewknill have a look inside the `$xero->load()` method, that's how the request is actually constructed.
Yeah–from what I can see it should be the interface... That change will need to be made be [over here](https://github.com/calcinai/oauth2-xero)
@ljenningsVS Great question. I think we're going to have to drop 5.5, it was there (selfishly) for a legacy GAE project.
@cproetti I think unless we get it added to the docs, it's probably risky to start using it...
@paprikati What do you propose happens if null is passed? For BC, all I can think is throwing a `NotFoundException`? For `loadByGuids`, that can just return an empty array. You...
@paprikati You need to fork the repository and then (if you want) create a branch in your own fork. You can then make a PR from your fork to upstream...
@glennschmidt exactly. I think this should be fine. My only thought is about consistency–this leaves specific handling/initialisation in some models, and also leaves the uninitialised indices for non-collection properties. Thoughts...
Hi @arunmanivel is there a reason you're manually constructing this request rather than using the query builder (like in the readme?) ```php $xero->load(BankStatement::class) ->where('bankAccountID', $accountID) ->where('fromDate', $fromDate) ->where('toDate', $toDate) ->execute();...