Conversation
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
Member
|
[CONFIRMED] 링크 뒤 마침표/하이픈/언더스코어로 문서 참조 추출 누락 정규식의 lookahead (?=$|[^A-Za-z0-9._~-])가 URL 뒤에 오는 문자가 URI-unreserved 문자(., _, ~, -)이면 매칭 자체를 실패시킵니다. 실제로 컴파일해서 확인한 결과:
"문장을 링크로 마무리하고 마침표를 바로 붙이는" 매우 흔한 작성 패턴에서 참조가 조용히 누락되어 그래프 간선이 빠집니다. 현재 테스트는 모두 줄바꿈으로 끝나는 케이스만 다루고 요거 한번만 확인해주세요! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
조직 문서 연결 정보를 기준으로 크루 관계 그래프를 조회하는 API를 추가
추출기, 서비스 및 API 통합 테스트를 추가했으며 전체 테스트 통과 확인flowchart TD A["GET /graph?generation=8기"] --> B["조직 제목으로 연결된 크루 문서 조회"] B --> C["크루 문서 노드 생성"] B --> D["각 문서 본문에서 참조 UUID 추출"] D --> E{"현재 그래프의 다른 크루인가?"} E -- "예" --> F["REFERENCE 간선 생성"] E -- "아니오" --> G["참조 제외"] F --> H["중복·상호 참조 통합"] C --> I["노드와 간선 응답"] H --> IRelated Issue
#177