graphql-engine/server/tests-py/queries/graphql_mutation/delete/permissions/values_setup.yaml
Swann Moreau 5bc0355bdd [server] coalesce multiple run_sql calls in tests (#270)
GitOrigin-RevId: abd7303aaf8e7a8739fd10574249aec450082ef8
2021-01-06 16:07:22 +00:00

59 lines
1.1 KiB
YAML

type: bulk
args:
- type: insert
args:
table: resident
objects:
- name: Griffin
age: 25
- name: Clarke
age: 26
#Insert Author table data
- type: insert
args:
table: author
objects:
- name: Author 1
- name: Author 2
- name: Author 3
payments_done: true
- name: Author 4
payments_done: true
- name: Author 5
payments_done: true
#Insert aticle table data
- type: insert
args:
table: article
objects:
- content: Sample article content 1
title: Article 1
author_id: 1
- content: Sample article content 2
title: Article 2
author_id: 1
- content: Sample article content 3
author_id: 1
title: Article 3
- content: Sample article content 4
author_id: 2
title: Article 4
- content: Sample article content 5
author_id: 2
title: Article 5
#Insert users and accounts
- type: run_sql
args:
sql: |
insert into "user" (name, is_admin)
values ('user_1', false), ('user_2', true)
;
insert into account (account_no) values (1), (2) ;