Skip to content
START FOR FREE
START FOR FREE
  • SUPPORT
  • COMMUNITY
Menu
  • SUPPORT
  • COMMUNITY
MENUMENU
  • Products
    • The World’s Fastest and Most Scalable Graph Platform

      LEARN MORE

      Watch a TigerGraph Demo

      TIGERGRAPH CLOUD

      • Overview
      • TigerGraph Cloud Suite
      • FAQ
      • Pricing

      USER TOOLS

      • GraphStudio
      • Insights
      • Application Workbenches
      • Connectors and Drivers
      • Starter Kits
      • openCypher Support

      TIGERGRAPH DB

      • Overview
      • GSQL Query Language
      • Compare Editions

      GRAPH DATA SCIENCE

      • Graph Data Science Library
      • Machine Learning Workbench
  • Solutions
    • The World’s Fastest and Most Scalable Graph Platform

      LEARN MORE

      Watch a TigerGraph Demo

      Solutions

      • Solutions Overview

      INCREASE REVENUE

      • Customer Journey/360
      • Product Marketing
      • Entity Resolution
      • Recommendation Engine

      MANAGE RISK

      • Fraud Detection
      • Anti-Money Laundering
      • Threat Detection
      • Risk Monitoring

      IMPROVE OPERATIONS

      • Supply Chain Analysis
      • Energy Management
      • Network Optimization

      By Industry

      • Advertising, Media & Entertainment
      • Financial Services
      • Healthcare & Life Sciences

      FOUNDATIONAL

      • AI & Machine Learning
      • Time Series Analysis
      • Geospatial Analysis
  • Customers
    • The World’s Fastest and Most Scalable Graph Platform

      LEARN MORE

      CUSTOMER SUCCESS STORIES

      • Ford
      • Intuit
      • JPMorgan Chase
      • READ MORE SUCCESS STORIES
      • Jaguar Land Rover
      • United Health Group
      • Xbox
  • Partners
    • The World’s Fastest and Most Scalable Graph Platform

      LEARN MORE

      PARTNER PROGRAM

      • Partner Benefits
      • TigerGraph Partners
      • Sign Up
      TigerGraph partners with organizations that offer complementary technology solutions and services.​
  • Resources
    • The World’s Fastest and Most Scalable Graph Platform

      LEARN MORE

      BLOG

      • TigerGraph Blog

      RESOURCES

      • Resource Library
      • Benchmarks
      • Demos
      • O'Reilly Graph + ML Book

      EVENTS & WEBINARS

      • Graph+AI Summit
      • Graph for All - Million Dollar Challenge
      • Events &Trade Shows
      • Webinars

      DEVELOPERS

      • Documentation
      • Ecosystem
      • Developers Hub
      • Community Forum

      SUPPORT

      • Contact Support
      • Production Guidelines

      EDUCATION

      • Training & Certifications
  • Company
    • Join the World’s Fastest and Most Scalable Graph Platform

      WE ARE HIRING

      COMPANY

      • Company Overview
      • Leadership
      • Legal Terms
      • Patents
      • Security and Compliance

      CAREERS

      • Join Us
      • Open Positions

      AWARDS

      • Awards and Recognition
      • Leader in Forrester Wave
      • Gartner Research

      PRESS RELEASE

      • Read All Press Releases
      TigerGraph Reports Exceptional Customer Growth and Product Leadership as More Market-Leading Companies Tap the Power of Graph
      March 1, 2023
      Read More »

      NEWS

      • Read All News
      The-New-Stack-Logo-square

      Multiple Vendors Make Data and Analytics Ubiquitous

      TigerGraph enhances fundamentals in latest platform update

  • START FREE
    • The World’s Fastest and Most Scalable Graph Platform

      GET STARTED

      • Request a Demo
      • CONTACT US
      • Try TigerGraph
      • START FREE
      • TRY AN ONLINE DEMO

