gsql cannot find schema that it created I am running into some very strange behavior with a stock standard TigerGraph docker container. When I create schema it doesn’t seem to be associated to my graph, but rather lives in some nether space where it can only be interacted with to create/delete, but can’t show or select. Here is a history of commands attempted directly after a clean boot of a new developer container:
tigergraph@ffff8fd6b2ce:~$ gsql
Welcome to TigerGraph Developer Edition, for non-commercial use only.
GSQL-Dev > create graph g_graph(*)
Restarting gse gpe restpp …
Finish restarting services in 16.522 seconds!
The graph g_graph is created.
GSQL-Dev > use graph g_graph
Using graph ‘g_graph’
GSQL-Dev > create vertex v_example(PRIMARY_ID id STRING)
The vertex type v_example is created.
GSQL-Dev > show vertex v_example
Semantic Check Fails: The vertex v_example doesn’t exist!
GSQL-Dev > select * from v_example limit 1
Semantic Check Fails: The vertex type v_example doesn’t exist!
GSQL-Dev > drop vertex v_example
The vertex type v_example is dropped.
GSQL-Dev > create vertex v_example(PRIMARY_ID id STRING)
The vertex type v_example is created.
GSQL-Dev > show vertex v_example
Semantic Check Fails: The vertex v_example doesn’t exist!
GSQL-Dev > (ctrl-c)
tigergraph@ffff8fd6b2ce:~$ gsql
Welcome to TigerGraph Developer Edition, for non-commercial use only.
GSQL-Dev > show vertex v_example
- VERTEX v_example(PRIMARY_ID id STRING) WITH STATS=“OUTDEGREE_BY_EDGETYPE”
GSQL-Dev > use graph g_graph
Using graph ‘g_graph’
GSQL-Dev > show vertex v_example
Semantic Check Fails: The vertex v_example doesn’t exist!
I don’t understand how it is possible for the schema to exist for the purposes of some commands but not others. What am I doing wrong here?