mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
This commit is contained in:
parent
0c34a92cb9
commit
2185018255
@ -105,6 +105,10 @@ row object or ``null`` if the row does not exist.
|
||||
}
|
||||
}
|
||||
|
||||
.. note::
|
||||
|
||||
``delete_<table>_by_pk`` will **only** be available if you have select permissions on the table, as it returns the deleted row.
|
||||
|
||||
.. admonition:: Supported from
|
||||
|
||||
The ``delete_<table>_by_pk`` mutation is supported in versions ``v1.2.0``
|
||||
@ -183,4 +187,4 @@ evaluates to ``true`` for all objects.
|
||||
"affected_rows": 20
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -110,6 +110,10 @@ Using variables:
|
||||
}
|
||||
}
|
||||
|
||||
.. note::
|
||||
|
||||
``insert_<object>_one`` will **only** be available if you have select permissions on the table, as it returns the inserted row.
|
||||
|
||||
.. admonition:: Supported from
|
||||
|
||||
The ``insert_<object>_one`` mutation is supported in versions ``v1.2.0``
|
||||
|
@ -110,6 +110,10 @@ row object or ``null`` if the row does not exist.
|
||||
}
|
||||
}
|
||||
|
||||
.. note::
|
||||
|
||||
``update_<table>_by_pk`` will **only** be available if you have select permissions on the table, as it returns the updated row.
|
||||
|
||||
.. admonition:: Supported from
|
||||
|
||||
The ``update_<table>_by_pk`` mutation is supported in versions ``v1.2.0``
|
||||
|
Loading…
Reference in New Issue
Block a user