Queries
businessPersonSearch
Search for a business person by certain parameters, such as name, country, and birth date. Returns the first 50 hits. If you can't find the person you're looking for, try to narrow down the search by further specifying the search parameters.
query BusinessPersonSearch($where: ConnectBusinessPersonSearchInput!) {
businessPersonSearch(where: $where) {
edges {
node {
id
name
}
}
}
}input ConnectBusinessPersonSearchInput {
query: String!
country: CountryCode
gender: Gender
birthDate: Date
birthYear: Year
}Arguments
where ConnectBusinessPersonSearchInput! non-null input
ConnectBusinessPersonSearchInput!
Type
BusinessPersonSearchConnection object
BusinessPersonSearchConnection