organizationSearch
query
Search Organization by filters. OrganizationConnection!
Arguments
first
Int
default: 20
Page size.
after
String
Cursor for the last page item.
orderBy
[OrganizationOrderByInput!]
Sort order.
where
OrganizationWhereInput
Filtering.
Example Operation
# N-able GraphQL Operation

query OrganizationSearch (
  $first: Int = 20,
  $after: String,
  $orderBy: [OrganizationOrderByInput!],
  $where: OrganizationWhereInput
) {
  organizationSearch(
    first: $first
    after: $after
    orderBy: $orderBy
    where: $where
  ) {
    # organizationSearch fields
  }
}