Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions kgrapher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ sequenceDiagram
SR-->>K: SystemRecordList (list of base URLs)

loop for each system
K->>S: GET /<system>/kgraph
K->>S: GET /{sys}/kgraph
S-->>K: Turtle fragment (@prefix + alc:System / afo:UnitAsset / afo:Service / …)
end

K->>K: dedupe prefixes, rewrite via localOntologies,<br/>prepend cloud IRI, concatenate
opt graphDBurl configured
K->>G: SPARQL UPDATE<br/>CLEAR GRAPH <urn:state:current>;<br/>ADD GRAPH <snapshot-IRI> TO <urn:state:current>;
K->>G: SPARQL UPDATE<br/>CLEAR GRAPH urn:state:current;<br/>ADD GRAPH snapshot-IRI TO urn:state:current
end
K-->>User: merged TTL (text/turtle)
```
Expand Down
2 changes: 1 addition & 1 deletion modeler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ sequenceDiagram
SR-->>M: SystemRecordList (list of base URLs)

loop for each system
M->>S: GET /<system>/smodel
M->>S: GET /{sys}/smodel
S-->>M: SysML v2 fragment (port defs, part defs, IBD part, behaviour defs)
end

Expand Down
Loading