# Editando organização filha

#### Exemplo de mutation

```graphql
mutation {
  updateOrganization(id: 123, organization: { name: "Org filha 2" }) {
    id
    name
    cnpj
    default_email_templates_ids
    settings { webhook_url }
    groups { id name }
  }
}
```

#### Parâmetros opcionais&#x20;

```typescript
name: "Nome novo",
cnpj: "123456768000199",
settings.webhook_url: "https://acme.test"
```