GSQL For Cypher Users

  • Emily McAuliffe
  • July 15, 2019
  • blog, Developers, GSQL
  • Blog >
  • GSQL For Cypher Users

Originally featured on DZone

This article is intended for Neo4j Cypher users who want to learn and understand TigerGraph’s GSQL query language.  This is by no means a primer on GSQL. For that, the definitive place to start is TigerGraph’s documentation site.  There are also a number of videos on YouTube to learn both GSQL and GraphStudio, which is an excellent graph visualization and exploration  tool. It also functions as an Integrated Development Environment (IDE) for GSQL developers, handling everything from schema design to query development and execution.

A common question from the TigerGraph prospects who know Cypher and want to learn GSQL is  “Do you have an example of the movie database from Neo4j?”. So, I thought it would be interesting to share an implementation of that movie database in GSQL as a learning resource. The idea is to provide a bridge for existing Cypher users to GSQL.

Both TigerGraph and Neo4j are native graph databases, but architecturally speaking, there are significant differences between the two products. One major difference is that of MPP (Massively Parallel Processing); TigerGraph is a distributed graph that is both vertically and horizontally scalable. TigerGraph database not only stores the data distributedly, but also process it in parallel.  The underlying data structures are inherently distributed in design. 

Cypher is an interpreted language (like Java) while GSQL can run both in interpreted and compiled mode ( behind the scene C++ and eventually into native Linux executable code). Interpreted mode bring the dynamism, while the compiled mode gives the higher performance; mode choice is yours to make as per the application needs.

GSQL is a high-level programming language that is Turing complete. Cypher is not. You can implement the equivalent of a stored procedure for graph in GSQL. Classic graph algorithms like cosine similarity, shortest path, community detection, and PageRank can be implemented natively in GSQL, i.e., the graph processing and computation are done inside the database, as the nodes and edges are being traversed.  Cypher on the other hand relies on the APOC Java library for graph algorithms (i.e., graph processing is done outside the database). A proper comparison of the two products is outside the scope of this article.

Let’s describe how the material is presented here. The Cypher queries are presented in textual form in this article.

The corresponding GSQL queries are available on github.

https://github.com/tigergraph/ecosys/tree/master/training/GSQL-for-Cypher-users 

GraphStudio is TigerGraph’s Visual UI.  It is also an IDE for GSQL developers. So you will be able to view the GSQL code as well as run it to see results from the pre-populated movie database.

You can download and install TigerGraph’s Developer Edition when you are ready to write some GSQL queries.  Here is the documentation link for GraphStudio to help you get familiarized.  There are also videos on YouTube which are very helpful. Once the TigerGraph server and

GraphStudio is up and running, you can download the TigerGraph movie database example from here, and follow the README instructions.

Let’s walk through an example.  Here’s a sample query in Cypher.

Write a query to retrieve all Movie nodes from the database.  Here’s the Cypher code.

MATCH (p:Movie) RETURN p

Here is the equivalent query in GSQL.

CREATE QUERY get_all_movies() FOR GRAPH mygraph {
  // Cypher equivalent: 
  //     MATCH (p:Movie) RETURN p

   m = {Movie.*};
   PRINT m;
  }

Note the query is inside a defined procedure, get_all_movies(),  and the equivalent Cypher query is referenced in the comments.  Anything after the “//” characters are comments.

You can write custom business logic and graph algorithms in procedures just like the one above.  This procedure is compiled. On a successful compilation, the procedure is also installed as a REST endpoint on port 9000 and you can access the above query on your browser like this. 

http://<tigergraph_host_ip>:9000/query/mygraph/get_all_movies

The result of this query on a browser is JSON formatted output.  Running this query in GraphStudio will show the graph result as nodes and edges.  You can also see the JSON output in GraphStudio.

By putting graph database operations inside procedures like these, you are essentially defining a REST API layer for your graph database applications.

