Remove B2B Connection

Use the below mutation to remove existing B2B Connection(s).

mutation (
    $connectionId: ID!
  ) {
    removeB2bConnection (
      connectionId: $connectionId
    ) {
      id
      type
      createdAt
      updatedAt
      startedAt
      company {
        id
      }
      connectedCompany {
        id
      }
    }
  }

Last updated

Was this helpful?