List all items

An item is represented by an NFT on the blockchain and IPFS.

Calling this query can potentially return a HUGE amount of data. It will be very rare to make this query. Instead you will probably want to use itemsByProductId or itemById.

Here is the GraphQl request.

query {
  allItems {
    quantity
    tokenUri
    timeCreated
    timeModified
    id
    obfuscatedId
    approver
    productId
    externalUrl
    stolen
    notes
    owned
    owner
    forSale
    deleted
    metadata
    earmarks
  }
}

If the request is successful the response will look something like this.

Last updated