Creating a Record
Create a single record from the API
Creating a new record with the API
Providing Field Values
mutation {
createUser(email: "[email protected]", firstName: "John", lastName: "Doe", age: 30) {
id
firstName
lastName
email
age
}
}Choosing Response Fields
Conclusion
Last updated
Was this helpful?

