mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
1e1a36a192
I'm trying to shore up the Python integration tests to make them more reliable. In doing so, I noticed this. --- Rather than hard-coding hostnames and ports, we can (and already do) inject these into the HGE process using environment variables. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5255 GitOrigin-RevId: 6bb593999ece42cedef6619f31f9d9b2e39f30ef
22 lines
406 B
YAML
22 lines
406 B
YAML
type: bulk
|
|
args:
|
|
- type: set_custom_types
|
|
args:
|
|
objects:
|
|
- name: User
|
|
fields:
|
|
- name: user_id
|
|
type: ID!
|
|
- name: name
|
|
type: String!
|
|
- type: create_action
|
|
args:
|
|
name: create_user
|
|
definition:
|
|
kind: synchronous
|
|
arguments:
|
|
- name: name
|
|
type: String!
|
|
output_type: User!
|
|
handler: "{{ACTION_WEBHOOK_HANDLER}}/create-user"
|