The keycloak project ended with four open questions that design could not
settle. A two-VM lab was built to answer them by measurement, and this is
that material: 26 experiments, 125 raw command outputs, 22 browser captures.
Follows the import procedure in README.md.
source/ the originating repository verbatim — 78 documents, 28 SVGs,
8 manifests, plus .source-revision recording the commit
final/ the SSOT
document.md 729 lines written from the 29 experiment documents, not
concatenated: what was predicted, what was measured, and
where the measurement itself was wrong
evidence/raw 125 outputs, flattened to <experiment>__<file> because
the originals collided (01-baseline.txt appeared three
times) and the audit only globs the top level
evidence/meta one per raw file; command and exitCode are null and the
README says why rather than inventing them
evidence/browser 22 captures
assets/ three diagrams through techviz
.techviz/ their VizSpecs
A separate project rather than an addition to keycloak: the B-layer answers
that project's four questions, but the A, C and D layers are about cluster
failure, SSO and operations, and one document.md should hold one subject.
The four question records there can point here through 관계.
Recorded rather than papered over: only three of the 28 diagrams were
remade. The repository forbids hand-drawn SVG and forbids titles inside the
canvas; all 28 originals carry both, so converting them is redrawing, not
reformatting. They stay in source/ and the gap is written into the document.
verify-pipeline.py passes. audit-records.py reports no issues.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
129 lines
21 KiB
XML
129 lines
21 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="2152" viewBox="0 0 1200 2152" role="img">
|
|
<title>terminal evidence</title>
|
|
<desc>Terminal-style rendering generated from retained command output. Sensitive-looking values are redacted in the visual asset.</desc>
|
|
<rect x="1" y="1" width="1198" height="2150" rx="14" fill="#0d1117" stroke="#30363d"/>
|
|
<rect x="1" y="1" width="1198" height="44" rx="14" fill="#161b22"/>
|
|
<rect x="1" y="30" width="1198" height="14" fill="#161b22"/>
|
|
<circle cx="24" cy="22" r="6" fill="#ff5f57"/>
|
|
<circle cx="44" cy="22" r="6" fill="#febc2e"/>
|
|
<circle cx="64" cy="22" r="6" fill="#28c840"/>
|
|
<text x="92" y="27" fill="#8b949e" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace">terminal evidence</text>
|
|
<text x="24" y="68" fill="#c9d1d9" font-size="15" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">$ set -e
|
|
set -o pipefail
|
|
G=src/adapter/inbound/graphql/src/main/java/dev/caskeleton/adapter/inbound/graphql/schema
|
|
echo </tspan><tspan x="24" dy="22">"# 정책 클래스가 자바독 첫 줄에 적은 주체"
|
|
sed -n '3,13p' $G/GraphQlOneOfPolicy.java
|
|
echo
|
|
echo "# 강제하는 두 코드와, 자</tspan><tspan x="24" dy="22">기 파일 밖에서 그것을 부르는 자리"
|
|
for f in GraphQlOneOfSchemaGate GraphQlOneOfInputValidator; do
|
|
echo " $f :"
|
|
git </tspan><tspan x="24" dy="22">grep -n "$f\." -- "src/**/*.java" \
|
|
| awk -F: -v self="/$f.java" 'index($1, self) == 0' \
|
|
| sed -E 's#^src/[^:]*</tspan><tspan x="24" dy="22">/src/(main|test)/[^:]*/([^:/]+):([0-9]+):.*# \1 · \2:\3#' | sort -u
|
|
done
|
|
echo
|
|
echo "# 정책을 참조하는 자리"
|
|
git grep</tspan><tspan x="24" dy="22"> -n 'GraphQlOneOfPolicy\.' -- "src/**/*.java" \
|
|
| sed -E 's#^src/[^:]*/src/(main|test)/[^:]*/([^:/]+):([0-9]+):(.*)# </tspan><tspan x="24" dy="22">\1 · \2:\3 \4#'
|
|
echo
|
|
echo "# 이 저장소가 쓰는 graphql-java 판본"
|
|
grep -n 'com.graphql-java:graphql-java:' src/adapter/i</tspan><tspan x="24" dy="22">nbound/graphql/gradle.lockfile \
|
|
| sed -E 's#^([0-9]+):([^=]+)=.*# gradle.lockfile:\1 \2#'
|
|
echo
|
|
echo "# 스키마 파일</tspan><tspan x="24" dy="22">과 그 안의 oneOf 선언"
|
|
find src -name '*.graphqls' -not -path '*/build/*' | sed 's#^# #'
|
|
echo -n " 그중 @oneOf 를 선언</tspan><tspan x="24" dy="22">한 파일 : "
|
|
f=$(git grep -ln 'oneOf' -- "src/**/*.graphqls" | tr '\n' ' ' || true)
|
|
echo "${f:-(없음)}"
|
|
echo
|
|
echo "# 그 </tspan><tspan x="24" dy="22">계약 스위트를 부르는 자리와 그것을 도는 레인"
|
|
git grep -n 'GraphQlSchemaContractSuite' -- "src/**/*.java" \
|
|
| grep -v </tspan><tspan x="24" dy="22">'/GraphQlSchemaContractSuite.java' \
|
|
| sed -E 's#^src/[^:]*/src/([a-zA-Z]+)/[^:]*/([^:/]+):([0-9]+):.*# \1 · \2:\3#'</tspan><tspan x="24" dy="22">
|
|
grep -n '@Tag' src/adapter/inbound/graphql/src/test/java/dev/caskeleton/adapter/inbound/graphql/testkit/GraphQlCrossMod</tspan><tspan x="24" dy="22">uleContractSuiteTest.java \
|
|
| sed 's#^# GraphQlCrossModuleContractSuiteTest:#'
|
|
echo " 기본 test 레인이 배제하는 태그</tspan><tspan x="24" dy="22"> :"
|
|
grep -n '' src/gradle/graphql-platform-conventions.gradle | sed -n '49,52p' \
|
|
| sed 's#^# graphql-platform-conv</tspan><tspan x="24" dy="22">entions.gradle:#'
|
|
echo
|
|
echo "# 두 강제 코드가 인스턴스를 갖지 않는다는 것"
|
|
grep -n 'private GraphQlOneOf' $G/GraphQlOneO</tspan><tspan x="24" dy="22">fSchemaGate.java $G/GraphQlOneOfInputValidator.java \
|
|
| sed -E 's#^.*/([^:/]+):([0-9]+):(.*)# \1:\2 \3#'
|
|
echo
|
|
echo "#</tspan><tspan x="24" dy="22"> 이 계열 타입을 API 표면으로 적어 둔 문서"
|
|
git grep -n 'GraphQlOneOf' -- docs/architecture/ | sed -E 's#^docs/([^:]+):([</tspan><tspan x="24" dy="22">0-9]+):(.*)# \1:\2 \3#'
|
|
</tspan></text>
|
|
<text x="24" y="486" fill="#8b949e" font-size="13" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">cwd: /shared/codebase/clean-architecture-backend-template</tspan></text>
|
|
<text x="24" y="508" fill="#8b949e" font-size="13" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">time: 2026-09-03T08:09:09+00:00 · exit 0</tspan></text>
|
|
<line x1="24" y1="522" x2="1176" y2="522" stroke="#30363d"/>
|
|
<text x="24" y="562" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 정책 클래스가 자바독 첫 줄에 적은 주체</tspan></text>
|
|
<text x="24" y="584" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">/**</tspan></text>
|
|
<text x="24" y="606" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> * The September 2025 {@code @oneOf} input rules the platform enforces (design §7.5).</tspan></text>
|
|
<text x="24" y="628" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> *</tspan></text>
|
|
<text x="24" y="650" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> * <p>{@code @oneOf} lets a schema express "exactly one of these selectors" instead of leaving it to</tspan></text>
|
|
<text x="24" y="672" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> * a hand-written validator that each resolver has to remember. The rules are stated here once so</tspan></text>
|
|
<text x="24" y="694" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> * the schema gate and the runtime validator cannot disagree about what the directive means.</tspan></text>
|
|
<text x="24" y="716" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> */</tspan></text>
|
|
<text x="24" y="738" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">public final class GraphQlOneOfPolicy {</tspan></text>
|
|
<text x="24" y="760" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="782" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> /** Directive that marks an input object as one-of. */</tspan></text>
|
|
<text x="24" y="804" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> public static final String DIRECTIVE_NAME = "oneOf";</tspan></text>
|
|
<text x="24" y="826" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="848" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 강제하는 두 코드와, 자기 파일 밖에서 그것을 부르는 자리</tspan></text>
|
|
<text x="24" y="870" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> GraphQlOneOfSchemaGate :</tspan></text>
|
|
<text x="24" y="892" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:103</tspan></text>
|
|
<text x="24" y="914" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:120</tspan></text>
|
|
<text x="24" y="936" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:70</tspan></text>
|
|
<text x="24" y="958" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:71</tspan></text>
|
|
<text x="24" y="980" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:86</tspan></text>
|
|
<text x="24" y="1002" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0">src/adapter/inbound/graphql/src/testFixtures/java/dev/caskeleton/adapter/inbound/graphql/testkit/GraphQlSchemaContractSuite.java</tspan><tspan x="24" dy="22">:41: GraphQlOneOfSchemaGate.verify(assembled.registry());</tspan></text>
|
|
<text x="24" y="1046" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> GraphQlOneOfInputValidator :</tspan></text>
|
|
<text x="24" y="1068" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:28</tspan></text>
|
|
<text x="24" y="1090" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:38</tspan></text>
|
|
<text x="24" y="1112" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:40</tspan></text>
|
|
<text x="24" y="1134" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:50</tspan></text>
|
|
<text x="24" y="1156" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:51</tspan></text>
|
|
<text x="24" y="1178" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:60</tspan></text>
|
|
<text x="24" y="1200" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="1222" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 정책을 참조하는 자리</tspan></text>
|
|
<text x="24" y="1244" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> main · GraphQlOneOfInputValidator.java:35 if (!GraphQlOneOfPolicy.satisfied(present.size())) {</tspan></text>
|
|
<text x="24" y="1266" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> main · GraphQlOneOfInputValidator.java:37 GraphQlOneOfPolicy.violationMessage(present.size()), present);</tspan></text>
|
|
<text x="24" y="1288" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> main · GraphQlOneOfSchemaGate.java:46 if (!definition.hasDirective(GraphQlOneOfPolicy.DIRECTIVE_NAME)) {</tspan></text>
|
|
<text x="24" y="1310" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> main · GraphQlOneOfSchemaGate.java:74 .hasDirective(GraphQlOneOfPolicy.DIRECTIVE_NAME))</tspan></text>
|
|
<text x="24" y="1332" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:125 assertThat(GraphQlOneOfPolicy.DIRECTIVE_NAME).isEqualTo("oneOf");</tspan></text>
|
|
<text x="24" y="1354" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:126 assertThat(GraphQlOneOfPolicy.satisfied(1)).isTrue();</tspan></text>
|
|
<text x="24" y="1376" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:127 assertThat(GraphQlOneOfPolicy.satisfied(0)).isFalse();</tspan></text>
|
|
<text x="24" y="1398" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:128 assertThat(GraphQlOneOfPolicy.satisfied(2)).isFalse();</tspan></text>
|
|
<text x="24" y="1420" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlOneOfInputValidatorTest.java:129 assertThat(GraphQlOneOfPolicy.violationMessage(0)).contains("none supplied</tspan><tspan x="24" dy="22">");</tspan></text>
|
|
<text x="24" y="1464" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="1486" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 이 저장소가 쓰는 graphql-java 판본</tspan></text>
|
|
<text x="24" y="1508" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> gradle.lockfile:32 com.graphql-java:graphql-java:25.0</tspan></text>
|
|
<text x="24" y="1530" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="1552" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 스키마 파일과 그 안의 oneOf 선언</tspan></text>
|
|
<text x="24" y="1574" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/adapter/inbound/graphql/src/test/resources/graphql-platform/platform.graphqls</tspan></text>
|
|
<text x="24" y="1596" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/adapter/inbound/graphql/src/test/resources/graphql-qualification/qualification.graphqls</tspan></text>
|
|
<text x="24" y="1618" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> src/adapter/inbound/graphql/src/main/resources/graphql/skeleton.graphqls</tspan></text>
|
|
<text x="24" y="1640" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> 그중 @oneOf 를 선언한 파일 : (없음)</tspan></text>
|
|
<text x="24" y="1662" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="1684" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 그 계약 스위트를 부르는 자리와 그것을 도는 레인</tspan></text>
|
|
<text x="24" y="1706" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlCrossModuleContractSuiteTest.java:72</tspan></text>
|
|
<text x="24" y="1728" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlCrossModuleContractSuiteTest.java:76</tspan></text>
|
|
<text x="24" y="1750" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> test · GraphQlCrossModuleContractSuiteTest.java:81</tspan></text>
|
|
<text x="24" y="1772" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> GraphQlCrossModuleContractSuiteTest:23:@Tag("graphql-contract")</tspan></text>
|
|
<text x="24" y="1794" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> 기본 test 레인이 배제하는 태그 :</tspan></text>
|
|
<text x="24" y="1816" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> graphql-platform-conventions.gradle:49: tasks.named('test') {</tspan></text>
|
|
<text x="24" y="1838" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> graphql-platform-conventions.gradle:50: useJUnitPlatform {</tspan></text>
|
|
<text x="24" y="1860" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> graphql-platform-conventions.gradle:51: excludeTags 'quarantine', 'graphql-performance'</tspan></text>
|
|
<text x="24" y="1882" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> graphql-platform-conventions.gradle:52: }</tspan></text>
|
|
<text x="24" y="1904" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="1926" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 두 강제 코드가 인스턴스를 갖지 않는다는 것</tspan></text>
|
|
<text x="24" y="1948" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> GraphQlOneOfSchemaGate.java:23 private GraphQlOneOfSchemaGate() {}</tspan></text>
|
|
<text x="24" y="1970" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> GraphQlOneOfInputValidator.java:18 private GraphQlOneOfInputValidator() {}</tspan></text>
|
|
<text x="24" y="1992" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"></tspan></text>
|
|
<text x="24" y="2014" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"># 이 계열 타입을 API 표면으로 적어 둔 문서</tspan></text>
|
|
<text x="24" y="2036" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> architecture/graphql-api-surface.txt:387 dev.caskeleton.adapter.inbound.graphql.schema.GraphQlOneOfInputValidator</tspan></text>
|
|
<text x="24" y="2058" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> architecture/graphql-api-surface.txt:388 dev.caskeleton.adapter.inbound.graphql.schema.GraphQlOneOfPolicy</tspan></text>
|
|
<text x="24" y="2080" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> architecture/graphql-api-surface.txt:389 dev.caskeleton.adapter.inbound.graphql.schema.GraphQlOneOfSchemaGate</tspan></text>
|
|
<text x="24" y="2102" fill="#e6edf3" font-size="14" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" xml:space="preserve"><tspan x="24" dy="0"> architecture/graphql-api-surface.txt:390 dev.caskeleton.adapter.inbound.graphql.schema.GraphQlOneOfViolationException</tspan></text>
|
|
</svg>
|