Mutation
mutation DeletePin($input: DeletePinInput!) {
deletePin(input: $input) {
clientMutationId
errors
pins {
id
list
position
target {
__typename
... on CustomOnboardingPointerPin {
__typename
}
}
}
}
}Variables
{
"input": {
"list": "FEATURED",
"targetId": "id",
"targetType": "CUSTOM_ONBOARDING_POINTER"
}
}Response
{
"data": {
"deletePin": {
"clientMutationId": "string",
"errors": [
"string"
],
"pins": [
{
"id": "id",
"list": "FEATURED",
"position": 1,
"target": {
"__typename": "CustomOnboardingPointerPin"
}
}
]
}
}
}Mutations
deletePin
Remove a target from one of a Network’s curated pin lists. Idempotent.
Required scope: host:write:network_settings
MUTATION
deletePin(input: DeletePinInput!): DeletePinPayloadArguments
input
required
Parameters for DeletePin
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
pins
[Pin!]!
The full pin list this write landed in, post-write, in curator-set order.
Mutation
mutation DeletePin($input: DeletePinInput!) {
deletePin(input: $input) {
clientMutationId
errors
pins {
id
list
position
target {
__typename
... on CustomOnboardingPointerPin {
__typename
}
}
}
}
}Variables
{
"input": {
"list": "FEATURED",
"targetId": "id",
"targetType": "CUSTOM_ONBOARDING_POINTER"
}
}Response
{
"data": {
"deletePin": {
"clientMutationId": "string",
"errors": [
"string"
],
"pins": [
{
"id": "id",
"list": "FEATURED",
"position": 1,
"target": {
"__typename": "CustomOnboardingPointerPin"
}
}
]
}
}
}