Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions graphql_query_examples/graphql_mutation_examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,35 @@ Query Variables:
}
```

### contactCreate

Use case: Set a Team's contact details via API

```graphql
mutation modify_by_adding_contact_info {
contactCreate(
input: {teamAlias: "internal_tools", type: email, address: "internaltools@chucksburgerbars.com", displayName: "group email"}
) {
contact {
id
displayName
type
address
owner {
... on Team {
id
name
}
}
}
errors {
message
path
}
}
}
```

### 🧬 customActionsTriggerInvoke, get action ids and component ids first

Use case: Trigger custom actions via API
Expand Down