Visualizing Schema as a graph

I am new to TypeDB Studio. I have created a schema and committed it to my database. Is there a way to visualize the graph for the schema in Studio, before adding any data? I am working on the latest version (2.17.0) for macOS. Alternatively, is there any other compatible tool or client that can be used to visualize the schema?

Thanks,
Aparna

Sure! Use the following query:

match $x sub thing;

This will provide you with a graph of the schema.

1 Like

Cool! That worked. Thank you so much!