mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 05:21:47 +03:00
15 lines
240 B
YAML
15 lines
240 B
YAML
|
description: Delete articles
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
response:
|
||
|
data:
|
||
|
DeleteArticles:
|
||
|
affected_rows: 1
|
||
|
query:
|
||
|
query: |
|
||
|
mutation {
|
||
|
DeleteArticles(where: {ArticleId: {_eq: 1}}){
|
||
|
affected_rows
|
||
|
}
|
||
|
}
|