It is outside the scope of this article to cover GSQL in depth.  Rather the intent is to provide a cookbook approach for Cypher users who would like to learn GSQL by example using the familiar Neo4j movie database.  It’s highly recommended that you at least learn some basic GSQL prior to this exercise. A good place to start is GSQL 101 in the documentation (corresponding video on YouTube).

Here’s how you would run the get_all_movies query in GraphStudio.  Click on Write Queries and in the scroll bar under GSQL queries, select get_all_movies.  The procedure and the GSQL code appear on the right.  

Click on Run at the top to run the query and results appear in the bottom panel where

 you can view the graph visualization of the results.  You can also select View JSON Result for the results in JSON format.

The following is a list of Cypher queries from the Neo4j movie database.  If you have used that database before in Neo4j’s tutorials, these queries should be familiar to you. The equivalent GSQL procedures are listed.

  1. Retrieve all nodes from the database.

Cypher 

GSQL procedure 

MATCH (n) RETURN n
get_whole_graph()

 

  1. Write a query to retrieve all Person nodes.  Write a query to retrieve all Movie nodes.

Cypher

GSQL procedure 

MATCH (p:Person) RETURN p
get_all_persons()
MATCH (m:Movie) RETURN m
get_all_movies()
  1. Retrieve all movies that were released in a specific year.

Cypher 

GSQL procedure 

MATCH (m:Movie {released:2003}) RETURN m
get_movies_for_year (UINT year)
  1. Retrieve all Movies released in a specific year, returning their titles.

Cypher 

GSQL procedure 

MATCH (m:Movie {released: 2006}) RETURN m.title
get_movie_titles_for_year (UINT year)
  1. Display title, released, and tagline values for every Movie node in the graph.

Cypher 

GSQL procedure 

MATCH (m:Movie {released: 2006}) RETURN m.title
get_movie_titles_for_year (UINT year)
  1. Retrieve all people who wrote the movie Speed Racer.

Cypher 

GSQL procedure 

MATCH (p:Person)-[:WROTE]->(:Movie {title: 'Speed Racer'}) RETURN p.name
get_persons_who_wrote_movie(Vertex<Movie> mov)
  1. Retrieve all movies that are connected to the person, Tom Hanks.

Cypher 

GSQL procedure 

MATCH (m:Movie)<--(:Person {name: 'Tom Hanks'}) RETURN m.title
get_movies_related_to_person(Vertex<Person> p)
  1. Retrieve information about the relationships Tom Hanks had with the set of movies retrieved earlier.

There’s no need to write a GSQL query for this.  In the results panel from the previous query, simply double-click on any of the movie nodes (red) returned.  This expands to show all connected Persons for the selected movie. Look for the “Tom Hanks” Person node, and double click on it to show connections to other movies returned.

  1. Retrieve all movies that Tom Cruise acted in.

Cypher 

GSQL procedure 

MATCH (a:Person)-[:ACTED_IN]->(m:Movie)
WHERE a.name = 'Tom Cruise' 
RETURN m.title as Movie
print_movies_for_actor(Vertex<Person> actor)
  1. Retrieve all movies that Tom Cruise acted in.

Cypher 

GSQL procedure 

MATCH (a:Person)-[:ACTED_IN]->(m:Movie)
WHERE a.name = 'Tom Cruise' RETURN m.title as Movie
print_movies_for_actor
         (Vertex<Person> actor)
  1. Retrieve all actors that were born in the 70’s.

Cypher 

GSQL procedure 

MATCH (a:Person)
WHERE a.born >= 1970 AND a.born < 1980
RETURN a.name as Name, a.born as `Year Born`
get_actors_born_in(UINT from_year, 
                   UINT to_year)
  1. Retrieve the actors who acted in the movie The Matrix who were born after 1960.

Cypher 

GSQL procedure 

MATCH (a:Person)-[:ACTED_IN]->
(m:Movie)WHERE a.born > 1960 AND m.title = 'The Matrix'
RETURN a.name as Name, a.born as `Year Born`
get_actors_for_movie_born_after(
   Vertex<Movie> movie, UINT after_year)
  1. Retrieve all actors whose name begins with James.

