mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
20 lines
328 B
YAML
20 lines
328 B
YAML
|
description: A successful query to mirror action
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
response:
|
||
|
data:
|
||
|
mirror:
|
||
|
id: some-id
|
||
|
name: Alice
|
||
|
query:
|
||
|
variables:
|
||
|
id: some-id
|
||
|
name: Alice
|
||
|
query: |
|
||
|
mutation ($id: ID, $name: String) {
|
||
|
mirror(arg: {id: $id, name: $name}){
|
||
|
id
|
||
|
name
|
||
|
}
|
||
|
}
|