Mutation
mutation DeleteSavedPost($input: DeleteSavedPostInput!) {
deleteSavedPost(input: $input) {
clientMutationId
deletedPostId
errors
}
}Variables
{
"input": {
"postId": "id"
}
}Response
{
"data": {
"deleteSavedPost": {
"clientMutationId": "string",
"deletedPostId": "id",
"errors": [
"string"
]
}
}
}Mutations
deleteSavedPost
Remove a post from the current viewer’s bookmarks
Required scope: write:posts
MUTATION
deleteSavedPost(input: DeleteSavedPostInput!): DeleteSavedPostPayloadArguments
input
required
Parameters for DeleteSavedPost
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
deletedPostId
ID
GlobalID of the post that was unsaved
errors
[String!]!
Mutation
mutation DeleteSavedPost($input: DeleteSavedPostInput!) {
deleteSavedPost(input: $input) {
clientMutationId
deletedPostId
errors
}
}Variables
{
"input": {
"postId": "id"
}
}Response
{
"data": {
"deleteSavedPost": {
"clientMutationId": "string",
"deletedPostId": "id",
"errors": [
"string"
]
}
}
}