MS SQL Server: Update mutation¶
Table of contents
Auto-generated update mutation schema¶
For example, the auto-generated schema for the update mutation field for a table article
looks like the following:
update_article (
_inc: article_inc_input
_set: article_set_input
where: article_bool_exp!
): article_mutation_response
# response of any mutation on the table "article"
type article_mutation_response {
# number of affected rows by the mutation
affected_rows: Int!
# data of the affected rows by the mutation
returning: [article!]!
}
# single object update
update_article_by_pk (
_inc: article_inc_input
_set: article_set_input
# primary key columns arg
pk_columns: article_pk_columns_input!
): article
As you can see from the schema:
- The
where
argument is compulsory to filter rows to be updated. See Filter queries for filtering options. Objects can be updated based on filters on their own fields or those in their nested objects. The{}
expression can be used to update all rows. - You can return the number of affected rows and the affected objects (with nested objects) in the response.
See the update mutation API reference for the full specifications.
Note
- At least any one of
_set
,_inc
operators is required. - If a table is not in the
dbo
MS SQL Server schema, the update mutation field will be of the formatupdate_<schema_name>_<table_name>
.
Update an object by its primary key¶
You can update a single object in a table using the primary key.
The output type is the nullable table object. The mutation returns the updated
row object or null
if the row does not exist.
Example: Update an article where id
is 1
:
mutation update_an_article {
update_article_by_pk (
pk_columns: {id: 1}
_set: { is_published: true }
) {
id
is_published
}
}
Example: Update a non-existent article:
mutation update_an_article {
update_article_by_pk (
pk_columns: {id: 100}
_set: { is_published: true }
) {
id
is_published
}
}
Note
update_<table>_by_pk
will only be available if you have select permissions on the table, as it returns the updated row.
Update objects based on their fields¶
Example: Update the rating
and is_published
of articles with a low rating
:
mutation update_article {
update_article(
where: {rating: {_lte: 2}},
_set: {
rating: 1,
is_published: false
}
) {
affected_rows
returning {
id
title
content
rating
is_published
}
}
}
Using variables:
mutation update_article($rating: Int, $changes: article_set_input) {
update_article(
where: {rating: {_lte: $rating}},
_set: $changes
) {
affected_rows
returning {
id
title
content
rating
is_published
}
}
}
with variables:
{
"rating": 2,
"changes": {
"rating": 1,
"is_published": false,
}
}
OR
mutation update_article($ratingLimit: Int, $rating: Int, $isPublished: Boolean) {
update_article(
where: {rating: {_lte: $ratingLimit}},
_set: {
rating: $rating,
is_published: $isPublished
}
) {
affected_rows
returning {
id
title
content
rating
is_published
}
}
}
with variables:
{
"ratingLimit": 2,
"rating": 1,
"isPublished": false
}
Update objects based on nested objects’ fields¶
Example: Reset the rating
of all articles authored by “Sidney”:
mutation update_ratings {
update_article(
where: {author: {name: {_eq: "Sidney"}}},
_set: {rating: null}
) {
affected_rows
}
}
Update all objects¶
You can update all objects in a table using the {}
expression as the where
argument. {}
basically
evaluates to true
for all objects.
Example: Reset rating of all articles:
mutation reset_rating {
update_article (
where: {}
_set: { rating: null }
) {
affected_rows
}
}
Increment/Decrement int columns¶
You can increment/decrement an int
column with a given value using the _inc
operator.
Example: Increment the likes
of an article by 2:
mutation update_likes {
update_article(
where: {id: {_eq: 1}},
_inc: {likes: 2} # initial value: 1
) {
affected_rows
returning {
id
likes
}
}
}
Example: Decrement the likes
of an article by 2:
mutation update_likes {
update_article(
where: {id: {_eq: 1}},
_inc: {likes: -2} # initial value: 3
) {
affected_rows
returning {
id
likes
}
}
}
Replace all nested array objects of an object¶
In order to replace all existing nested array objects of an object, currently it’s required to use two mutations: one to delete all the existing objects and one to add a list of new nested objects.
Example: Replace all articles of an author with a new list:
mutation updateAuthorArticles($author_id: Int!) {
delete_articles(
where: {author_id: {_eq: $author_id}}
) {
affected_rows
}
insert_articles(
objects: [
{
author_id: $author_id,
title: "title",
content: "some content"
},
{
author_id: $author_id,
title: "another title",
content: "some other content"
}
]
) {
affected_rows
}
}
with variables:
{
"author_id": 21
}