Social Graph Database
User data stores
Use-case: Aggregated "follow" relations
Indexer for queries
- isFollowing(from: DatastoreID, to: DatastoreID) -> boolean- listFollowers(to: DatastoreID) -> DatastoreID[]- listFollows(from: DatastoreID) -> DatastoreID[]- countFollowers(to: DatastoreID) -> number- countFollows(from: DatastoreID) -> numberProvable mutations
- addFollow(from: DatastoreID, to: DatastoreID, prf: Proof)- removeFollow(from: DatastoreID, to: DatastoreID, prf: Proof)Recursive proofs
Last updated