docs/interfaces/management.Management.ConnectionsGetRequest.html
{ * strategy: ["ad"], * from: "from", * take: 1, * fields: "fields", * include_fields: true * }Copy
interface ConnectionsGetRequest {
strategy?:
| Management.ConnectionStrategyEnum
| (ConnectionStrategyEnum | null)[]
| null;
from?: string | null;
take?: number | null;
fields?: string | null;
include_fields?: boolean | null;
}
strategy?from?take?fields?include_fields?
Optionalstrategystrategy?:
| Management.ConnectionStrategyEnum
| (ConnectionStrategyEnum | null)[]
| null
Provide strategies to only retrieve connections with such strategies
Optionalfromfrom?: string | null
Optional Id from which to start selection.
Optionaltaketake?: number | null
Number of results per page. Defaults to 50.
Optionalfieldsfields?: string | null
A comma separated list of fields to include or exclude (depending on include_fields) from the result, empty to retrieve all fields
Optionalinclude_fieldsinclude_fields?: boolean | null
true if the fields specified are to be included in the result, false otherwise (defaults to true)
Member Visibility
ThemeOSLightDark
Properties strategyfromtakefieldsinclude_fields