Cypher 

GSQL procedure 

MATCH (a:Person)-[:ACTED_IN]->(:Movie)
WHERE a.name STARTS WITH 'James'
RETURN a.name
get_actors_whose_name_begins_with
   (String pattern)
  1. Retrieve all REVIEW relationships from the graph where the summary of the review contains the string “fun”, returning the movie title reviewed and the rating and summary of the relationship.

Cypher 

GSQL procedure 

MATCH (:Person)-[r:REVIEWED]->(m:Movie)
WHERE toLower(r.summary) CONTAINS 'fun'
RETURN m.title as Movie, r.summary as Review, r.rating as Rating
get_reviews_with_str(STRING str)
  1. Retrieve all people who have produced a movie, but have not directed a movie.

Cypher 

GSQL procedure 

MATCH (a:Person)-[:PRODUCED]->(m:Movie)
WHERE NOT ((a)-[:DIRECTED]->(:Movie))
RETURN a.name, m.title
get_producers_who_are_not_directors()

  1. Retrieve the movies and their actors where one of the actors also directed the movie.

Cypher 

GSQL procedure 

MATCH (a1:Person)-[:ACTED_IN]->(m:Movie)<-[:ACTED_IN]-(a2:Person)
WHERE exists( (a2)-[:DIRECTED]->(m) )
RETURN a1.name as Actor, a2.name as `Actor/Director`, m.title as Movie
get_movies_with_actor_directors()
  1. Retrieve all movies that were released in the years 2000, 2004, and 2008, returning their titles and release years.

Cypher 

GSQL procedure 

MATCH (m:Movie)
WHERE m.released in [2000, 2004, 2008]
RETURN m.title, m.released
get_reviews_with_str(STRING str)
  1. Retrieve the movies that have an actor’s role that is the name of the movie.

Cypher 

GSQL procedure 

MATCH (a:Person)-[r:ACTED_IN]->(m:Movie)
WHERE m.title in r.roles
RETURN m.title as Movie, a.name as Actor
get_movie_with_same_name_as_role()
  1. Write a query that retrieves all movies that Gene Hackman has acted it, along with the directors of the movies. In addition, retrieve the actors that acted in the same movies as Gene Hackman.
Cypher  GSQL procedure in GraphStudio
MATCH (a:Person)-[:ACTED_IN]->(m:Movie)<-[:DIRECTED]-(d:Person),
(a2:Person)-[:ACTED_IN]->(m)
WHERE a.name = 'Gene Hackman' RETURN m.title as movie, d.name AS director, a2.name AS `co-actors`
get_movies_for_actor_expand
          (Vertex<Person> actor)

 

  1. Retrieve all nodes that the person named James Thompson directly has the FOLLOWS relationship in either direction.

Cypher 

GSQL procedure 

MATCH (p1:Person)-[:FOLLOWS]
-(p2:Person)
WHERE p1.name = 'James Thompson' RETURN p1, p2
get_followers_for(Vertex<Person> p)
  1. Modify the previous query to retrieve nodes that are exactly three hops away.

Cypher 

GSQL procedure 

MATCH (p1:Person)-[:FOLLOWS*3]-(p2:Person)
WHERE p1.name = 'James Thompson'
RETURN p1, p2
k_hop(Vertex<Person> p, int k)
  1. Modify the previous query to retrieve nodes that are one and two hops away.

Cypher 

GSQL procedure 

MATCH (p1:Person)-[:FOLLOWS*1..2]-(p2:Person)
WHERE p1.name = 'James Thompson' RETURN p1, p2
k_hop_inclusive(Vertex<Person> p, int k)
  1. Modify the previous query to retrieve particular nodes that are connected no matter how many hops are required.

Cypher 

GSQL procedure 

