mutation CreateTestOrganization($input: CreateOrganizationSetupInput!) {
createTestOrganization(input: $input) {
organization {
id
name
}
}
}
{
"input": {
"organization": {
"name": "QA Team",
"dailyReview": {
"enable": true,
"time": "9::30",
"timezone": "Asia/Manila"
},
"members": [
{
"email": "mageke@robot-mail.com",
"timezone": "Asia/Manila"
}
]
},
"owner": {
"email": "mavul@abyssmail.com",
"name": "Yana Barlaan",
"timezone": "Asia/Manila"
}
}
}