diff --git a/schema.graphql b/schema.graphql index 1b0cc16..6c471f8 100644 --- a/schema.graphql +++ b/schema.graphql @@ -9,6 +9,8 @@ type Nft @entity { type Account @entity { id: ID! # address nfts: [Nft!] @derivedFrom(field: "owner") + rolesGranted: [Role!] @derivedFrom(field: "grantor") + rolesReceived: [Role!] @derivedFrom(field: "grantee") roleApprovals: [RoleApproval!] @derivedFrom(field: "grantor") }