MATCH (p1:Person)-[:FOLLOWS*]-(p2:Person)
WHERE p1.name = 'James Thompson'
RETURN p1, p2
get_connected_subgraph
             (Vertex<Person> p)
  1. Write a query to retrieve all people in the graph whose name begins with Tom and optionally retrieve all people named Tom who directed a movie.

Cypher 

GSQL procedure 

MATCH (p:Person)
WHERE p.name STARTS WITH 'Tom' OPTIONAL MATCH (p)-[:DIRECTED]->(m:Movie)
RETURN p.name, m.title
get_persons_whose_name_begins_with
   (String pattern)
  1. Retrieve actors and the movies they have acted in, returning each actor’s name and the list of movies they acted in.

Cypher 

GSQL procedure 

MATCH (p:Person)-[:ACTED_IN]->
(m:Movie)
RETURN p.name as actor, collect(m.title) AS `movie list`
get_actors_and_movies()
  1. Retrieve all movies that Tom Cruise has acted in and the co-actors that acted in the same movie, returning the movie title and the list of co-actors that Tom Cruise worked with.

Cypher 

GSQL procedure 

MATCH (p:Person)-[:ACTED_IN]->(m:Movie)<-[:ACTED_IN]-(p2:Person)
WHERE p.name ='Tom Cruise'
get_movie_and_co_actors(Vertex<Person> actor)
  1. Retrieve all people who reviewed a movie, returning the list of reviewers and how many  reviewers reviewed the movie.

Cypher 

GSQL procedure 

MATCH (p:Person)-[:REVIEWED]->
(m:Movie)
RETURN m.title as movie, count(p) as numReviews, collect(p.name) as reviewers
get_list_of_reviewers_per_movie()
  1. Retrieve all directors, their movies, and people who acted in the movies, returning the name of the director, the number of actors the director has worked with, and the list of actors.

Cypher 

GSQL procedure 

MATCH (d:Person)-[:DIRECTED]->
(m:Movie)<-[:ACTED_IN]-(a:Person)
RETURN d.name AS director, count(a) AS `number actors`, collect(a.name) AS `actors worked with`
get_directors_movies_and_actors()
  1. Retrieve the actors who have acted in exactly five movies, returning the name of the actor, and the list of movies for that actor.  There are 2 versions in GSQL.

Cypher 

GSQL procedure 

MATCH (a:Person)-[:ACTED_IN]->
(m:Movie) WITH a, count(a) AS numMovies, collect(m.title) AS movies WHERE numMovies = 5
RETURN a.name, movies
get_actors_with_n_movies(UINT n)
  OR
get_actors_with_n_movies2(UINT n)
  1. Retrieve the movies that have at least 2 directors, and optionally the names of people who reviewed the movies.

Cypher 

GSQL procedure 

MATCH (m:Movie)
WITH m, size((:Person)-[:DIRECTED]->
(m)) AS directors
WHERE directors >= 2
OPTIONAL MATCH (p:Person)-[:REVIEWED]->
(m) RETURN m.title, p.name
get_movies_with_2_directors()

Next Steps

I hope this article helps bridge the gap between Cypher and GSQL users and brings the two communities closer together.  

Like any language, GSQL continues to evolve.  At the time of this writing, it has been announced that multi-hop patterns in the FROM clause will be added to the language.  This will make it simpler and more intuitive to describe multi-hop graph pattern matching in a single query block (SELECT-FROM-WHERE) instead of several individual blocks.  Please go to the blog article for more details.

Download TigerGraph’s Developer Edition.

You Might Also Like

Trillion edges benchmark: new world record beyond 100TB by TigerGraph featuring AMD based Amazon EC2 instances

Trillion edges benchmark: new world record...

March 13, 2023
Graph Databases 101: Your Top 5 Questions with Non-Technical Answers

Graph Databases 101: Your Top 5...

February 7, 2023
It’s Time to Harness the Power of Graph Technology [Infographic]

