mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-06-17 02:52:04 +08:00
43 lines
765 B
JSON
43 lines
765 B
JSON
{
|
|
"description": "schema test",
|
|
"depends": [],
|
|
"items": [
|
|
{
|
|
"name": "create_schema",
|
|
"url": "/api/1/query",
|
|
"role": "admin",
|
|
"status_code": 200,
|
|
"method": "POST",
|
|
"user_id": "1",
|
|
"pre_sql": [
|
|
"CREATE TABLE test(id serial);"
|
|
],
|
|
|
|
"post_sql": [
|
|
"DROP TABLE test;"
|
|
],
|
|
|
|
"request": {
|
|
"kind": "add_existing_table",
|
|
"body": {
|
|
"table": "test"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "create_schema",
|
|
"url": "/api/1/query",
|
|
"role": "admin",
|
|
"status_code": 400,
|
|
"method": "POST",
|
|
"user_id": "1",
|
|
"request": {
|
|
"kind": "add_existing_table",
|
|
"body": {
|
|
"table": "test"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|