graphql-engine/server/tests-py/queries/graphql_query/caching/setup.yaml

12 lines
217 B
YAML
Raw Normal View History

type: bulk
args:
- type: run_sql
args:
sql: |
CREATE TABLE users (id serial PRIMARY KEY, name text NOT NULL);
INSERT INTO users (name) VALUES ('Alyssa'), ('Ben');
- type: track_table
args: users