mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
3caff9b924
* support jsonb and geometry operators on RQL bool exps, close #1408 * add tests for jsonb operators in /v1/query TODO:- -> add tests for geometry (postgis) operators * support parsing session variables for st_d_within and has_key ops -> Add tests for boolExp operators and select permissions * improve parsing $st_d_within op's json value logic
13 lines
241 B
YAML
13 lines
241 B
YAML
type: bulk
|
|
args:
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
DROP TABLE article;
|
|
DROP TABLE author;
|
|
DROP TABLE "Track" cascade;
|
|
DROP TABLE "Artist";
|
|
DROP TABLE geom_table;
|
|
DROP TABLE jsonb_table;
|
|
cascade: true
|