mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
8eebcb9bdf
* server: query remote server in a remote join query iff all arguments are not null Co-authored-by: Karthikeyan Chinnakonda <karthikeyan@hasura.io> GITHUB_PR_NUMBER: 6199 GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/6199 * Update server/src-lib/Hasura/Backends/Postgres/Execute/RemoteJoin.hs Co-authored-by: Brandon Simmons <brandon@hasura.io> * Apply suggestions from code review Co-authored-by: Brandon Simmons <brandon@hasura.io> * Update server/tests-py/test_remote_relationships.py Co-authored-by: Brandon Simmons <brandon@hasura.io> * Apply suggestions from code review Co-authored-by: Brandon Simmons <brandon@hasura.io> * use guard instead of case match * add comment about the remote relationship joining * add a comment about the design discussion * update CHANGELOG Co-authored-by: Karthikeyan Chinnakonda <karthikeyan@hasura.io> Co-authored-by: Brandon Simmons <brandon@hasura.io> GitOrigin-RevId: ce7e8288d37ad7c32705f96cb6363f6ad68f3c0a
27 lines
421 B
YAML
27 lines
421 B
YAML
type: bulk
|
|
args:
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table if exists profiles
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table if exists user_profiles
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table if exists authors
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table if exists employees
|
|
|
|
# also drops remote relationship as direct dep
|
|
- type: remove_remote_schema
|
|
args:
|
|
name: my-remote-schema
|