# UniqeProof
The Uniqe subgraph is currently deployed on two network: Polygon and its testnet.
# Api
{
uniqeProofs(first: 5) {
id """ The id of the NFT """
owner """ The wallet address of the owner """
tokenURI """ The base64 data url containg metadata about the NFT """
}
}
# Example request
Get 2 of the NFT owned by a wallet
uniqeProofs(where: { owner: $addr, first: 2 }) {
id
tokenURI
}
← Introduction Usage →