import { html } from 'lit-html'; /* ```mermaid graph TD; queryConfig-->providence; ProvidenceConfig-->providence; providence-->QueryResult; ``` */ export const providenceFlowSvg = html`
queryConfig
providence
ProvidenceConfig
QueryResult
`; /* ```mermaid sequenceDiagram participant providence participant InputDataService participant QueryService participant ReportService providence->>InputDataService: Give all search targets, based on 'queryConfig' InputDataService->>providence: 'InputData' providence->>QueryService: Run query, based on 'queryConfig' QueryService->>providence: 'QueryResult' providence->>ReportService: Give a report, based on 'QueryResult' and 'ProvidenceConfig' ReportService->>providence: Done... ``` */ export const providenceInternalFlowSvg = html` providence InputDataService QueryService ReportService Give all search targets, based on 'queryConfig' 'InputData' Run query, based on 'queryConfig' 'QueryResult' Give a report, based on 'QueryResult' and 'ProvidenceConfig' Done... providence InputDataService QueryService ReportService `;