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

Name

Type

Description

Required

marketplaceCollectionId

UUID

The marketplace collection ID.

Yes

internalWallets

Boolean

The 'true' or 'false' value of the used internal wallets.

Yes

Fields

Name

Type

Description

N/A

Integer

The amount of wallet delivery within a marketplace collection.

Example

Count the wallet delivery within a marketplace collection: