Skip to content

Fixing CI mirrored tables mermaid chart

Omar Qunsul requested to merge fixing-ci-mirrored-tables-mermaid-chart into master

What does this MR do and why?

This is a fix for the Mermaid chart here

Joins are not allowed here should be between the two subgraphs.

How to set up and validate locally

graph LR
    subgraph CI["CI Tables"]
        E[other CI tables]
        F{queries with joins allowed}
        G[ci_project_mirrors]
        H[ci_namespace_mirrors]

        E---F
        F---G
        F---H
    end

    Main["Main Tables"]---L["⛔ ← Joins are not allowed → ⛔"]
    L---CI

    subgraph Main["Main Tables"]
        A[other main tables]
        B{queries with joins allowed}
        C[projects]
        D[namespaces]

        A---B
        B---C
        B---D
    end

You can try this on mermaid.live

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Omar Qunsul

Merge request reports

Loading