2018-09-11 14:11:24 +03:00
Insert mutation
===============
2018-12-03 15:12:24 +03:00
.. contents :: Table of contents
:backlinks: none
:depth: 1
:local:
2019-01-21 12:20:14 +03:00
Auto-generated insert mutation schema
-------------------------------------
2019-02-06 09:39:36 +03:00
**For example** , the auto-generated schema for the insert mutation field for a table `` article `` looks like this:
2018-12-03 15:12:24 +03:00
.. code-block :: graphql
insert_article (
objects: [article_insert_input!]!
on_conflict: article_on_conflict
): 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!]!
}
As you can see from the schema:
- `` objects `` argument is necessary and you can pass multiple `` objects `` to the mutation.
- You can pass an `` on_conflict `` argument to convert the mutation to an :doc: `upsert mutation <upsert>`
- You can return the number of affected rows and the affected objects (with nested objects) in the response.
2019-02-06 09:39:36 +03:00
See the :ref: `insert mutation API reference <insert_upsert_syntax>` for the full specifications
2019-01-21 12:20:14 +03:00
.. note ::
2019-03-22 10:08:42 +03:00
If a table is not in the `` public `` Postgres schema, the insert mutation field will be of the format
`` insert_<schema_name>_<table_name> `` .
2019-01-21 12:20:14 +03:00
2018-12-03 15:12:24 +03:00
Insert a single object
----------------------
2018-09-11 14:11:24 +03:00
**Example:** Insert a new `` article `` object and return the inserted article object in the response
.. graphiql ::
:view_only:
:query:
mutation insert_article {
insert_article(
objects: [
{
id: 21,
title: "Article 1",
content: "Sample article content",
author_id: 3
}
]
) {
returning {
id
title
}
}
}
:response:
{
"data": {
"insert_article": {
"affected_rows": 1,
"returning": [
{
"id": 21,
"title": "Article 1"
}
]
}
}
}
2019-04-17 16:37:42 +03:00
Using variables:
2018-09-11 14:11:24 +03:00
.. graphiql ::
:view_only:
:query:
mutation insert_article($objects: [article_insert_input!]! ) {
insert_article(objects: $objects) {
returning {
id
title
}
}
}
:response:
{
"data": {
"insert_article": {
"affected_rows": 1,
"returning": [
{
"id": 21,
"title": "Article 1"
}
]
}
}
}
2019-01-15 17:34:39 +03:00
:variables:
{
"objects": [
{
"id": 21,
"title": "Article 1",
"content": "Sample article content",
"author_id": 3
}
]
}
2018-09-11 14:11:24 +03:00
Insert multiple objects of the same type in the same mutation
-------------------------------------------------------------
**Example:** Insert 2 new `` article `` objects and return both the article objects in the response
.. graphiql ::
:view_only:
:query:
mutation insert_article {
insert_article(
objects: [
{
id: 22,
title: "Article 2",
content: "Sample article content",
author_id: 4
},
{
id: 23,
title: "Article 3",
content: "Sample article content",
author_id: 5
}
]
) {
returning {
id
title
}
}
}
:response:
{
"data": {
"insert_article": {
"affected_rows": 2,
"returning": [
{
"id": 22,
"title": "Article 2"
},
{
"id": 23,
"title": "Article 3"
}
]
}
}
}
2018-12-03 15:12:24 +03:00
Insert an object and get a nested object in response
----------------------------------------------------
2018-11-19 13:43:17 +03:00
**Example:** Insert a new `` article `` object and return the inserted article object with its author in the response
2018-10-05 18:13:51 +03:00
.. graphiql ::
:view_only:
:query:
mutation insert_article {
insert_article(
objects: [
{
id: 21,
title: "Article 1",
content: "Sample article content",
2018-11-19 13:43:17 +03:00
author_id: 3
2018-10-05 18:13:51 +03:00
}
]
) {
returning {
id
title
author {
id
name
}
}
}
}
:response:
{
"data": {
"insert_article": {
2018-11-19 13:43:17 +03:00
"affected_rows": 1,
2018-10-05 18:13:51 +03:00
"returning": [
{
"id": 21,
"title": "Article 1",
"author": {
"id": 3,
"name": "Sidney"
}
}
]
}
}
}
2019-09-05 15:51:00 +03:00
.. _nested_inserts:
2019-09-04 11:47:55 +03:00
Insert an object along with its related objects through relationships
---------------------------------------------------------------------
**Example:** Insert an `` author `` along with their `` address `` and a few `` articles `` .
2018-10-05 18:13:51 +03:00
2019-09-04 11:47:55 +03:00
Let's say an `` author `` has an `` object relationship `` called `` address `` to the `` addresses `` table and an `` array relationship `` called `` articles `` to the `` articles `` table.
2018-09-11 14:11:24 +03:00
.. graphiql ::
:view_only:
:query:
2019-09-04 11:47:55 +03:00
mutation insertData {
insert_authors
(objects: [
2018-09-11 14:11:24 +03:00
{
2019-09-04 11:47:55 +03:00
id: 26,
name: "John",
address: {
2018-11-19 13:43:17 +03:00
data: {
2019-09-04 11:47:55 +03:00
id: 27,
location: "San Francisco"
2018-11-19 13:43:17 +03:00
}
2019-09-04 11:47:55 +03:00
},
articles: {
data: [
{
id: 28,
title: "GraphQL Guide",
content: "Let's see what we can do with GraphQL"
},
{
id: 29,
title: "Authentication Guide",
content: "Let's look at best practices for authentication"
}
]
2018-11-19 13:43:17 +03:00
}
2018-09-11 14:11:24 +03:00
}
]
) {
2018-11-19 13:43:17 +03:00
affected_rows
2018-09-11 14:11:24 +03:00
returning {
id
2019-09-04 11:47:55 +03:00
name
address_id
address {
2018-09-11 14:11:24 +03:00
id
2019-09-04 11:47:55 +03:00
location
}
articles {
id
title
author_id
2018-09-11 14:11:24 +03:00
}
}
}
}
:response:
{
"data": {
2019-09-04 11:47:55 +03:00
"insert_authors": {
"affected_rows": 4,
2018-09-11 14:11:24 +03:00
"returning": [
{
2019-09-04 11:47:55 +03:00
"id": 26,
"name": "John",
"address_id": 27,
"address": {
"id": 27,
"location": "San Francisco"
},
"articles": [
{
"id": 28,
"title": "GraphQL Guide",
"author_id": 26
},
{
"id": 29,
"title": "Authentication Guide",
"author_id": 26,
}
]
2018-09-11 14:11:24 +03:00
}
]
}
}
}
2019-09-04 11:47:55 +03:00
**How it works**
A nested insert mutation is processed as follows:
1. The object relationships are inserted first, i.e. in this case, the address is inserted and its `` id `` is collected in this step.
2. The parent object is inserted next. i.e. in this case, the author is now inserted with the `` address_id `` being set to the `` id `` of the address that was inserted. Because of this, it is not allowed to pass `` address_id `` in the author object if you are also providing data for the address relationship.
The `` id `` of the author is collected in this step.
3. The array relationships are inserted at the end. i.e. in this case, the articles are now inserted with their `` author_id `` set to the author's `` id `` collected in the step 2. Hence, it's not possible to specify `` author_id `` in the data for the articles relationship.
2019-02-06 09:39:36 +03:00
Insert an object with a JSONB column
------------------------------------
**Example:** Insert a new `` author `` object with a JSONB `` address `` column
.. graphiql ::
:view_only:
:query:
mutation insert_author($address: jsonb) {
insert_author (
objects: [
{
id: 1,
name: "Ash",
address: $address
}
]
) {
affected_rows
returning {
id
name
address
}
}
}
:response:
{
"data": {
"insert_author": {
"affected_rows": 1,
"returning": [
{
"id": 1,
"name": "Ash",
"address": {
"city": "Bengaluru",
"phone": "9090909090",
"state": "Karnataka",
"pincode": 560095,
"street_address": "161, 19th Main Road, Koramangala 6th Block"
}
}
]
}
}
}
:variables:
{
"address": {
"street_address": "161, 19th Main Road, Koramangala 6th Block",
"city": "Bengaluru",
"phone": "9090909090",
"state": "Karnataka",
"pincode": 560095
}
}
2018-12-03 15:12:24 +03:00
Set a field to its default value during insert
----------------------------------------------
2018-09-11 14:11:24 +03:00
2018-11-06 11:37:17 +03:00
To set a field to its `` default `` value, just omit it from the input object, irrespective of the
:doc: `default value configuration <../schema/default-values/index>` i.e. via Postgres defaults or using column presets.
2018-09-11 14:11:24 +03:00
**Example:** if default value of `` id `` is set to auto-incrementing integer, no need to pass `` id `` field in input object
.. graphiql ::
:view_only:
:query:
mutation insert_article_with_def_id {
insert_article(
objects: [
{
title: "Article 1",
content: "Sample article content",
author_id: 3
}
]
) {
returning {
id
title
}
}
}
:response:
{
"data": {
"insert_article": {
"affected_rows": 1,
"returning": [
{
"id": 21,
"title": "Article 1"
}
]
}
}
}
2019-02-06 09:39:36 +03:00
Set a field to NULL during insert
2018-12-03 15:12:24 +03:00
---------------------------------
2018-09-11 14:11:24 +03:00
If a field is `` nullable `` in the database, to set its value to `` null `` , either pass its value as `` null `` or
just omit it from the input object.
**Example:** if `` age `` is a nullable field, either don't pass `` age `` field in input object or pass it as `` null ``
to set it to `` null ``
.. graphiql ::
:view_only:
:query:
mutation insert_author_with_null_age {
insert_author(
objects: [
{
name: "Jeff",
}
]
) {
returning {
id
name
age
}
}
}
:response:
{
"data": {
"insert_author": {
"returning": [
{
"id": 11,
"name": "Jeff",
"age": null
}
]
}
}
}
OR
.. graphiql ::
:view_only:
:query:
mutation insert_author_with_null_age {
insert_author(
objects: [
{
name: "Jeff",
age: null
}
]
) {
returning {
id
name
age
}
}
}
:response:
{
"data": {
"insert_author": {
"returning": [
{
"id": 11,
"name": "Jeff",
"age": null
}
]
}
}
2018-10-05 18:13:51 +03:00
}