Mutation
mutation DeletePromptMute($input: DeletePromptMuteInput!) {
deletePromptMute(input: $input) {
clientMutationId
errors
promptId
}
}Variables
{
"input": {
"promptId": "id"
}
}Response
{
"data": {
"deletePromptMute": {
"clientMutationId": "string",
"errors": [
"string"
],
"promptId": "string"
}
}
}Mutations
deletePromptMute
Unmute a previously dismissed feed prompt for the current member so it can appear in their feed again. Idempotent — unmuting a prompt that was never muted succeeds.
MUTATION
deletePromptMute(input: DeletePromptMuteInput!): DeletePromptMutePayloadArguments
input
required
Parameters for DeletePromptMute
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
promptId
String
The sanitized ID of the prompt that was unmuted.
Mutation
mutation DeletePromptMute($input: DeletePromptMuteInput!) {
deletePromptMute(input: $input) {
clientMutationId
errors
promptId
}
}Variables
{
"input": {
"promptId": "id"
}
}Response
{
"data": {
"deletePromptMute": {
"clientMutationId": "string",
"errors": [
"string"
],
"promptId": "string"
}
}
}