diff --git a/docs/docs/core-concepts.md b/docs/docs/core-concepts.md index 6dda57aa..ba72154a 100644 --- a/docs/docs/core-concepts.md +++ b/docs/docs/core-concepts.md @@ -114,6 +114,10 @@ When the event log grows large, a peer may emit `sendCompactedUpdate`—a snapsh | Stale clients | Each event carries `lastKnownSpaceEventId`; server rejects out-of-date mutations. | | Key leakage on member removal | **Key rotation** through `removeMember` → generates a new `spaceKey`. | +## How Can I Explore a Space's Data? + +You can browse a space's data using [Geo Browser's Testnet](https://testnet.geobrowser.io/root). Simply enter the Space ID you want to explore into the search bar to view its contents. If you do not have access to the data due to privacy restrictions, you will not be able to view the data. + ## GRC-20: The Protocol Under the Hood > **⚠️ Advanced Section:** You don't need to understand GRC-20 to build with Hypergraph! This is for developers who want to understand the underlying protocol or need low-level access to the knowledge graph. diff --git a/docs/docs/schema.md b/docs/docs/schema.md index 81154c9e..d6358543 100644 --- a/docs/docs/schema.md +++ b/docs/docs/schema.md @@ -2,9 +2,15 @@ The Hypergraph schema allows you to define the data model for your application. It is based on the GRC-20 specification and allows you to define Types with properties and relations to other Types. +## Hypergraph Schema Browser + +Building your app using a schema that is already actively used in Hypergraph's knowledge graph unlocks composability between your dataset and other datasets used in Hypergraph's knowledge graph. + +You can search for schemas used within the Hypergraph knowledge graph using the [Hypergraph Schema Browser](https://schema-browser.vercel.app/). + ## Example -Here is an example of a schema for an Event app with the properties `name` and `description`. +Here is an example of a schema for an Event entity with the properties `name` and `description`. ```ts import { Entity, Type } from '@graphprotocol/hypergraph'; @@ -69,7 +75,3 @@ export class Company extends Entity.Class('Company')({ founded: Type.optional(Type.Date), }) {} ``` - -## Schema Examples - -You can search for dozens of schema/mapping examples on the [Hypergraph Schema Browser](https://schema-browser.vercel.app/). \ No newline at end of file