orchestrate-php-client icon indicating copy to clipboard operation
orchestrate-php-client copied to clipboard

A PHP client for Orchestrate.io

Results 4 orchestrate-php-client issues
Sort by recently updated
recently updated
newest added

If I have something like: ``` $kvPatchOperationsOp = new KvPatchOperationsOperation('something', 12345); $kvPatchOperationsOp->add('completed', true); $result = $client->execute($kvPatchOperationsOp); $searchOp = new SearchOperation("something", 'completed: true, 100, 0, ''); $searchResult = $client->execute($searchOp); $count =...

More of a feature request but having the append feature built in would be great. Haven't quite figured out how to use that yet with this client. I try this...

I'm a little confused with the **List with range queries** option. I didn't quite understand the description and what the variables did. Specifically the `$afterEvent` and `$beforeEvent` in: ``` use...

Is there a way to get the version history of a Key/Value equivalent of this: ? ``` GET https://api.orchestrate.io/v0/$collection/$key/refs ``` Thanks so much for creating this, it's been a great...