UnfollowInput
The UnfollowInput input type specifies the params required to unfollow an address.
input UnfollowInput {
  fromAddr: String!
  toAddr: String!
  signature: String!
  operation: String!
  signingKey: String!
}
Fields
fromAddr (String)
fromAddr the user's address.
toAddr (String)
toAddr the address the user wants to unfollow.
signature (String)
signature the signature from signing the operation json string.
operation (String)
operation the operation json string to sign.
signingKey (String)
signingKey the registered signing key.