Remove C2C Connection

Use the below mutation to remove an existing C2C connection.

mutation (
    $connectionId: ID!
  ) {
    removeC2cConnection (
      connectionId: $connectionId
    ) {
      id
      type
      insertedAt
      updatedAt
      startedAt
      user {
        id
      }
      connectedUser {
        id
      }
    }
  }

Last updated

Was this helpful?