assets
query
Retrieve multiple assets by ID. The result will omit assets where either the asset doesn't exist or the caller doesn't have permission to view the asset. [Asset!]!
Arguments
ids
[ID!]!
required
List of IDs to be retrieved. Maximum limit: 1000 IDs.
Example Operation
# N-able GraphQL Operation

query Assets($ids: [ID!]!) {
  assets(ids: $ids) {
    # assets fields
  }
}