The Contact Connections Table only supports the SELECT statement to get contact information for a user's connections.
social.contacts.connections
SELECT| Key Name | Data Type | Allowed in Statements | Required in 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. |
out
|
string |
SELECT
|
None | None | The fields to return for each contact. See the Contact Field Types for a list of possible values. For example, to return just
the email information for a contact, use the following syntax: out="email" |
This example statement returns the contact information for the connections of the signed-in Yahoo! user. Run the query in the YQL Console.
select * from social.contact.connections where guid=me
This example statement returns the contact information for the signed-in user's connections whose name contains the string "Chris".
select * from social.contacts.connections where guid=me and filters="name.contains=chris"