It’s Time to Harness the Power...

January 25, 2023

Introducing TigerGraph 3.0

July 1, 2020

Everything to Know to Pass your TigerGraph Certification Test

June 24, 2020

Neo4j 4.0 Fabric – A Look Behind the Curtain

February 7, 2020

TigerGraph Blog

  • Categories
    • blogs
      • About TigerGraph
      • Benchmark
      • Business
      • Community
      • Compliance
      • Customer
      • Customer 360
      • Cybersecurity
      • Developers
      • Digital Twin
      • eCommerce
      • Emerging Use Cases
      • Entity Resolution
      • Finance
      • Fraud / Anti-Money Laundering
      • GQL
      • Graph Database Market
      • Graph Databases
      • GSQL
      • Healthcare
      • Machine Learning / AI
      • Podcast
      • Supply Chain
      • TigerGraph
      • TigerGraph Cloud
    • Graph AI On Demand
      • Analysts and Research
      • Customer 360 and Entity Resolution
      • Customer Spotlight
      • Development
      • Finance, Banking, Insurance
      • Keynote
      • Session
    • Video
  • Recent Posts

    • Trillion edges benchmark: new world record beyond 100TB by TigerGraph featuring AMD based Amazon EC2 instances
    • Overview of Graph and Machine Learning with TigerGraph | Mar 8 @ 11am PST
    • Gartner Data & Analytics Summit 2023, London
    • Gartner Data and Analytics Summit, Orlando
    • Transaction Surveillance with Maximum Flow Algorithm
    TigerGraph

    Product

    SOLUTIONS

    customers

    RESOURCES

    start for free

    TIGERGRAPH DB
    • Overview
    • Features
    • GSQL Query Language
    GRAPH DATA SCIENCE
    • Graph Data Science Library
    • Machine Learning Workbench
    TIGERGRAPH CLOUD
    • Overview
    • Cloud Starter Kits
    • Login
    • FAQ
    • Pricing
    • Cloud Marketplaces
    USEr TOOLS
    • GraphStudio
    • TigerGraph Insights
    • Application Workbenches
    • Connectors and Drivers
    • Starter Kits
    • openCypher Support
    SOLUTIONS
    • Why Graph?
    industry
    • Advertising, Media & Entertainment
    • Financial Services
    • Healthcare & Life Sciences
    use cases
    • Benefits
    • Product & Service Marketing
    • Entity Resolution
    • Customer 360/MDM
    • Recommendation Engine
    • Anti-Money Laundering
    • Cybersecurity Threat Detection
    • Fraud Detection
    • Risk Assessment & Monitoring
    • Energy Management
    • Network & IT Management
    • Supply Chain Analysis
    • AI & Machine Learning
    • Geospatial Analysis
    • Time Series Analysis
    success stories
    • Customer Success Stories

    Partners

    Partner program
    • Partner Benefits
    • TigerGraph Partners
    • Sign Up
    LIBRARY
    • Resources
    • Benchmark
    • Webinars
    Events
    • Trade Shows
    • Graph + AI Summit
    • Million Dollar Challenge
    EDUCATION
    • Training & Certifications
    Blog
    • TigerGraph Blog
    DEVELOPERS
    • Developers Hub
    • Community Forum
    • Documentation
    • Ecosystem

    COMPANY

    Company
    • Overview
    • Careers
    • News
    • Press Release
    • Awards
    • Legal
    • Patents
    • Security and Compliance
    • Contact
    Get Started
    • Start Free
    • Compare Editions
    • Online Demo - Test Drive
    • Request a Demo

    Product

    • Overview
    • TigerGraph 3.0
    • TIGERGRAPH DB
    • TIGERGRAPH CLOUD
    • GRAPHSTUDIO
    • TRY NOW

    customers

    • success stories

    RESOURCES

    • LIBRARY
    • Events
    • EDUCATION
    • BLOG
    • DEVELOPERS

    SOLUTIONS

    • SOLUTIONS
    • use cases
    • industry

    Partners

    • partner program

    company

    • Overview
    • news
    • Press Release
    • Awards

    start for free

    • Request Demo
    • take a test drive
    • SUPPORT
    • COMMUNITY
    • CONTACT
    • Copyright © 2023 TigerGraph
    • Privacy Policy
    • Linkedin
    • Facebook
    • Twitter

    Copyright © 2020 TigerGraph | Privacy Policy

    Copyright © 2020 TigerGraph Privacy Policy

    • SUPPORT
    • COMMUNITY
    • COMPANY
    • CONTACT
    • Linkedin
    • Facebook
    • Twitter

    Copyright © 2020 TigerGraph

    Privacy Policy

    • Products
    • Solutions
    • Customers
    • Partners
    • Resources
    • Company
    • START FREE
    START FOR FREE
    START FOR FREE
    TigerGraph
    PRODUCT
    PRODUCT
    • Overview
    • GraphStudio UI
    • Graph Data Science Library
    TIGERGRAPH DB
    • Overview
    • Features
    • GSQL Query Language
    TIGERGRAPH CLOUD
    • Overview
    • Cloud Starter Kits
    TRY TIGERGRAPH
    • Get Started for Free
    • Compare Editions
    SOLUTIONS
    SOLUTIONS
    • Why Graph?
    use cases
    • Benefits
    • Product & Service Marketing
    • Entity Resolution
    • Customer Journey/360
    • Recommendation Engine
    • Anti-Money Laundering (AML)
    • Cybersecurity Threat Detection
    • Fraud Detection
    • Risk Assessment & Monitoring
    • Energy Management
    • Network Resources Optimization
    • Supply Chain Analysis
    • AI & Machine Learning
    • Geospatial Analysis
    • Time Series Analysis
    industry
    • Advertising, Media & Entertainment
    • Financial Services
    • Healthcare & Life Sciences
    CUSTOMERS
    read all success stories

     

    PARTNERS
    Partner program
    • Partner Benefits
    • TigerGraph Partners
    • Sign Up
    RESOURCES
    LIBRARY
    • Resource Library
    • Benchmark
    • Webinars
    Events
    • Trade Shows
    • Graph + AI Summit
    • Graph for All - Million Dollar Challenge
    EDUCATION
    • TigerGraph Academy
    • Certification
    Blog
    • TigerGraph Blog
    DEVELOPERS
    • Developers Hub
    • Community Forum
    • Documentation
    • Ecosystem
    COMPANY
    COMPANY
    • Overview
    • Leadership
    • Careers  
    NEWS
    PRESS RELEASE
    AWARDS
    START FREE
    Start Free
    • Request a Demo
    • SUPPORT
    • COMMUNITY
    • CONTACT
    Dr. Jay Yu

    Dr. Jay Yu | VP of Product and Innovation

    Dr. Jay Yu is the VP of Product and Innovation at TigerGraph, responsible for driving product strategy and roadmap, as well as fostering innovation in graph database engine and graph solutions. He is a proven hands-on full-stack innovator, strategic thinker, leader, and evangelist for new technology and product, with 25+ years of industry experience ranging from highly scalable distributed database engine company (Teradata), B2B e-commerce services startup, to consumer-facing financial applications company (Intuit). He received his PhD from the University of Wisconsin - Madison, where he specialized in large scale parallel database systems

    Todd Blaschka | COO

    Todd Blaschka is a veteran in the enterprise software industry. He is passionate about creating entirely new segments in data, analytics and AI, with the distinction of establishing graph analytics as a Gartner Top 10 Data & Analytics trend two years in a row. By fervently focusing on critical industry and customer challenges, the companies under Todd's leadership have delivered significant quantifiable results to the largest brands in the world through channel and solution sales approach. Prior to TigerGraph, Todd led go to market and customer experience functions at Clustrix (acquired by MariaDB), Dataguise and IBM.