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