Example: Connections to people working at a specific company

Discover people in your network who are connected to individuals currently working at a company with the domain.

{
 "query": {
   "term": {
     "profile_info.current_company_website": {
       "value": "theswarm.com"
     }
   }
 }
}

Example: Connections to a specific person

Identify who in your network is connected to the person identified by their LinkedIn username.

{
  "query": {
    "term": {
      "profile_info.linkedin_usernames": {
        "value": "connorsdavid"
      }
    }
  }
}

Example: Connections to senior software engineers at selected companies

Find people in your network who are connected to someone holding a senior-level software engineering position at leading technology companies.

{
  "query": {
    "bool": {
      "must": [
        {
          "term": {
            "profile_info.current_seniority": {
              "value": "senior"
            }
          }
        },
        {
          "match": {
            "profile_info.current_title": {
              "query": "software engineer",
              "operator": "AND"
            }
          }
        },
        {
          "terms": {
            "profile_info.current_company_website": [
              "apple.com",
              "google.com",
              "microsoft.com"
            ]
          }
        }
      ]
    }
  }
}