README.md in reso_api-0.2.0 vs README.md in reso_api-0.2.1
- old
+ new
@@ -130,9 +130,17 @@
```ruby
client.properties(orderby: "City desc")
```
+#### $expand
+
+$expand in oData is meant to join two resources together. For the Syndication API this means you can bring in photos to any property query.
+
+```ruby
+client.properties(еxpand: "Media")
+```
+
#### Pagination, $top, and $skip
The default number of results returned is 100. You can override the default limit using the `$top` parameter. The higher the number specific for `$top`, the longer the API response will take, and pay attention to that different services does enforce a cap for number of records returned.
You can paginate through multiple sets of results using `$skip`, this can help you process multiple records quickly. In addition, if you use `$select` to target only certain fields, the API response time will be faster.