As mentioned before, the team is working on deploying the contracts and subgraphs in as many blockchains as possible. Here you will find all the Subgraph instances already deployed, but you can always request additional blockchains on Contact
Roles Registry
Github:
Tracks roles granted and revoked using the standard.
Blockchain
GraphQL Playground
GraphQL Endpoint
Polygon
Cronos
Blockchain
GraphQL Playground
GraphQL Endpoint
Mumbai
Sample Queries
Fetch all NFTs of a user given its address
Returns all the NFTs of the given user. If the user has delegated their NFTs, the roleAssignments array will contain the grantee (borrower), and the expiration date.
TheGraph implements pagination with two additional parameters:
first: Number of entities requested (defaults to 100).
skip: Number of entities to skip (defaults to 0).
In a nutshell, you can query the first 100 entities by passing first: 100, skip: 0, but to query for the next 100 entities, you should use first: 100, skip: 100.
You can learn more about pagination with TheGraph in the .