interactWithApps
Description
No description
Response
Returns a AppInteraction
Arguments
Name | Description |
---|---|
context - PermissionContext! | |
entityId - ID | |
input - [InteractWithAppInput!]! |
Mutation
mutation interactWithApps(
$context: PermissionContext!,
$entityId: ID,
$input: [InteractWithAppInput!]!
) {
interactWithApps(
context: $context,
entityId: $entityId,
input: $input
) {
appId
interactionId
props
type
}
}
Variables
{
"context": "MEMBER",
"entityId": "4",
"input": [
"InteractWithAppInput"
]
}
Response
{
"data": {
"interactWithApps": [
{
"appId": "abc123",
"interactionId": "abc123",
"props": "abc123",
"slate": "Slate",
"type": "Close"
}
]
}
}