mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
17 lines
283 B
YAML
17 lines
283 B
YAML
|
description: Delete mutation on article
|
||
|
url: /v1alpha1/graphql
|
||
|
status: 200
|
||
|
response:
|
||
|
data:
|
||
|
delete_article:
|
||
|
affected_rows: 1
|
||
|
query:
|
||
|
query: |
|
||
|
mutation delete_article {
|
||
|
delete_article (
|
||
|
where: {id: {_eq: 5}}
|
||
|
) {
|
||
|
affected_rows
|
||
|
}
|
||
|
}
|