TypeDB Studio is the IDE for developing with TypeDB. It provides a consistent experience across different environments, including macOS, Linux, and Windows. With Studio, developers can easily manage databases, execute queries, and explore query results, all within a unified interface.
- Install TypeDB Studio
- For a quick overview, check out the relevant lesson in our end-to-end TypeDB Learning Course.
- For an in-depth guide to TypeDB Studio, check out the manual.
- Discover more of TypeDB’s unique features.
On top of the ability to model your data with TypeQL, TypeDB Studio includes a type browser and a type editor with a graphical user interface, making it convenient to edit, visualize, and maintain data models. The user-friendly interface simplifies the process of creating, extending, exploring, and managing schemas, enabling developers to easily define the structure and relationships of their data.
One of the key features of TypeDB Studio is its interactive visualizer, which allows developers to visualize query results and explore inferred data. The visualizer presents data in a hypergraph format, making it easy to navigate and visualize TypeDB responses.
TypeDB Studio covers all steps of the development process with TypeDB:
- Graphical user interface for connecting to TypeDB without the use of command line tools, libraries, or Driver API.
- Database manager to create and delete databases.
- Type browser for exploring type hierarchy of a database's schema.
- Type editor for adjusting existing types in a database.
- Project file management to store your favorite queries.
- Convenient multi-tab query editor with TypeQL syntax highlighting, auto-saving, query execution, response output, and pop-up notifications for warnings and error messages that may occur during runtime/query execution.
- Graph visualization engine for visualizing query results using user-modifiable, force-directed graph drawings.
- Local syntax validation before sending instructions and queries to the server.
- Automatic transaction management with full GUI control, including read/write transactions, schema/data sessions, as well as transaction control (commit/rollback/close) and transaction options.
- Rule-based inference enabled with a click of a button (
infer
). - Explanations visualization displays the deductive reasoning behind inferred data for root cause analysis.
You can download TypeDB Studio from the GitHub Releases page. For more information on how to install and run TypeDB Studio, see the Installation guide.
Note: You DO NOT NEED to compile TypeDB Studio from source if you just want to use TypeDB Studio. You can simply download TypeDB Studio following the "Download TypeDB Studio" section above.
-
Make sure you have the following dependencies installed on your machine:
- Java JDK 11 or higher
- Bazel 6 or higher.
-
You can build TypeDB with either one of the following commands, depending on the targeted architecture and operating system:
$ bazel run //:studio-bin-mac-arm64 $ bazel run //:studio-bin-mac-x86_64
$ bazel run //:studio-bin-windows-x86_64
$ bazel run //:studio-bin-linux-arm64 $ bazel run //:studio-bin-linux-x86_64
You can also replace
run
withbuild
in the command above, and Bazel will simply produce the JAR for TypeDB Studio underbazel-bin/studio-bin-mac-x86_64.jar
or similar directory, with respect to the chosen OS and architecture.
If you want to begin your journey with TypeDB, you can explore the following resources:
- In-depth dive into TypeDB's philosophy
- Our TypeDB quickstart
- Our TypeDB Studio documentation
- TypeQL
- TypeDB
TypeDB Studio has been built using various open-source frameworks, technologies and communities throughout its evolution. Today TypeDB Studio is built using Kotlin, Compose Multiplatform, and Bazel.
Thank you!
This software is released under the Mozilla Public License 2.0 (MPL 2.0). For license information, please see LICENSE.