getWalletDeliveryCount

This query loads the amount of wallet delivery by the marketplace collection ID.

General Pattern

{
  getPaymentPublicKey(orgID:UUID!){
  	field_1
    field_2 {
       nested_field_1
       ...
    }
  }
}

Sample Query

query{
  getWalletDeliveryCount(marketplaceCollectionId:"117fdbb8-28df-4f7e-9434-8fab7d1acea0"
  internalWallets:true)
}

Sample Response

{
  "data": {
    "getWalletDeliveryCount": 0
  }
}

Argument

NameTypeDescriptionRequired
marketplaceCollectionIdUUIDThe marketplace collection ID.Yes
internalWalletsBooleanThe 'true' or 'false' value of the used internal wallets.Yes

Fields

NameTypeDescription
N/AIntegerThe amount of wallet delivery within a marketplace collection.

Example

Count the wallet delivery within a marketplace collection: