feat: 가상화 문서들 추가

This commit is contained in:
DongHyeonka
2026-09-10 08:54:05 +09:00
parent e9f6a93327
commit 43e1aadef0
695 changed files with 153404 additions and 12754 deletions
@@ -0,0 +1,20 @@
# 반환 부모 수 N이 컬렉션 초기화와 자식 SELECT 횟수를 결정한다
## Alternative text
FeedItem N개를 반환하는 loadFeed 요청이 컬렉션 초기화 N회와 Highlight SELECT N회로 이어지는 인과 흐름도.
## Long description
왼쪽의 loadFeed 요청은 한 페이지에서 N개의 FeedItem을 반환한다. 매핑이 각 부모의 Highlight 컬렉션에 접근하면 컬렉션 초기화가 부모마다 한 번씩 일어나 총 N회가 된다. 현재 기준선에서는 배치나 서브셀렉트가 없어 초기화 한 번마다 Highlight SELECT도 한 번 실행되므로 추가 조회가 N회 발생한다. 각 SELECT는 해당 부모의 Highlight 자식 행을 전부 읽는다.
## Elements and evidence
- **loadFeed(0, N) → FeedItem N개** (request): 한 요청에서 반환한 부모 수 N이 N+1 증가 계수가 되는 피드 조회. Evidence: L382L385, L455L456.
- **Highlight 컬렉션 초기화 N회** (operation): 각 FeedItem의 지연 컬렉션 접근이 부모마다 한 번의 초기화를 만든 결과. Evidence: L374L375, L431L431, L437L439.
- **Highlight SELECT N회** (query): 배치와 서브셀렉트가 없는 기준선에서 컬렉션 초기화마다 실행되는 자식 SELECT. Evidence: L374L375, L437L442.
## Relationships
- **Highlight 컬렉션 초기화 N회 → Highlight SELECT N회:** SELECT 실행. Evidence: L374L375, L437L439.
- **loadFeed(0, N) → FeedItem N개 → Highlight 컬렉션 초기화 N회:** 컬렉션 접근. Evidence: L437L439.
@@ -0,0 +1,14 @@
# 반환 부모 수 N이 컬렉션 초기화와 자식 SELECT 횟수를 결정한다
# Question: 왜 한 번의 피드 요청에서 반환한 FeedItem 수 N이 Highlight 추가 조회 N회로 이어지는가?
direction: right
n0: "loadFeed(0, N) → FeedItem N개" {
shape: rectangle
}
n1: "Highlight 컬렉션 초기화 N회" {
shape: rectangle
}
n2: "Highlight SELECT N회" {
shape: rectangle
}
n0 -> n1: "컬렉션 접근"
n1 -> n2: "SELECT 실행"
@@ -0,0 +1,10 @@
digraph techviz {
graph [rankdir=LR, splines=ortho, nodesep=0.55, ranksep=0.85];
node [fontname=Helvetica, fontsize=11, margin="0.18,0.12", style="rounded,filled", fillcolor=white, color="#2d4357", penwidth=1.5];
edge [fontname=Helvetica, fontsize=10, color="#364b5f", penwidth=1.4, arrowsize=0.75];
n0 [label="loadFeed(0, N) → FeedItem N개", shape=box, style="rounded,filled"];
n1 [label="Highlight 컬렉션 초기화 N회", shape=box, style="rounded,filled"];
n2 [label="Highlight SELECT N회", shape=box, style="rounded,filled"];
n0 -> n1 [label="컬렉션 접근", style=solid];
n1 -> n2 [label="SELECT 실행", style=solid];
}
@@ -5,21 +5,21 @@
<root>
<mxCell id="0"/>
<mxCell id="1" parent="0"/>
<mxCell id="n_feed-request" value="loadFeed(0, N) → FeedItem N개&lt;br/&gt;page size = 반환 부모 수 N" tooltip="한 요청에서 반환한 부모 수 N이 N+1 증가 계수가 되는 피드 조회. | Evidence: L341-L341, L398-L398" style="whiteSpace=wrap;html=1;rounded=1;strokeWidth=2;fontSize=14;fontStyle=1;fillColor=#ffffff;strokeColor=#2d4357;verticalAlign=middle;" vertex="1" parent="1">
<mxCell id="n_feed-request" value="loadFeed(0, N) → FeedItem N개&lt;br/&gt;page size = 반환 부모 수 N" tooltip="한 요청에서 반환한 부모 수 N이 N+1 증가 계수가 되는 피드 조회. | Evidence: L382-L385, L455-L456" style="whiteSpace=wrap;html=1;rounded=1;strokeWidth=2;fontSize=14;fontStyle=1;fillColor=#ffffff;strokeColor=#2d4357;verticalAlign=middle;" vertex="1" parent="1">
<mxGeometry x="70.0" y="60.0" width="181.0" height="91.0" as="geometry"/>
</mxCell>
<mxCell id="n_collection-initializations" value="Highlight 컬렉션 초기화 N회&lt;br/&gt;collectionFetches = N" tooltip="각 FeedItem의 지연 컬렉션 접근이 부모마다 한 번의 초기화를 만든 결과. | Evidence: L337-L337, L378-L384" style="whiteSpace=wrap;html=1;rounded=1;strokeWidth=2;fontSize=14;fontStyle=1;fillColor=#ffffff;strokeColor=#2d4357;verticalAlign=middle;strokeColor=#2563eb;strokeWidth=2;" vertex="1" parent="1">
<mxCell id="n_collection-initializations" value="Highlight 컬렉션 초기화 N회&lt;br/&gt;collectionFetches = N" tooltip="각 FeedItem의 지연 컬렉션 접근이 부모마다 한 번의 초기화를 만든 결과. | Evidence: L374-L375, L431-L431, L437-L439" style="whiteSpace=wrap;html=1;rounded=1;strokeWidth=2;fontSize=14;fontStyle=1;fillColor=#ffffff;strokeColor=#2d4357;verticalAlign=middle;strokeColor=#2563eb;strokeWidth=2;" vertex="1" parent="1">
<mxGeometry x="411.0" y="70.0" width="181.0" height="71.0" as="geometry"/>
</mxCell>
<mxCell id="n_highlight-selects" value="Highlight SELECT N회&lt;br/&gt;부모별 자식 행 전부 조회" tooltip="배치와 서브셀렉트가 없는 기준선에서 컬렉션 초기화마다 실행되는 자식 SELECT. | Evidence: L337-L337, L384-L385" style="whiteSpace=wrap;html=1;rounded=1;strokeWidth=2;fontSize=14;fontStyle=1;fillColor=#ffffff;strokeColor=#2d4357;verticalAlign=middle;" vertex="1" parent="1">
<mxCell id="n_highlight-selects" value="Highlight SELECT N회&lt;br/&gt;부모별 자식 행 전부 조회" tooltip="배치와 서브셀렉트가 없는 기준선에서 컬렉션 초기화마다 실행되는 자식 SELECT. | Evidence: L374-L375, L437-L442" style="whiteSpace=wrap;html=1;rounded=1;strokeWidth=2;fontSize=14;fontStyle=1;fillColor=#ffffff;strokeColor=#2d4357;verticalAlign=middle;" vertex="1" parent="1">
<mxGeometry x="752.0" y="70.0" width="167.0" height="71.0" as="geometry"/>
</mxCell>
<mxCell id="e_initialization-runs-select" value="초기화마다 SELECT 1회" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=2;endArrow=block;endFill=1;" edge="1" parent="1" source="n_collection-initializations" target="n_highlight-selects">
<mxCell id="e_initialization-runs-select" value="SELECT 실행" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=2;endArrow=block;endFill=1;" edge="1" parent="1" source="n_collection-initializations" target="n_highlight-selects">
<mxGeometry relative="1" as="geometry">
<mxPoint x="672.0" y="77.5" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="e_parents-trigger-initialization" value="아이템마다 컬렉션 접근" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=2;endArrow=block;endFill=1;" edge="1" parent="1" source="n_feed-request" target="n_collection-initializations">
<mxCell id="e_parents-trigger-initialization" value="컬렉션 접근" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=2;endArrow=block;endFill=1;" edge="1" parent="1" source="n_feed-request" target="n_collection-initializations">
<mxGeometry relative="1" as="geometry">
<mxPoint x="331.0" y="77.5" as="offset"/>
</mxGeometry>
@@ -0,0 +1,418 @@
{
"type": "excalidraw",
"version": 2,
"source": "techviz-harness",
"elements": [
{
"id": "edge-initialization-runs-select",
"type": "arrow",
"x": 592.0,
"y": 105.5,
"width": 160.0,
"height": 0.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": null,
"seed": 1318721908,
"version": 1,
"versionNonce": 1365968324,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false,
"points": [
[
0.0,
0.0
],
[
80.0,
0.0
],
[
80.0,
0.0
],
[
160.0,
0.0
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "node-collection-initializations",
"focus": 0,
"gap": 4
},
"endBinding": {
"elementId": "node-highlight-selects",
"focus": 0,
"gap": 4
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": true
},
{
"id": "edge-label-initialization-runs-select",
"type": "text",
"x": 627.0,
"y": 65.5,
"width": 90,
"height": 24,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 1,
"strokeStyle": "solid",
"roughness": 0,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 243019414,
"version": 1,
"versionNonce": 55617789,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false,
"fontSize": 13,
"fontFamily": 5,
"text": "SELECT 실행",
"textAlign": "center",
"verticalAlign": "middle",
"containerId": null,
"originalText": "SELECT 실행",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "edge-parents-trigger-initialization",
"type": "arrow",
"x": 251.0,
"y": 105.5,
"width": 160.0,
"height": 0.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": null,
"seed": 1302431294,
"version": 1,
"versionNonce": 1634581734,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false,
"points": [
[
0.0,
0.0
],
[
80.0,
0.0
],
[
80.0,
0.0
],
[
160.0,
0.0
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "node-feed-request",
"focus": 0,
"gap": 4
},
"endBinding": {
"elementId": "node-collection-initializations",
"focus": 0,
"gap": 4
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": true
},
{
"id": "edge-label-parents-trigger-initialization",
"type": "text",
"x": 286.0,
"y": 65.5,
"width": 90,
"height": 24,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 1,
"strokeStyle": "solid",
"roughness": 0,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 1896235428,
"version": 1,
"versionNonce": 97377696,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false,
"fontSize": 13,
"fontFamily": 5,
"text": "컬렉션 접근",
"textAlign": "center",
"verticalAlign": "middle",
"containerId": null,
"originalText": "컬렉션 접근",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "node-feed-request",
"type": "rectangle",
"x": 70.0,
"y": 60.0,
"width": 181.0,
"height": 91.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffffff",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 1722945234,
"version": 1,
"versionNonce": 1732177805,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false
},
{
"id": "node-label-feed-request",
"type": "text",
"x": 80.0,
"y": 70.0,
"width": 161.0,
"height": 71.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 1,
"strokeStyle": "solid",
"roughness": 0,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 619718788,
"version": 1,
"versionNonce": 1655842096,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false,
"fontSize": 15,
"fontFamily": 5,
"text": "loadFeed(0, N) → FeedItem N개\npage size = 반환 부모 수 N",
"textAlign": "center",
"verticalAlign": "middle",
"containerId": null,
"originalText": "loadFeed(0, N) → FeedItem N개\npage size = 반환 부모 수 N",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "node-collection-initializations",
"type": "rectangle",
"x": 411.0,
"y": 70.0,
"width": 181.0,
"height": 71.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffffff",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 110379247,
"version": 1,
"versionNonce": 1063194376,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false
},
{
"id": "node-label-collection-initializations",
"type": "text",
"x": 421.0,
"y": 80.0,
"width": 161.0,
"height": 51.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 1,
"strokeStyle": "solid",
"roughness": 0,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 278060709,
"version": 1,
"versionNonce": 164287162,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false,
"fontSize": 15,
"fontFamily": 5,
"text": "Highlight 컬렉션 초기화 N회\ncollectionFetches = N",
"textAlign": "center",
"verticalAlign": "middle",
"containerId": null,
"originalText": "Highlight 컬렉션 초기화 N회\ncollectionFetches = N",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "node-highlight-selects",
"type": "rectangle",
"x": 752.0,
"y": 70.0,
"width": 167.0,
"height": 71.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffffff",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 901339311,
"version": 1,
"versionNonce": 545382502,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false
},
{
"id": "node-label-highlight-selects",
"type": "text",
"x": 762.0,
"y": 80.0,
"width": 147.0,
"height": 51.0,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 1,
"strokeStyle": "solid",
"roughness": 0,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": null,
"roundness": {
"type": 3
},
"seed": 647185193,
"version": 1,
"versionNonce": 436143708,
"isDeleted": false,
"boundElements": [],
"updated": 0,
"link": null,
"locked": false,
"fontSize": 15,
"fontFamily": 5,
"text": "Highlight SELECT N회\n부모별 자식 행 전부 조회",
"textAlign": "center",
"verticalAlign": "middle",
"containerId": null,
"originalText": "Highlight SELECT N회\n부모별 자식 행 전부 조회",
"autoResize": true,
"lineHeight": 1.25
}
],
"appState": {
"gridSize": 10,
"viewBackgroundColor": "#ffffff",
"currentItemFontFamily": 5
},
"files": {}
}
@@ -0,0 +1,32 @@
{
"harness_version": "0.2.0",
"spec_id": "nplus1-query-fanout",
"spec_version": "1.1",
"spec_sha256": "4d4e299c1c63db78c22a369d0065beed6ca55a83a2c19a305b85bca7c9619b7d",
"source_context": {
"document": "docs/n+1liner/final/document.md",
"document_sha256": "f9e048a68db0ab82078955bf611b06a71a0033539e0c87ff0aa0d620a3126e36",
"anchor": {
"kind": "heading",
"value": "6.2 실측 — 조회량이 N에 정확히 비례한다",
"line": 380
}
},
"outputs": [
"nplus1-query-fanout.svg",
"nplus1-query-fanout.drawio",
"nplus1-query-fanout.mmd",
"nplus1-query-fanout.d2",
"nplus1-query-fanout.dot",
"nplus1-query-fanout.excalidraw",
"nplus1-query-fanout.alt.md"
],
"lint_issue_count": 0,
"assumption_count": 0,
"assumptions_allowed": false,
"composition_profile": "component-flow",
"reference_ids": [
"payment-event-flow"
],
"diagram_only": true
}
@@ -0,0 +1,8 @@
%% 반환 부모 수 N이 컬렉션 초기화와 자식 SELECT 횟수를 결정한다
%% question: 왜 한 번의 피드 요청에서 반환한 FeedItem 수 N이 Highlight 추가 조회 N회로 이어지는가?
flowchart LR
n0["loadFeed(0, N) → FeedItem N개"]
n1["Highlight 컬렉션 초기화 N회"]
n2["Highlight SELECT N회"]
n0 -->|"컬렉션 접근"| n1
n1 -->|"SELECT 실행"| n2
@@ -2,7 +2,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="964" height="300" viewBox="0 0 964 300" role="img" aria-labelledby="diagram-title diagram-description">
<title id="diagram-title">반환 부모 수 N이 컬렉션 초기화와 자식 SELECT 횟수를 결정한다</title>
<desc id="diagram-description">왼쪽의 loadFeed 요청은 한 페이지에서 N개의 FeedItem을 반환한다. 매핑이 각 부모의 Highlight 컬렉션에 접근하면 컬렉션 초기화가 부모마다 한 번씩 일어나 총 N회가 된다. 현재 기준선에서는 배치나 서브셀렉트가 없어 초기화 한 번마다 Highlight SELECT도 한 번 실행되므로 추가 조회가 N회 발생한다. 각 SELECT는 해당 부모의 Highlight 자식 행을 전부 읽는다.</desc>
<metadata>{&quot;techviz&quot;:{&quot;spec_version&quot;:&quot;1.1&quot;,&quot;id&quot;:&quot;nplus1-query-fanout&quot;,&quot;profile&quot;:&quot;component-flow&quot;},&quot;source_context&quot;:{&quot;document&quot;:&quot;/home/donghyeon/workspace/ai-tool/topic-arrange/n+1liner/n+1liner.md&quot;,&quot;document_sha256&quot;:&quot;1bb38964ca2a849690f5355646c1aa988111b4cd4e1055c6cb05cf7e5fc35cde&quot;,&quot;anchor&quot;:{&quot;kind&quot;:&quot;marker&quot;,&quot;value&quot;:&quot;nplus1-query-fanout&quot;,&quot;line&quot;:380}},&quot;evidence_policy&quot;:&quot;Each factual element cites source lines or is marked assumption.&quot;,&quot;diagram_only&quot;:true}</metadata>
<metadata>{&quot;techviz&quot;:{&quot;spec_version&quot;:&quot;1.1&quot;,&quot;id&quot;:&quot;nplus1-query-fanout&quot;,&quot;profile&quot;:&quot;component-flow&quot;},&quot;source_context&quot;:{&quot;document&quot;:&quot;docs/n+1liner/final/document.md&quot;,&quot;document_sha256&quot;:&quot;f9e048a68db0ab82078955bf611b06a71a0033539e0c87ff0aa0d620a3126e36&quot;,&quot;anchor&quot;:{&quot;kind&quot;:&quot;heading&quot;,&quot;value&quot;:&quot;6.2 실측 — 조회량이 N에 정확히 비례한다&quot;,&quot;line&quot;:380}},&quot;evidence_policy&quot;:&quot;Each factual element cites source lines or is marked assumption.&quot;,&quot;diagram_only&quot;:true}</metadata>
<defs>
<marker id="arrow" viewBox="0 0 10 10" refX="9" refY="5" markerWidth="7" markerHeight="7" orient="auto-start-reverse">
<path d="M 0 0 L 10 5 L 0 10 z" />
@@ -50,27 +50,27 @@
</style>
</defs>
<rect class="canvas" width="964" height="300" />
<polyline class="edge kind-request style-solid emphasis-normal" points="592.0,105.5 672.0,105.5 672.0,105.5 752.0,105.5" data-evidence="337-337,384-384" />
<rect class="edge-label-bg" x="612.8" y="63.5" width="118.5" height="22" rx="3" />
<text class="edge-label" x="672.0" y="78.5">초기화마다 SELECT 1회</text>
<polyline class="edge kind-request style-solid emphasis-primary" points="251.0,105.5 331.0,105.5 331.0,105.5 411.0,105.5" data-evidence="384-384" />
<rect class="edge-label-bg" x="281.8" y="63.5" width="98.4" height="22" rx="3" />
<text class="edge-label" x="331.0" y="78.5">아이템마다 컬렉션 접근</text>
<polyline class="edge kind-request style-solid emphasis-normal" points="592.0,105.5 672.0,105.5 672.0,105.5 752.0,105.5" data-evidence="374-375,437-439" />
<rect class="edge-label-bg" x="632.9" y="63.5" width="78.3" height="22" rx="3" />
<text class="edge-label" x="672.0" y="78.5">SELECT 실행</text>
<polyline class="edge kind-request style-solid emphasis-primary" points="251.0,105.5 331.0,105.5 331.0,105.5 411.0,105.5" data-evidence="437-439" />
<rect class="edge-label-bg" x="301.9" y="63.5" width="58.2" height="22" rx="3" />
<text class="edge-label" x="331.0" y="78.5">컬렉션 접근</text>
<g id="node-feed-request">
<rect class="node-shape kind-request emphasis-normal role-source" data-evidence="341-341,398-398" x="70.0" y="60.0" width="181.0" height="91.0" rx="7" />
<rect class="node-shape kind-request emphasis-normal role-source" data-evidence="382-385,455-456" x="70.0" y="60.0" width="181.0" height="91.0" rx="7" />
<text class="node-label" x="160.5" y="87.0">loadFeed(0, N) →</text>
<text class="node-label" x="160.5" y="105.0">FeedItem N개</text>
<line class="node-detail-divider" x1="84.0" y1="126.0" x2="237.0" y2="126.0" />
<text class="node-detail" x="86.0" y="143.0">page size = 반환 부모 수 N</text>
</g>
<g id="node-collection-initializations">
<rect class="node-shape kind-operation emphasis-primary role-service" data-evidence="337-337,378-384" x="411.0" y="70.0" width="181.0" height="71.0" rx="7" />
<rect class="node-shape kind-operation emphasis-primary role-service" data-evidence="374-375,431-431,437-439" x="411.0" y="70.0" width="181.0" height="71.0" rx="7" />
<text class="node-label" x="501.5" y="97.0">Highlight 컬렉션 초기화 N회</text>
<line class="node-detail-divider" x1="425.0" y1="118.0" x2="578.0" y2="118.0" />
<text class="node-detail" x="427.0" y="135.0">collectionFetches = N</text>
</g>
<g id="node-highlight-selects">
<rect class="node-shape kind-query emphasis-normal role-sink" data-evidence="337-337,384-385" x="752.0" y="70.0" width="167.0" height="71.0" rx="7" />
<rect class="node-shape kind-query emphasis-normal role-sink" data-evidence="374-375,437-442" x="752.0" y="70.0" width="167.0" height="71.0" rx="7" />
<text class="node-label" x="835.5" y="97.0">Highlight SELECT N회</text>
<line class="node-detail-divider" x1="766.0" y1="118.0" x2="905.0" y2="118.0" />
<text class="node-detail" x="768.0" y="135.0">부모별 자식 행 전부 조회</text>

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB