Current configuration

graph TD

  subgraph Reskontra
   rd --> ri[Reminders]
   rd --> kr[Krav]
   rd --> sg[Sergel]
  end

  subgraph Payment
   rd --> ag[Autogiro]
   bg[Bankgiro] --> rd
  end

  subgraph Invoice
    iv --> rd[Raindance]
    bv[BVF] --> iv[Invoice]
    iv --> ev[Print services]
  end

  subgraph Authorisation/Posting
    ca --> nh[NHS]
    pb[Postive Balance] --> nh
    x1[Payments?] --> pb
    nh --> pl[PLS]
    pl --> bv[BVF]
    di[Discount] --> bv
    di --> bl[Balance]
    bl --> pb
  end


  subgraph Onboarding
    on --> ca[Card]
    on[Onboarding] --> cu[Customer]
    on --> ac[Account]
    ca --> id[Idemia]
  end

Migration step 1

# graph TD


subgraph Reskontra
rd --> ri[Reminders]
rd --> kr[Krav]
rd --> sg[Sergel]
end

subgraph Payment
rd --> ag[Autogiro]
bg[Bankgiro] --> rd
end

subgraph Invoice
iv --> rd[Raindance]
bv[BVF] --> iv[Invoice]
iv --> ev[Print services]
end

subgraph CCP
sy[Sync] --> ca[Card]
sy --> cu[Customer]
sy --> ac[Account]
end

subgraph ONUSAuthorisation/Posting
x1[Payments?] --> pb
pb[Postive Balance] --> nh
nh[NHS] --> pl[PLS]
pl --> bv[BVF]
di[Discount] --> bv
di --> bl[Balance]
bl --> pb
end


subgraph Enfuce
en --> sy
end

subgraph Idemia
ca --> id[Idemia]
en --> id[Idemia]
end

# subgraph Onboarding
  we[WEB] --> st[Stacc]
  st ---> so[SIS APIM]
  so ---> en[Enfuce]
end