Skip to content

allAccountProducts

No description available.

Arguments

Argument Type Description
nameFilter (required) [ProductName!]! Name of product (Data Protection, Ransomware Investigation, etc.).
typeFilter (required) [ProductType!]! Type of product (Revenue, POC, etc.).
stateFilter (required) [ProductState!]! State of product (Active, Expired, etc.).
startDateArg DateTime Start date of product (yyyy-mm-dd).
endDateArg DateTime End date of product (yyyy-mm-dd).

Returns

[AccountProduct!]!

Sample

query AllAccountProducts($nameFilter: [ProductName!]!, $typeFilter: [ProductType!]!, $stateFilter: [ProductState!]!) {
  allAccountProducts(
    nameFilter: $nameFilter
    typeFilter: $typeFilter
    stateFilter: $stateFilter
  ) {
    account
    expirationDate
    name
    state
    type
  }
}
{
  "nameFilter": [
    "AAD"
  ],
  "typeFilter": [
    "PAG_TRIAL"
  ],
  "stateFilter": [
    "ACTIVATION_FAILED"
  ]
}
{
  "data": {
    "allAccountProducts": [
      {
        "account": "example-string",
        "expirationDate": "2024-01-01T00:00:00.000Z",
        "name": "AAD",
        "state": "ACTIVATION_FAILED",
        "type": "PAG_TRIAL"
      }
    ]
  }
}