organizations
Retrieve a paginated list of organizations.
organizations(
after: String
first: Int
id: Int
matching: String
name: String
page: Int
): OrgList
Example
- Query
- Variables
- Response
query (
$after: String
$first: Int
$id: Int
$matching: String
$name: String
$page: Int
) {
organizations(
after: $after
first: $first
id: $id
matching: $matching
name: $name
page: $page
) {
edges {
considerUsersInactiveAfterDays
enforceSSOAccess
id
isFedramp
isHipaa
letsEncryptDisallowed
name
salesforceId
serviceStatus
slug
supportPackage
traffic
trafficType
}
nextCursor
nodes {
considerUsersInactiveAfterDays
enforceSSOAccess
id
isFedramp
isHipaa
letsEncryptDisallowed
name
salesforceId
serviceStatus
slug
supportPackage
traffic
trafficType
}
total
}
}
{
"after": "after",
"first": 42,
"id": 42,
"matching": "matching",
"name": "A name",
"page": 42
}
{
"data": {
"organizations": {
"edges": [
{
"considerUsersInactiveAfterDays": 42,
"enforceSSOAccess": true,
"id": 42,
"isFedramp": true,
"isHipaa": true,
"letsEncryptDisallowed": true,
"name": "A name",
"salesforceId": "salesforceId",
"serviceStatus": "serviceStatus",
"slug": "slug",
"supportPackage": "supportPackage",
"traffic": 42,
"trafficType": "HTTP"
}
],
"nextCursor": "nextCursor",
"nodes": [
{
"considerUsersInactiveAfterDays": 42,
"enforceSSOAccess": true,
"id": 42,
"isFedramp": true,
"isHipaa": true,
"letsEncryptDisallowed": true,
"name": "A name",
"salesforceId": "salesforceId",
"serviceStatus": "serviceStatus",
"slug": "slug",
"supportPackage": "supportPackage",
"traffic": 42,
"trafficType": "HTTP"
}
],
"total": 42
}
}
}
Arguments
organizations.after ● String scalar common
The pagination cursor to continue from.
organizations.first ● Int scalar common
The maximum number of organizations to return.
organizations.id ● Int scalar common
The organization ID.
organizations.matching ● String scalar common
The free-text filter to match against organizations.
organizations.name ● String scalar common
The exact organization name to match.
organizations.page ● Int scalar common
Page number to fetch.
Type
OrgList object common
A paginated list of organizations.