GraphStudio Overview

Overview

The TigerGraph GraphStudio™ UI (User Interface) provides an intuitive, browser-based interface that helps users get started quickly with graph-based application development tasks: designing a graph schema, creating a schema mapping, loading data, exploring the graph, and writing GSQL queries. This guide serves as an introduction and quick-start manual for the GraphStudio UI.

As of May 2019, the GraphStudio UI is certified on following browsers:

Browser

Chrome

Safari

Firefox

Opera

Supported version

54.0+

11.1+

59.0+

52.0+

Not all features are guaranteed to work on other browsers.

Please make sure to enable JavaScript and cookies in your browser settings.

GraphStudio In The Cloud

If you are using GraphStudio in the TigerGraph cloud environment, you can directly access GraphStudio via a browser.

GraphStudio On-Premises

For on-premise deployment, the system by default is listening to port 14240. Any machine connected to the server can access GraphStudio from a browser with the following address:

http://<your_tigergraph_server_ip_address>:<your_tigergraph_server_port>

In v1.2, the default TCP/IP port for GraphStudio has changed from 44240 to 14240, to avoid possible port conflicts with Zookeeper.

If the GraphStudio UI does not show, the visualization service might be off. To verify, in a linux shell of the server, type

$ gadmin status vis

If it is off, turn it on:

$ gadmin start vis 

If you still cannot access GraphStudio, check your firewall rules and open 14240 port to public. For example, if your Linux OS uses firewalld:

$ firewall-cmd –zone=public –add-port=14240/tcp –permanent

Home Page

Switch Between Dark And Light Theme

GraphStudio Session Timeout

GraphStudio has a default session timeout of 1 week. If, during this time, the user has no interaction with the page, the session will expire and the user will be logged out automatically. The timeout can be configured with:

$ gadmin config set GUI.ClientIdleTimeMS [timeout]

GraphStudio Online Test Drive

Visit TigerGraph Test Drive demos at: https://testdrive.tigergraph.com/

The GraphStudio online Test Drive features several instances of the TigerGraph system, each one targeting a different use case. Each copy of TigerGraph has a GraphStudio interface and is preloaded with application-specific queries and synthetic data. These demo applications are provided in a read-only mode. Users can explore and play with pre-installed queries. Users on these demo systems cannot save changes to the graph schema, the loading job, or queries. The corresponding buttons are disabled.

GraphStudio Limitations

Some features which are available in GSQL are not available in GraphStudio.

  • Fixed binary data types are not supported.

  • Edges from a set of vertex types to a set of vertex types are not supported.

  • There are limitations for MultiGraph. See User Access Management

  • Cannot load JSON data.

  • Cannot create a data mapping for a MAP type and UDT type attribute.

  • Data loading jobs written in a GSQL console are not shown in GraphStudio.

  • USING options are not available.

  • Concurrent loading is not available.

  • You cannot define a user-defined function (you can use the user-defined functions created from TigerGraph server).

Last updated