Read NFT Ownership
tip
Install the GraphQL packages before starting this section.
In this section, we'll help you write a simple query to read the ownership information of an NFT.
- Initialize the GraphQL client:
/src/queries/GetNFTOwnership.tsx
const client = new GraphQLClient(CYBERCONNECT_ENDPOINT);
- Write a query to get the NFT's
tokenId
, itsowner
, and the owner's twitterhandle
:
/src/queries/GetNFTOwnership.tsx
export const GET_NFT_OWNERSHIP = gql`
query($contract: String!, $tokenId: String) {
nftOwners(contract: $contract, tokenId: $tokenId) {
tokenId
owner
twitter {
handle
}
}
}
`;
Make sure to check out the full list of fields available in the CyberConnect API.
Sandbox
You can write your own query in the Playground or experiment with our code in the sandbox below!