The Contact Updates Table only supports SELECT to read the updates of the user's contacts.
social.contacts.updates
SELECT| Key Name | Data Type | Allowed for Statements | Required for Statements | Default Value | Description |
|---|---|---|---|---|---|
filters
|
string |
SELECT
|
None | None | The filter expression used to return a subset of a collection. See Filters for more information. Example: filters="name.contains=joe" |
guid
|
string |
SELECT
|
SELECT
|
None | The GUID of the profile owner. |
transform
|
string |
SELECT
|
None | (sort "pubDate" numeric descending (all)) | The transform statement used to filter a set of updates. See Transform for details. |
This example statement returns the updates of the signed-in user's contacts. Run the query in the YQL Console.
SELECT * FROM social.contacts.updates WHERE guid=me
See the Elements of the Updates Object.