mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
22 lines
399 B
YAML
22 lines
399 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: http://127.0.0.1:5593/create-user
|