Insert Data
Auto-generated insert mutation schema
Depending on your connector, you'll have a range of insert mutations available to mutate data via your API.
Insert a single object
Insert a single object of a type by passing the object as an argument to the mutation, including the fields you want to insert.
Insert multiple objects of the same type
Insert multiple objects of a type by passing an array of objects as an argument to the mutation.
Insert an object and return a nested response
Insert an object and return a nested response by querying nested fields in the response.
Custom insert mutations
For connectors that support native mutations, you can also create custom insert mutations to insert data into your data source. This allows you to write any custom logic you need to insert data using your data source's native capabilities.
Learn more in your connector's reference documentation.