README.md in salesforce_chunker-1.1.1 vs README.md in salesforce_chunker-1.2.0
- old
+ new
@@ -74,10 +74,11 @@
retry_seconds: 10,
timeout_seconds: 3600,
logger: nil,
log_output: STDOUT,
job_type: "primary_key_chunking",
+ include_deleted: true,
}
client.query(options) do |result|
process(result)
end
@@ -91,9 +92,10 @@
| retry_seconds | optional | defaults to `10`. Number of seconds to wait before querying API for updated results. |
| timeout_seconds | optional | defaults to `3600`. Number of seconds to wait before query is killed. |
| logger | optional | logger to use. Must be instance of or similar to rails logger. |
| log_output | optional | log output to use. i.e. `STDOUT`. |
| job_type | optional | defaults to `"primary_key_chunking"`. Can also be set to `"single_batch"`. |
+| include_deleted | optional | defaults to `false`. Whether to include deleted records. |
`query` can either be called with a block, or will return an enumerator:
```ruby
names = client.query(query, object, options).map { |result| result["Name"] }