Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 2.75 KB

compositequeryrequestdto.md

File metadata and controls

32 lines (27 loc) · 2.75 KB

CompositeQueryRequestDto

Example Usage

import { CompositeQueryRequestDto } from "@avalabs/avacloud-sdk/models/components";

let value: CompositeQueryRequestDto = {
  queries: [
    {
      id: "<id>",
      type: "AllTimeNftHolders",
      params: {
        firstDate: "<value>",
        lastDate: "<value>",
        evmChainId: "<id>",
        contractAddress: "<value>",
      },
    },
  ],
  operator: "AND",
};

Fields

Field Type Required Description
pageToken string A page token, received from a previous list call. Provide this to retrieve the subsequent page.
pageSize number The maximum number of items to return.
queries components.Queries[] ✔️ N/A
operator components.Operator ✔️ N/A