mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
e983b1596e
Co-authored-by: Vamshi Surabhi <0x777@users.noreply.github.com>
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
|