scriptSearch
query
Gets a list of scripts available in the repository. ScriptConnection!
Arguments
first
Int
default: 20
Page size.
after
String
Cursor for the last page item.
where
ScriptWhereInput
Filtering.
orderBy
[ScriptOrderByInput!]
Sort order.
inOrganizations
[ID!]!
required
Which Organizations to search.
Example Operation
# N-able GraphQL Operation

query ScriptSearch (
  $first: Int = 20,
  $after: String,
  $where: ScriptWhereInput,
  $orderBy: [ScriptOrderByInput!],
  $inOrganizations: [ID!]!
) {
  scriptSearch(
    first: $first
    after: $after
    where: $where
    orderBy: $orderBy
    inOrganizations: $inOrganizations
  ) {
    # scriptSearch fields
  }
}