Remove B2C Connection

Use the below mutation to remove existing B2C connection(s).

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

Last updated

Was this helpful?