mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
40 lines
829 B
YAML
40 lines
829 B
YAML
|
description: Update article title
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
response:
|
||
|
data:
|
||
|
UpdateArticles:
|
||
|
affected_rows: 2
|
||
|
returning:
|
||
|
- ArticleId: 1
|
||
|
title: Article's by author 1 updated
|
||
|
content: Content for Article 1
|
||
|
author:
|
||
|
AuthorId: 1
|
||
|
name: Author 1
|
||
|
- ArticleId: 2
|
||
|
title: Article's by author 1 updated
|
||
|
content: Content for Article 2
|
||
|
author:
|
||
|
AuthorId: 1
|
||
|
name: Author 1
|
||
|
query:
|
||
|
query: |
|
||
|
mutation {
|
||
|
UpdateArticles(
|
||
|
where: {author: {AuthorId: {_eq: 1}}}
|
||
|
_set: {title: "Article's by author 1 updated"}
|
||
|
){
|
||
|
affected_rows
|
||
|
returning{
|
||
|
ArticleId
|
||
|
title
|
||
|
content
|
||
|
author{
|
||
|
AuthorId
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|