Add repo tooling updates
This commit is contained in:
27
.claude/skills/debug-issue.md
Normal file
27
.claude/skills/debug-issue.md
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
name: Debug Issue
|
||||
description: Systematically debug issues using graph-powered code navigation
|
||||
---
|
||||
|
||||
## Debug Issue
|
||||
|
||||
Use the knowledge graph to systematically trace and debug issues.
|
||||
|
||||
### Steps
|
||||
|
||||
1. Use `semantic_search_nodes` to find code related to the issue.
|
||||
2. Use `query_graph` with `callers_of` and `callees_of` to trace call chains.
|
||||
3. Use `get_flow` to see full execution paths through suspected areas.
|
||||
4. Run `detect_changes` to check if recent changes caused the issue.
|
||||
5. Use `get_impact_radius` on suspected files to see what else is affected.
|
||||
|
||||
### Tips
|
||||
|
||||
- Check both callers and callees to understand the full context.
|
||||
- Look at affected flows to find the entry point that triggers the bug.
|
||||
- Recent changes are the most common source of new issues.
|
||||
|
||||
## Token Efficiency Rules
|
||||
- ALWAYS start with `get_minimal_context(task="<your task>")` before any other graph tool.
|
||||
- Use `detail_level="minimal"` on all calls. Only escalate to "standard" when minimal is insufficient.
|
||||
- Target: complete any review/debug/refactor task in ≤5 tool calls and ≤800 total output tokens.
|
||||
28
.claude/skills/explore-codebase.md
Normal file
28
.claude/skills/explore-codebase.md
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
name: Explore Codebase
|
||||
description: Navigate and understand codebase structure using the knowledge graph
|
||||
---
|
||||
|
||||
## Explore Codebase
|
||||
|
||||
Use the code-review-graph MCP tools to explore and understand the codebase.
|
||||
|
||||
### Steps
|
||||
|
||||
1. Run `list_graph_stats` to see overall codebase metrics.
|
||||
2. Run `get_architecture_overview` for high-level community structure.
|
||||
3. Use `list_communities` to find major modules, then `get_community` for details.
|
||||
4. Use `semantic_search_nodes` to find specific functions or classes.
|
||||
5. Use `query_graph` with patterns like `callers_of`, `callees_of`, `imports_of` to trace relationships.
|
||||
6. Use `list_flows` and `get_flow` to understand execution paths.
|
||||
|
||||
### Tips
|
||||
|
||||
- Start broad (stats, architecture) then narrow down to specific areas.
|
||||
- Use `children_of` on a file to see all its functions and classes.
|
||||
- Use `find_large_functions` to identify complex code.
|
||||
|
||||
## Token Efficiency Rules
|
||||
- ALWAYS start with `get_minimal_context(task="<your task>")` before any other graph tool.
|
||||
- Use `detail_level="minimal"` on all calls. Only escalate to "standard" when minimal is insufficient.
|
||||
- Target: complete any review/debug/refactor task in ≤5 tool calls and ≤800 total output tokens.
|
||||
28
.claude/skills/refactor-safely.md
Normal file
28
.claude/skills/refactor-safely.md
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
name: Refactor Safely
|
||||
description: Plan and execute safe refactoring using dependency analysis
|
||||
---
|
||||
|
||||
## Refactor Safely
|
||||
|
||||
Use the knowledge graph to plan and execute refactoring with confidence.
|
||||
|
||||
### Steps
|
||||
|
||||
1. Use `refactor_tool` with mode="suggest" for community-driven refactoring suggestions.
|
||||
2. Use `refactor_tool` with mode="dead_code" to find unreferenced code.
|
||||
3. For renames, use `refactor_tool` with mode="rename" to preview all affected locations.
|
||||
4. Use `apply_refactor_tool` with the refactor_id to apply renames.
|
||||
5. After changes, run `detect_changes` to verify the refactoring impact.
|
||||
|
||||
### Safety Checks
|
||||
|
||||
- Always preview before applying (rename mode gives you an edit list).
|
||||
- Check `get_impact_radius` before major refactors.
|
||||
- Use `get_affected_flows` to ensure no critical paths are broken.
|
||||
- Run `find_large_functions` to identify decomposition targets.
|
||||
|
||||
## Token Efficiency Rules
|
||||
- ALWAYS start with `get_minimal_context(task="<your task>")` before any other graph tool.
|
||||
- Use `detail_level="minimal"` on all calls. Only escalate to "standard" when minimal is insufficient.
|
||||
- Target: complete any review/debug/refactor task in ≤5 tool calls and ≤800 total output tokens.
|
||||
29
.claude/skills/review-changes.md
Normal file
29
.claude/skills/review-changes.md
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
name: Review Changes
|
||||
description: Perform a structured code review using change detection and impact
|
||||
---
|
||||
|
||||
## Review Changes
|
||||
|
||||
Perform a thorough, risk-aware code review using the knowledge graph.
|
||||
|
||||
### Steps
|
||||
|
||||
1. Run `detect_changes` to get risk-scored change analysis.
|
||||
2. Run `get_affected_flows` to find impacted execution paths.
|
||||
3. For each high-risk function, run `query_graph` with pattern="tests_for" to check test coverage.
|
||||
4. Run `get_impact_radius` to understand the blast radius.
|
||||
5. For any untested changes, suggest specific test cases.
|
||||
|
||||
### Output Format
|
||||
|
||||
Provide findings grouped by risk level (high/medium/low) with:
|
||||
- What changed and why it matters
|
||||
- Test coverage status
|
||||
- Suggested improvements
|
||||
- Overall merge recommendation
|
||||
|
||||
## Token Efficiency Rules
|
||||
- ALWAYS start with `get_minimal_context(task="<your task>")` before any other graph tool.
|
||||
- Use `detail_level="minimal"` on all calls. Only escalate to "standard" when minimal is insufficient.
|
||||
- Target: complete any review/debug/refactor task in ≤5 tool calls and ≤800 total output tokens.
|
||||
15
.codex/hooks.json
Normal file
15
.codex/hooks.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"hooks": {
|
||||
"PreToolUse": [
|
||||
{
|
||||
"matcher": "Bash",
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "[ -f graphify-out/graph.json ] && echo '{\"hookSpecificOutput\":{\"hookEventName\":\"PreToolUse\",\"additionalContext\":\"graphify: Knowledge graph exists. Read graphify-out/GRAPH_REPORT.md for god nodes and community structure before searching raw files.\"}}' || true"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -2,4 +2,4 @@
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||
exec "$ROOT_DIR/scripts/sync_devone_changed_files.sh" commit
|
||||
exec "$ROOT_DIR/scripts/post_git_hook.sh" commit
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||
exec "$ROOT_DIR/scripts/sync_devone_changed_files.sh" merge
|
||||
exec "$ROOT_DIR/scripts/post_git_hook.sh" merge
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||
exec "$ROOT_DIR/scripts/sync_devone_changed_files.sh" commit
|
||||
exec "$ROOT_DIR/scripts/post_git_hook.sh" commit
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1 +1,3 @@
|
||||
.DS_Store
|
||||
# Added by code-review-graph
|
||||
.code-review-graph/
|
||||
|
||||
10
AGENTS.md
10
AGENTS.md
@@ -7,3 +7,13 @@
|
||||
- If a task changes live DB objects such as table schema, trigger, stored procedure, or function, always add a SQL record file under `sql/manual_changes/`.
|
||||
- Name the SQL record file with the pattern `YYYY-MM-DD-<commit-message-stem>.sql`.
|
||||
- The SQL record file must include the actual SQL change that was applied, not just a note.
|
||||
|
||||
## graphify
|
||||
|
||||
This project has a graphify knowledge graph at graphify-out/.
|
||||
|
||||
Rules:
|
||||
- Before answering architecture or codebase questions, read graphify-out/GRAPH_REPORT.md for god nodes and community structure
|
||||
- If graphify-out/wiki/index.md exists, navigate it instead of reading raw files
|
||||
- For cross-module "how does X relate to Y" questions, prefer `graphify query "<question>"`, `graphify path "<A>" "<B>"`, or `graphify explain "<concept>"` over grep — these traverse the graph's EXTRACTED + INFERRED edges instead of scanning files
|
||||
- After modifying code files in this session, run `graphify update .` to keep the graph current (AST-only, no API cost)
|
||||
|
||||
39
CODE_REVIEW_GRAPH_PROMPT_HISTORY.md
Normal file
39
CODE_REVIEW_GRAPH_PROMPT_HISTORY.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# Code Review Graph Prompt History
|
||||
|
||||
History prompt dan arah kerja terkait `code-review-graph` pada sesi ini.
|
||||
|
||||
## Urutan Prompt
|
||||
|
||||
1. `kalo gitu km cob ainstal code-review-graph di laptop ini`
|
||||
2. `code-review-graph install --platform codex`
|
||||
3. `code-review-graph build`
|
||||
4. `lihat apakah dia lebih enak daripada Graphify buat Supervisor / ibl_registration`
|
||||
5. `1`
|
||||
Mengacu ke opsi: jelaskan alur `ibl_registration`.
|
||||
6. `gas`
|
||||
Mengacu ke langkah lanjutan: bedah detail `Order::save()`.
|
||||
7. `owh berarti berguna code review graph ya?`
|
||||
8. `nanti klo ada update code apaak akan otomatis build ulang tau gmn?`
|
||||
9. `2`
|
||||
Mengacu ke opsi: siapkan mode `watch` yang enak untuk repo ini.
|
||||
10. `km buat automation aja kalo commit ke main`
|
||||
11. `km buatkan sy smmarie char history terkait code review grapgh di sesi ini`
|
||||
12. `iya`
|
||||
Mengacu ke langkah: simpan ringkasan ke `README.md`.
|
||||
13. `km bisa buatkan history promtnya tadi?`
|
||||
14. `3 yg terkait code review graph, mulai dr instalsi di laptop ya`
|
||||
15. `bukan file mdnya`
|
||||
16. `oke rapikan dlm file md`
|
||||
|
||||
## Ringkas Arah Kerja
|
||||
|
||||
- Install `code-review-graph` global di laptop.
|
||||
- Integrasi `code-review-graph` ke Codex.
|
||||
- Build graph untuk repo ini.
|
||||
- Bandingkan kegunaan `code-review-graph` vs `graphify`.
|
||||
- Pakai `code-review-graph` untuk memetakan `ibl_registration`.
|
||||
- Lanjut bedah `Order::save()` sebagai inti alur modul.
|
||||
- Cek apakah update graph otomatis atau manual.
|
||||
- Siapkan `watch` helper untuk update graph.
|
||||
- Tambah automation Git agar `code-review-graph update` jalan saat aktivitas Git di `main`.
|
||||
- Dokumentasikan hasil setup dan history terkait.
|
||||
25
README.md
25
README.md
@@ -6,3 +6,28 @@ Jalankan `./scripts/install_devone_sync_hooks.sh` sekali untuk mengaktifkan hook
|
||||
Setelah itu, commit atau merge ke `main` akan otomatis sync file yang berubah ke `devone.aplikasi.web.id:/home/one/project/one/one-api-lab/` memakai `scripts/sync_devone_changed_files.sh`.
|
||||
Sync ini hanya mengirim file baru atau file yang berubah.
|
||||
Perubahan rename, move, atau delete sengaja di-skip supaya file dan folder di devone tidak ikut terhapus atau berpindah.
|
||||
|
||||
## Code Review Graph
|
||||
|
||||
Repo ini sudah disetup untuk `code-review-graph` agar eksplorasi struktur kode dan review perubahan lebih hemat context dibanding baca repo secara buta.
|
||||
|
||||
Status setup:
|
||||
- CLI global sudah terpasang di laptop: `code-review-graph`
|
||||
- MCP Codex sudah diregister lewat `~/.codex/config.toml`
|
||||
- Graph repo disimpan di `.code-review-graph/graph.db`
|
||||
|
||||
Perintah yang biasa dipakai:
|
||||
- Build awal graph: `code-review-graph build`
|
||||
- Update incremental setelah ada perubahan kode: `code-review-graph update`
|
||||
- Lihat statistik graph: `code-review-graph status`
|
||||
- Watch mode: `./scripts/code_review_graph_watch.sh`
|
||||
|
||||
Otomasi Git:
|
||||
- Saat `commit`, `merge`, atau `rewrite` di branch `main`, hook lokal akan menjalankan `code-review-graph update`
|
||||
- Setelah itu hook tetap lanjut ke auto sync devone yang sudah ada
|
||||
- Kalau update graph gagal, proses Git tidak dibatalkan; hook hanya log lalu lanjut
|
||||
|
||||
Catatan penggunaan:
|
||||
- `code-review-graph` paling berguna untuk mencari area modul, file, class, dan function yang spesifik
|
||||
- Tetap verifikasi ke file asli saat debug atau revisi logika detail
|
||||
- Untuk repo ini, `code-review-graph` terasa lebih stabil daripada `graphify` saat menelusuri modul seperti `ibl_registration`
|
||||
|
||||
7384
graphify-out/GRAPH_REPORT.md
Normal file
7384
graphify-out/GRAPH_REPORT.md
Normal file
File diff suppressed because it is too large
Load Diff
1
graphify-out/cache/0001e995f58816272d7d4d5a80fd3ce0476258218558e252ecf90889657d100a.json
vendored
Normal file
1
graphify-out/cache/0001e995f58816272d7d4d5a80fd3ce0476258218558e252ecf90889657d100a.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_health_2016_08_04_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/health/2016-08-04/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/000a7d862a34cdff94b1e537ccbc8e4dd9bb2b508239d606a85334f618be621d.json
vendored
Normal file
1
graphify-out/cache/000a7d862a34cdff94b1e537ccbc8e4dd9bb2b508239d606a85334f618be621d.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/000c1cf1f3355c6bab1a0ddd05f999a5630fc85099cef7599516eac6debbc465.json
vendored
Normal file
1
graphify-out/cache/000c1cf1f3355c6bab1a0ddd05f999a5630fc85099cef7599516eac6debbc465.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/000d694d246e13a5c512561f94cc2c57045f61880becb6a2f702a780c8149314.json
vendored
Normal file
1
graphify-out/cache/000d694d246e13a5c512561f94cc2c57045f61880becb6a2f702a780c8149314.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_kinesis_video_webrtc_storage_2018_05_10_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/kinesis-video-webrtc-storage/2018-05-10/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/0015893f0b540139ed7df94b878496aa68089d0dfb4a6b00eafe46ef67e03a22.json
vendored
Normal file
1
graphify-out/cache/0015893f0b540139ed7df94b878496aa68089d0dfb4a6b00eafe46ef67e03a22.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_machinelearning_exception_machinelearningexception_php", "label": "MachineLearningException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MachineLearning/Exception/MachineLearningException.php", "source_location": "L1"}, {"id": "machinelearningexception_machinelearningexception", "label": "MachineLearningException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MachineLearning/Exception/MachineLearningException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_machinelearning_exception_machinelearningexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MachineLearning/Exception/MachineLearningException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_machinelearning_exception_machinelearningexception_php", "target": "machinelearningexception_machinelearningexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MachineLearning/Exception/MachineLearningException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/0016374ec39646bd50a0b1e4bc13297d1c52a5ecca328b69561a3258a0e22fa6.json
vendored
Normal file
1
graphify-out/cache/0016374ec39646bd50a0b1e4bc13297d1c52a5ecca328b69561a3258a0e22fa6.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/0018d0889fa1fdfcf350f3c9ce1cf70a6a82092566582140b00bc3f1e6674b4f.json
vendored
Normal file
1
graphify-out/cache/0018d0889fa1fdfcf350f3c9ce1cf70a6a82092566582140b00bc3f1e6674b4f.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/001a2f27d8f20f5e20ab085fae7e415946518e174795c92dee638c64c17d9aeb.json
vendored
Normal file
1
graphify-out/cache/001a2f27d8f20f5e20ab085fae7e415946518e174795c92dee638c64c17d9aeb.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00220b1026f76f445fb7b3fa31dca35e1610414273817c25fb89250eac385f6d.json
vendored
Normal file
1
graphify-out/cache/00220b1026f76f445fb7b3fa31dca35e1610414273817c25fb89250eac385f6d.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_oam_2022_06_10_endpoint_tests_1_json_php", "label": "endpoint-tests-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/oam/2022-06-10/endpoint-tests-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00267a1f588beb51c34d99fbd17142b144702e04253c646412ea3bd3a8269430.json
vendored
Normal file
1
graphify-out/cache/00267a1f588beb51c34d99fbd17142b144702e04253c646412ea3bd3a8269430.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_pi_piclient_php", "label": "PIClient.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/PI/PIClient.php", "source_location": "L1"}, {"id": "piclient_piclient", "label": "PIClient", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/PI/PIClient.php", "source_location": "L35"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_pi_piclient_php", "target": "awsclient", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/PI/PIClient.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_pi_piclient_php", "target": "piclient_piclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/PI/PIClient.php", "source_location": "L35", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/002a614be10ce55f3cc003d0a0cd84fb0d56082a0f37314837a0a275de7ec83d.json
vendored
Normal file
1
graphify-out/cache/002a614be10ce55f3cc003d0a0cd84fb0d56082a0f37314837a0a275de7ec83d.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/002d93dacaf4acc45f9334a9c906c5728387d5d030f95c380bc3bd4e29840e60.json
vendored
Normal file
1
graphify-out/cache/002d93dacaf4acc45f9334a9c906c5728387d5d030f95c380bc3bd4e29840e60.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/0039f09b6582c55ff3fc52b923e27e27ef697a7bd72f71bfd543bbaee787fed0.json
vendored
Normal file
1
graphify-out/cache/0039f09b6582c55ff3fc52b923e27e27ef697a7bd72f71bfd543bbaee787fed0.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_cloudfront_keyvaluestore_2022_07_26_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/cloudfront-keyvaluestore/2022-07-26/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/003aba39fe9155cdfa14b324d1a13bcc9a6523c9e70f02ae2404b5e33b0eecad.json
vendored
Normal file
1
graphify-out/cache/003aba39fe9155cdfa14b324d1a13bcc9a6523c9e70f02ae2404b5e33b0eecad.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_streams_dynamodb_2012_08_10_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/streams.dynamodb/2012-08-10/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00495c8cfa04c7bcb2688810573c986ffe3890591ad7ac3cf26a1494f5ac9102.json
vendored
Normal file
1
graphify-out/cache/00495c8cfa04c7bcb2688810573c986ffe3890591ad7ac3cf26a1494f5ac9102.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_cognito_identity_2014_06_30_paginators_1_json_php", "label": "paginators-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/cognito-identity/2014-06-30/paginators-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/0050757610cdc0108a08dfb1abc8dfa21703f6bd8047e3207d2ffbe6f0d8d8b6.json
vendored
Normal file
1
graphify-out/cache/0050757610cdc0108a08dfb1abc8dfa21703f6bd8047e3207d2ffbe6f0d8d8b6.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/0056f94e7e84a11467631f2fd963e6129f1e6e0912b5d9096e86ef3d9b774942.json
vendored
Normal file
1
graphify-out/cache/0056f94e7e84a11467631f2fd963e6129f1e6e0912b5d9096e86ef3d9b774942.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_system_database_drivers_ibase_ibase_utility_php", "label": "ibase_utility.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L1"}, {"id": "ibase_utility_ci_db_ibase_utility", "label": "CI_DB_ibase_utility", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L47"}, {"id": "ibase_utility_ci_db_ibase_utility_backup", "label": "._backup()", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L55"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_system_database_drivers_ibase_ibase_utility_php", "target": "ibase_utility_ci_db_ibase_utility", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L47", "weight": 1.0}, {"source": "ibase_utility_ci_db_ibase_utility", "target": "ibase_utility_ci_db_ibase_utility_backup", "relation": "method", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L55", "weight": 1.0}], "raw_calls": [{"caller_nid": "ibase_utility_ci_db_ibase_utility_backup", "callee": "ibase_service_attach", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L57"}, {"caller_nid": "ibase_utility_ci_db_ibase_utility_backup", "callee": "ibase_backup", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L59"}, {"caller_nid": "ibase_utility_ci_db_ibase_utility_backup", "callee": "ibase_service_detach", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/system/database/drivers/ibase/ibase_utility.php", "source_location": "L62"}]}
|
||||
1
graphify-out/cache/00583da440aaa01f4dc586c0c814397c507875e6e0937f40a1e7571dcd8f3ef9.json
vendored
Normal file
1
graphify-out/cache/00583da440aaa01f4dc586c0c814397c507875e6e0937f40a1e7571dcd8f3ef9.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_kafkaconnect_exception_kafkaconnectexception_php", "label": "KafkaConnectException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/KafkaConnect/Exception/KafkaConnectException.php", "source_location": "L1"}, {"id": "kafkaconnectexception_kafkaconnectexception", "label": "KafkaConnectException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/KafkaConnect/Exception/KafkaConnectException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_kafkaconnect_exception_kafkaconnectexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/KafkaConnect/Exception/KafkaConnectException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_kafkaconnect_exception_kafkaconnectexception_php", "target": "kafkaconnectexception_kafkaconnectexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/KafkaConnect/Exception/KafkaConnectException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/005e3fee25f029d17ae0b68cdf86e286c0f6caa6845b5591588c99894f69b91a.json
vendored
Normal file
1
graphify-out/cache/005e3fee25f029d17ae0b68cdf86e286c0f6caa6845b5591588c99894f69b91a.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_cognito_identity_2014_06_30_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/cognito-identity/2014-06-30/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/005e731bce0e0d995cce88a424db5cbc27e119a40c5ea38478f401b0e26f61f6.json
vendored
Normal file
1
graphify-out/cache/005e731bce0e0d995cce88a424db5cbc27e119a40c5ea38478f401b0e26f61f6.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/0066e331b5dac1954f470542c514765fa492a3614fbec643654f3bde7c321d80.json
vendored
Normal file
1
graphify-out/cache/0066e331b5dac1954f470542c514765fa492a3614fbec643654f3bde7c321d80.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/006a846ab94336f95c9b7bc3260940313656b82875cf60c47360826657a08c85.json
vendored
Normal file
1
graphify-out/cache/006a846ab94336f95c9b7bc3260940313656b82875cf60c47360826657a08c85.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_data_iot_2015_05_28_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/data.iot/2015-05-28/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/006d8aa4d235e09bfbbdd107226da1d062ec5d78eeabd8dc227dff3408fc2f7a.json
vendored
Normal file
1
graphify-out/cache/006d8aa4d235e09bfbbdd107226da1d062ec5d78eeabd8dc227dff3408fc2f7a.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_appmesh_2019_01_25_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/appmesh/2019-01-25/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/006f7b58c05648a7d20faf44344df035651ce88cad67d4cf73cfb5cd9e536a07.json
vendored
Normal file
1
graphify-out/cache/006f7b58c05648a7d20faf44344df035651ce88cad67d4cf73cfb5cd9e536a07.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/0074d019f03b769afd772bb4cbc3d8dfdfe8c3a7bef957694329d4edea1e086a.json
vendored
Normal file
1
graphify-out/cache/0074d019f03b769afd772bb4cbc3d8dfdfe8c3a7bef957694329d4edea1e086a.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/007776ccebf2b985d9dd82a60feaf47b6629219365a8088abdc9c762c750b473.json
vendored
Normal file
1
graphify-out/cache/007776ccebf2b985d9dd82a60feaf47b6629219365a8088abdc9c762c750b473.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/008935affc08ac76af54e89e6a7eefeb89ba870110b01d8883c6d56d2a7947c1.json
vendored
Normal file
1
graphify-out/cache/008935affc08ac76af54e89e6a7eefeb89ba870110b01d8883c6d56d2a7947c1.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_codecommit_2015_04_13_smoke_json_php", "label": "smoke.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/codecommit/2015-04-13/smoke.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/008a7c530cfb3e4cdf6132aa1b7c3190ba7ab35932bf4023116c68705ca64196.json
vendored
Normal file
1
graphify-out/cache/008a7c530cfb3e4cdf6132aa1b7c3190ba7ab35932bf4023116c68705ca64196.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/008ac89c2dcd6d727b25b73f9f22a5c750b387c3d33ab3bf0e19ae03182a3d47.json
vendored
Normal file
1
graphify-out/cache/008ac89c2dcd6d727b25b73f9f22a5c750b387c3d33ab3bf0e19ae03182a3d47.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_personalize_events_2018_03_22_paginators_1_json_php", "label": "paginators-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/personalize-events/2018-03-22/paginators-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/008f007c6188431e44a7198f11d06757ab6716d398f32ef77fbf5d4257758925.json
vendored
Normal file
1
graphify-out/cache/008f007c6188431e44a7198f11d06757ab6716d398f32ef77fbf5d4257758925.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00904a933e459518eb3305b5efdee7888bf1279a3e384ec0e1102a6091dd36c1.json
vendored
Normal file
1
graphify-out/cache/00904a933e459518eb3305b5efdee7888bf1279a3e384ec0e1102a6091dd36c1.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00955d6e49484276af53fa4c7c43323953472709715faf46896a0ce87e95a7f4.json
vendored
Normal file
1
graphify-out/cache/00955d6e49484276af53fa4c7c43323953472709715faf46896a0ce87e95a7f4.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_support_2013_04_15_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/support/2013-04-15/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00974e0e0dbcbbb0b893be38a5cc3a3a6b890471652a6f7a1e80ab02766b867a.json
vendored
Normal file
1
graphify-out/cache/00974e0e0dbcbbb0b893be38a5cc3a3a6b890471652a6f7a1e80ab02766b867a.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00a0c74b49d7f145c7c6459a15236e758380608ef6a133a100761e75050c1874.json
vendored
Normal file
1
graphify-out/cache/00a0c74b49d7f145c7c6459a15236e758380608ef6a133a100761e75050c1874.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00a634b1c451c433b3054b6e76530bb54c57c166550fccd2407a0f0acbc78ef7.json
vendored
Normal file
1
graphify-out/cache/00a634b1c451c433b3054b6e76530bb54c57c166550fccd2407a0f0acbc78ef7.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_applicationautoscaling_applicationautoscalingclient_php", "label": "ApplicationAutoScalingClient.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ApplicationAutoScaling/ApplicationAutoScalingClient.php", "source_location": "L1"}, {"id": "applicationautoscalingclient_applicationautoscalingclient", "label": "ApplicationAutoScalingClient", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ApplicationAutoScaling/ApplicationAutoScalingClient.php", "source_location": "L35"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_applicationautoscaling_applicationautoscalingclient_php", "target": "awsclient", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ApplicationAutoScaling/ApplicationAutoScalingClient.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_applicationautoscaling_applicationautoscalingclient_php", "target": "applicationautoscalingclient_applicationautoscalingclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ApplicationAutoScaling/ApplicationAutoScalingClient.php", "source_location": "L35", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/00ab1265f9c9f0522871fe6b0770ab7c2077867ed0a37496ef2a5153d39d8e07.json
vendored
Normal file
1
graphify-out/cache/00ab1265f9c9f0522871fe6b0770ab7c2077867ed0a37496ef2a5153d39d8e07.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_applicationcostprofiler_2020_09_10_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/applicationcostprofiler/2020-09-10/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00af84c9a54184accfd5bae47923f0ba541761c36346aba588147377117b3297.json
vendored
Normal file
1
graphify-out/cache/00af84c9a54184accfd5bae47923f0ba541761c36346aba588147377117b3297.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_ecs_2014_11_13_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/ecs/2014-11-13/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00b07926e995cdd660174c63b18c04c9c30109cbef3695d53cfee0e350bc629e.json
vendored
Normal file
1
graphify-out/cache/00b07926e995cdd660174c63b18c04c9c30109cbef3695d53cfee0e350bc629e.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_cloudfront_2016_08_01_endpoint_tests_1_json_php", "label": "endpoint-tests-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/cloudfront/2016-08-01/endpoint-tests-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00b1d3e1b10b49d1f9d4c093d2d7a83455e586f4c5d4125c81544baa18c2ae03.json
vendored
Normal file
1
graphify-out/cache/00b1d3e1b10b49d1f9d4c093d2d7a83455e586f4c5d4125c81544baa18c2ae03.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_inspectorscan_inspectorscanclient_php", "label": "InspectorScanClient.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/InspectorScan/InspectorScanClient.php", "source_location": "L1"}, {"id": "inspectorscanclient_inspectorscanclient", "label": "InspectorScanClient", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/InspectorScan/InspectorScanClient.php", "source_location": "L11"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_inspectorscan_inspectorscanclient_php", "target": "awsclient", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/InspectorScan/InspectorScanClient.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_inspectorscan_inspectorscanclient_php", "target": "inspectorscanclient_inspectorscanclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/InspectorScan/InspectorScanClient.php", "source_location": "L11", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/00b2d38addc085923c2617072fa34ebc94418250ea88542cb9cfd593fc9c502f.json
vendored
Normal file
1
graphify-out/cache/00b2d38addc085923c2617072fa34ebc94418250ea88542cb9cfd593fc9c502f.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_appconfigdata_2021_11_11_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/appconfigdata/2021-11-11/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00b55c227d3b4444a4a4b3451b9b57a92e09b38e51c58877aae8e0393bec6a24.json
vendored
Normal file
1
graphify-out/cache/00b55c227d3b4444a4a4b3451b9b57a92e09b38e51c58877aae8e0393bec6a24.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_kinesisanalytics_2015_08_14_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/kinesisanalytics/2015-08-14/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00cc68769e76b6f769a26533752f1b3f02314370bbf161ac57a075f8ad385023.json
vendored
Normal file
1
graphify-out/cache/00cc68769e76b6f769a26533752f1b3f02314370bbf161ac57a075f8ad385023.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00cdf885546a31bc70a610e722f1232731de2e1e52af61f5d461eb259fee1c03.json
vendored
Normal file
1
graphify-out/cache/00cdf885546a31bc70a610e722f1232731de2e1e52af61f5d461eb259fee1c03.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00dc8cd7ff6bcadf1556014a27347c51b224d9588c9c7f1af6b8b93c0794d300.json
vendored
Normal file
1
graphify-out/cache/00dc8cd7ff6bcadf1556014a27347c51b224d9588c9c7f1af6b8b93c0794d300.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_cur_2017_01_06_paginators_1_json_php", "label": "paginators-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/cur/2017-01-06/paginators-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00dfcb490c86d95c2cff4b15bb0db10da57ea9811142ba57eac42affcdb84169.json
vendored
Normal file
1
graphify-out/cache/00dfcb490c86d95c2cff4b15bb0db10da57ea9811142ba57eac42affcdb84169.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_backupstorage_2018_04_10_endpoint_tests_1_json_php", "label": "endpoint-tests-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/backupstorage/2018-04-10/endpoint-tests-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00f369d0da9ee81a0f5df043357b8f26a26f13f4ac33645c8f4c66260733442d.json
vendored
Normal file
1
graphify-out/cache/00f369d0da9ee81a0f5df043357b8f26a26f13f4ac33645c8f4c66260733442d.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_cloudsearch_2013_01_01_paginators_1_json_php", "label": "paginators-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/cloudsearch/2013-01-01/paginators-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00f6528edf3144db5f01678a7932c2fc52d4a83fa8d8d98d723edc4fff7d66f9.json
vendored
Normal file
1
graphify-out/cache/00f6528edf3144db5f01678a7932c2fc52d4a83fa8d8d98d723edc4fff7d66f9.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_symfony_property_access_tests_fixtures_testclasssetvalue_php", "label": "TestClassSetValue.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L1"}, {"id": "testclasssetvalue_testclasssetvalue", "label": "TestClassSetValue", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L14"}, {"id": "testclasssetvalue_testclasssetvalue_getvalue", "label": ".getValue()", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L18"}, {"id": "testclasssetvalue_testclasssetvalue_setvalue", "label": ".setValue()", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L23"}, {"id": "testclasssetvalue_testclasssetvalue_construct", "label": ".__construct()", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L28"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_symfony_property_access_tests_fixtures_testclasssetvalue_php", "target": "testclasssetvalue_testclasssetvalue", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L14", "weight": 1.0}, {"source": "testclasssetvalue_testclasssetvalue", "target": "testclasssetvalue_testclasssetvalue_getvalue", "relation": "method", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L18", "weight": 1.0}, {"source": "testclasssetvalue_testclasssetvalue", "target": "testclasssetvalue_testclasssetvalue_setvalue", "relation": "method", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L23", "weight": 1.0}, {"source": "testclasssetvalue_testclasssetvalue", "target": "testclasssetvalue_testclasssetvalue_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/symfony/property-access/Tests/Fixtures/TestClassSetValue.php", "source_location": "L28", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/00f937fc412b2a0265978423bf4a6611e78961077e5ea2f7eda95bcbd879ef2a.json
vendored
Normal file
1
graphify-out/cache/00f937fc412b2a0265978423bf4a6611e78961077e5ea2f7eda95bcbd879ef2a.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_kendra_ranking_2022_10_19_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/kendra-ranking/2022-10-19/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/00f9450611bff7c4a07d6f6522bce51b741bd7427286f47ea1f426313d1bfcfe.json
vendored
Normal file
1
graphify-out/cache/00f9450611bff7c4a07d6f6522bce51b741bd7427286f47ea1f426313d1bfcfe.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/00faa69bf28ca578ead9481219a15f69c0d08aad8d513d7ef7cc19922b4f5f6c.json
vendored
Normal file
1
graphify-out/cache/00faa69bf28ca578ead9481219a15f69c0d08aad8d513d7ef7cc19922b4f5f6c.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_bacon_bacon_qr_code_src_baconqrcode_renderer_rendererinterface_php", "label": "RendererInterface.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/bacon/bacon-qr-code/src/BaconQrCode/Renderer/RendererInterface.php", "source_location": "L1"}, {"id": "rendererinterface_render", "label": "render()", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/bacon/bacon-qr-code/src/BaconQrCode/Renderer/RendererInterface.php", "source_location": "L25"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_bacon_bacon_qr_code_src_baconqrcode_renderer_rendererinterface_php", "target": "qrcode", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/bacon/bacon-qr-code/src/BaconQrCode/Renderer/RendererInterface.php", "source_location": "L12", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_bacon_bacon_qr_code_src_baconqrcode_renderer_rendererinterface_php", "target": "rendererinterface_render", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/bacon/bacon-qr-code/src/BaconQrCode/Renderer/RendererInterface.php", "source_location": "L25", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/01097d030a0124d3c24b22667095376236fd23213f19d6c205f24644312d5d74.json
vendored
Normal file
1
graphify-out/cache/01097d030a0124d3c24b22667095376236fd23213f19d6c205f24644312d5d74.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_wafv2_2019_07_29_smoke_json_php", "label": "smoke.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/wafv2/2019-07-29/smoke.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/011934b994d7a6aac9440c210c69612c96ca3374606a5f97a6d9c0fe8c3af561.json
vendored
Normal file
1
graphify-out/cache/011934b994d7a6aac9440c210c69612c96ca3374606a5f97a6d9c0fe8c3af561.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/011a3c8c97ec0d65500b6dd1629d366cd5ada7b0a1b365f4c1ca6c86b458e3d7.json
vendored
Normal file
1
graphify-out/cache/011a3c8c97ec0d65500b6dd1629d366cd5ada7b0a1b365f4c1ca6c86b458e3d7.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_shield_shieldclient_php", "label": "ShieldClient.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Shield/ShieldClient.php", "source_location": "L1"}, {"id": "shieldclient_shieldclient", "label": "ShieldClient", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Shield/ShieldClient.php", "source_location": "L81"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_shield_shieldclient_php", "target": "awsclient", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Shield/ShieldClient.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_shield_shieldclient_php", "target": "shieldclient_shieldclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Shield/ShieldClient.php", "source_location": "L81", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/011a3f555e8bc52978151bf8ab03c5d627528237e7731e38d7e054537d6d146e.json
vendored
Normal file
1
graphify-out/cache/011a3f555e8bc52978151bf8ab03c5d627528237e7731e38d7e054537d6d146e.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01289f2225a42623444805a7c970b46b6a2bd308b060f9464b086eec7412ecfd.json
vendored
Normal file
1
graphify-out/cache/01289f2225a42623444805a7c970b46b6a2bd308b060f9464b086eec7412ecfd.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_resiliencehub_resiliencehubclient_php", "label": "ResilienceHubClient.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResilienceHub/ResilienceHubClient.php", "source_location": "L1"}, {"id": "resiliencehubclient_resiliencehubclient", "label": "ResilienceHubClient", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResilienceHub/ResilienceHubClient.php", "source_location": "L117"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_resiliencehub_resiliencehubclient_php", "target": "awsclient", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResilienceHub/ResilienceHubClient.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_resiliencehub_resiliencehubclient_php", "target": "resiliencehubclient_resiliencehubclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResilienceHub/ResilienceHubClient.php", "source_location": "L117", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/01314e25322af31ef4448fdb706b17cad0fc57270079d666f6208c504f6c9a57.json
vendored
Normal file
1
graphify-out/cache/01314e25322af31ef4448fdb706b17cad0fc57270079d666f6208c504f6c9a57.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_email_2010_12_01_smoke_json_php", "label": "smoke.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/email/2010-12-01/smoke.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/0133b53c3dd4e256795c16e8c1f716b4231101d5acfb592bf1f6163b5daab5db.json
vendored
Normal file
1
graphify-out/cache/0133b53c3dd4e256795c16e8c1f716b4231101d5acfb592bf1f6163b5daab5db.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_emrserverless_emrserverlessclient_php", "label": "EMRServerlessClient.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/EMRServerless/EMRServerlessClient.php", "source_location": "L1"}, {"id": "emrserverlessclient_emrserverlessclient", "label": "EMRServerlessClient", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/EMRServerless/EMRServerlessClient.php", "source_location": "L39"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_emrserverless_emrserverlessclient_php", "target": "awsclient", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/EMRServerless/EMRServerlessClient.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_emrserverless_emrserverlessclient_php", "target": "emrserverlessclient_emrserverlessclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/EMRServerless/EMRServerlessClient.php", "source_location": "L39", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/01347e994b6ed3e26f95af08c886d8fff20d0b8cb53f5b99ff1f6780acb29841.json
vendored
Normal file
1
graphify-out/cache/01347e994b6ed3e26f95af08c886d8fff20d0b8cb53f5b99ff1f6780acb29841.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/0143e6a9bc82df1f9b5e9835d55e9b98287444d9a449afa8ab62f7dd06656712.json
vendored
Normal file
1
graphify-out/cache/0143e6a9bc82df1f9b5e9835d55e9b98287444d9a449afa8ab62f7dd06656712.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_scheduler_2021_06_30_paginators_1_json_php", "label": "paginators-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/scheduler/2021-06-30/paginators-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/0147d99a77e40303fcc37bdd3f8cc09537fd6a623a5b78cc7c641a892aae5037.json
vendored
Normal file
1
graphify-out/cache/0147d99a77e40303fcc37bdd3f8cc09537fd6a623a5b78cc7c641a892aae5037.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_waf_2015_08_24_endpoint_tests_1_json_php", "label": "endpoint-tests-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/waf/2015-08-24/endpoint-tests-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/0148d0b577e9e1d5b44dc1d9cb1a4cab384f6a95d4a063cf9b38f23b793829da.json
vendored
Normal file
1
graphify-out/cache/0148d0b577e9e1d5b44dc1d9cb1a4cab384f6a95d4a063cf9b38f23b793829da.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_resourcegroupstaggingapi_exception_resourcegroupstaggingapiexception_php", "label": "ResourceGroupsTaggingAPIException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php", "source_location": "L1"}, {"id": "resourcegroupstaggingapiexception_resourcegroupstaggingapiexception", "label": "ResourceGroupsTaggingAPIException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_resourcegroupstaggingapi_exception_resourcegroupstaggingapiexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_resourcegroupstaggingapi_exception_resourcegroupstaggingapiexception_php", "target": "resourcegroupstaggingapiexception_resourcegroupstaggingapiexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/014d4fe93d96df35bace3610c22907c94da890166745b83da86194349c41724e.json
vendored
Normal file
1
graphify-out/cache/014d4fe93d96df35bace3610c22907c94da890166745b83da86194349c41724e.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_budgets_exception_budgetsexception_php", "label": "BudgetsException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Budgets/Exception/BudgetsException.php", "source_location": "L1"}, {"id": "budgetsexception_budgetsexception", "label": "BudgetsException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Budgets/Exception/BudgetsException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_budgets_exception_budgetsexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Budgets/Exception/BudgetsException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_budgets_exception_budgetsexception_php", "target": "budgetsexception_budgetsexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/Budgets/Exception/BudgetsException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/015029543ede180d20459c152e0e680b5b6540a4c231806f07e7371f70d6bd00.json
vendored
Normal file
1
graphify-out/cache/015029543ede180d20459c152e0e680b5b6540a4c231806f07e7371f70d6bd00.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_migrationhub_exception_migrationhubexception_php", "label": "MigrationHubException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MigrationHub/Exception/MigrationHubException.php", "source_location": "L1"}, {"id": "migrationhubexception_migrationhubexception", "label": "MigrationHubException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MigrationHub/Exception/MigrationHubException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_migrationhub_exception_migrationhubexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MigrationHub/Exception/MigrationHubException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_migrationhub_exception_migrationhubexception_php", "target": "migrationhubexception_migrationhubexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/MigrationHub/Exception/MigrationHubException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/0157b93c9d701a51ed58565f03d5abcbded2b96735b2e94a584be2ad0b707e15.json
vendored
Normal file
1
graphify-out/cache/0157b93c9d701a51ed58565f03d5abcbded2b96735b2e94a584be2ad0b707e15.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_iottwinmaker_iottwinmakerclient_php", "label": "IoTTwinMakerClient.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/IoTTwinMaker/IoTTwinMakerClient.php", "source_location": "L1"}, {"id": "iottwinmakerclient_iottwinmakerclient", "label": "IoTTwinMakerClient", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/IoTTwinMaker/IoTTwinMakerClient.php", "source_location": "L89"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_iottwinmaker_iottwinmakerclient_php", "target": "awsclient", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/IoTTwinMaker/IoTTwinMakerClient.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_iottwinmaker_iottwinmakerclient_php", "target": "iottwinmakerclient_iottwinmakerclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/IoTTwinMaker/IoTTwinMakerClient.php", "source_location": "L89", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/015dd5846e9a499e4d3ee926b999be8a28bf3e1c073fc33323dbee5ffb09a787.json
vendored
Normal file
1
graphify-out/cache/015dd5846e9a499e4d3ee926b999be8a28bf3e1c073fc33323dbee5ffb09a787.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01683ab8b59eb0305a659464010a9b77f06be0930f2478bdaa3575b8b96e378d.json
vendored
Normal file
1
graphify-out/cache/01683ab8b59eb0305a659464010a9b77f06be0930f2478bdaa3575b8b96e378d.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_keyspaces_2022_02_10_endpoint_tests_1_json_php", "label": "endpoint-tests-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/keyspaces/2022-02-10/endpoint-tests-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/016e1678716ca17379fcd2f148f8f405a1849b59c57200175ff960b1b7fa74ff.json
vendored
Normal file
1
graphify-out/cache/016e1678716ca17379fcd2f148f8f405a1849b59c57200175ff960b1b7fa74ff.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_application_libraries_qrcode_qrconfig_php", "label": "qrconfig.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/application/libraries/qrcode/qrconfig.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/017a16640351d0606be25c88e69f5b01684037ef0513f23be30ae9b85e5afab6.json
vendored
Normal file
1
graphify-out/cache/017a16640351d0606be25c88e69f5b01684037ef0513f23be30ae9b85e5afab6.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/0182c5db61bb1315f072de0212d89d821ba5f74fd26b8e9bfe974d70f8f292b0.json
vendored
Normal file
1
graphify-out/cache/0182c5db61bb1315f072de0212d89d821ba5f74fd26b8e9bfe974d70f8f292b0.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_schemas_2019_12_02_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/schemas/2019-12-02/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/018cdcb4267b1f3d11bbb669394a91d1e1c2ee1c6d98dd43c724732aa884de17.json
vendored
Normal file
1
graphify-out/cache/018cdcb4267b1f3d11bbb669394a91d1e1c2ee1c6d98dd43c724732aa884de17.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_apigatewayv2_2018_11_29_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/apigatewayv2/2018-11-29/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/0191aac5e2cf09f1d03c51f08fd72b18ea3056fe329c8c3e52dd017d1f020e26.json
vendored
Normal file
1
graphify-out/cache/0191aac5e2cf09f1d03c51f08fd72b18ea3056fe329c8c3e52dd017d1f020e26.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_cloudfront_2016_09_07_endpoint_tests_1_json_php", "label": "endpoint-tests-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/cloudfront/2016-09-07/endpoint-tests-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/0198a851648772c3264ca6d4fc7dc15d4d73949fef6ed8e058f4bb43dbf49077.json
vendored
Normal file
1
graphify-out/cache/0198a851648772c3264ca6d4fc7dc15d4d73949fef6ed8e058f4bb43dbf49077.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/019b2089b066b2b9c1fcf4457795c357de41256c6ed70f5535998d352dc72200.json
vendored
Normal file
1
graphify-out/cache/019b2089b066b2b9c1fcf4457795c357de41256c6ed70f5535998d352dc72200.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_eks_auth_2023_11_26_paginators_1_json_php", "label": "paginators-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/eks-auth/2023-11-26/paginators-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/019c6c580d1259c840af96404bc6c334121b16ae6c1742515187d86a54417bf1.json
vendored
Normal file
1
graphify-out/cache/019c6c580d1259c840af96404bc6c334121b16ae6c1742515187d86a54417bf1.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_workdocs_2016_05_01_paginators_1_json_php", "label": "paginators-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/workdocs/2016-05-01/paginators-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/01a802c2dcc13f7394aac9aaf2cf2e355f613717b477cf7f13cd09495289ba0e.json
vendored
Normal file
1
graphify-out/cache/01a802c2dcc13f7394aac9aaf2cf2e355f613717b477cf7f13cd09495289ba0e.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01afed53583612e281d3b0acdadbd2167042f4f704bc328614557fb1bdfa0ef2.json
vendored
Normal file
1
graphify-out/cache/01afed53583612e281d3b0acdadbd2167042f4f704bc328614557fb1bdfa0ef2.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_opsworkscm_2016_11_01_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/opsworkscm/2016-11-01/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/01b188ed6756b6cf49ce0e8f5666c5d1f963be783b23b8472d299b43d4eb1cb8.json
vendored
Normal file
1
graphify-out/cache/01b188ed6756b6cf49ce0e8f5666c5d1f963be783b23b8472d299b43d4eb1cb8.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01b19c446e27dd39b77fc0406bd51673db505f97673d4cc90b7fe4f9d9ebde4a.json
vendored
Normal file
1
graphify-out/cache/01b19c446e27dd39b77fc0406bd51673db505f97673d4cc90b7fe4f9d9ebde4a.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_rolesanywhere_exception_rolesanywhereexception_php", "label": "RolesAnywhereException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/RolesAnywhere/Exception/RolesAnywhereException.php", "source_location": "L1"}, {"id": "rolesanywhereexception_rolesanywhereexception", "label": "RolesAnywhereException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/RolesAnywhere/Exception/RolesAnywhereException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_rolesanywhere_exception_rolesanywhereexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/RolesAnywhere/Exception/RolesAnywhereException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_rolesanywhere_exception_rolesanywhereexception_php", "target": "rolesanywhereexception_rolesanywhereexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/RolesAnywhere/Exception/RolesAnywhereException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/01b22bc78c655be0ced3a97b3e990696acec2d97a59f418114c1774236c70c0e.json
vendored
Normal file
1
graphify-out/cache/01b22bc78c655be0ced3a97b3e990696acec2d97a59f418114c1774236c70c0e.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01b53f2855b34540989acb5b7bcdc93dccd7846bd64c32b6ba7000af05d76472.json
vendored
Normal file
1
graphify-out/cache/01b53f2855b34540989acb5b7bcdc93dccd7846bd64c32b6ba7000af05d76472.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_sso_2019_06_10_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/sso/2019-06-10/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/01b7e7c7f5d396e891d0e3cdac3cad424bd7a3546c55578b748d35b6d3092370.json
vendored
Normal file
1
graphify-out/cache/01b7e7c7f5d396e891d0e3cdac3cad424bd7a3546c55578b748d35b6d3092370.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01bf49e96eceaf4eb51e00e705b30f8baa3ae49d4d5f76d29431ac1b2604d13f.json
vendored
Normal file
1
graphify-out/cache/01bf49e96eceaf4eb51e00e705b30f8baa3ae49d4d5f76d29431ac1b2604d13f.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_v3_aws_data_ecs_2014_11_13_endpoint_rule_set_1_json_php", "label": "endpoint-rule-set-1.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_v3/Aws/data/ecs/2014-11-13/endpoint-rule-set-1.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
1
graphify-out/cache/01c440981ea574b70db11cd090822dfa66d494396d074b4dd6c61fff300d74b9.json
vendored
Normal file
1
graphify-out/cache/01c440981ea574b70db11cd090822dfa66d494396d074b4dd6c61fff300d74b9.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_ssmcontacts_exception_ssmcontactsexception_php", "label": "SSMContactsException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/SSMContacts/Exception/SSMContactsException.php", "source_location": "L1"}, {"id": "ssmcontactsexception_ssmcontactsexception", "label": "SSMContactsException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/SSMContacts/Exception/SSMContactsException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_ssmcontacts_exception_ssmcontactsexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/SSMContacts/Exception/SSMContactsException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_ssmcontacts_exception_ssmcontactsexception_php", "target": "ssmcontactsexception_ssmcontactsexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/SSMContacts/Exception/SSMContactsException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/01c8b3d4800837a48cc932da6b90da8003bc2d6fc6e84570d0d4a8985576d088.json
vendored
Normal file
1
graphify-out/cache/01c8b3d4800837a48cc932da6b90da8003bc2d6fc6e84570d0d4a8985576d088.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01c9b8e74b1af76013bfc09292f9d75e21d7fa61fd4419aa51b8f645151018db.json
vendored
Normal file
1
graphify-out/cache/01c9b8e74b1af76013bfc09292f9d75e21d7fa61fd4419aa51b8f645151018db.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_workspacesweb_exception_workspaceswebexception_php", "label": "WorkSpacesWebException.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/WorkSpacesWeb/Exception/WorkSpacesWebException.php", "source_location": "L1"}, {"id": "workspaceswebexception_workspaceswebexception", "label": "WorkSpacesWebException", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/WorkSpacesWeb/Exception/WorkSpacesWebException.php", "source_location": "L9"}], "edges": [{"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_workspacesweb_exception_workspaceswebexception_php", "target": "awsexception", "relation": "imports", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/WorkSpacesWeb/Exception/WorkSpacesWebException.php", "source_location": "L4", "weight": 1.0}, {"source": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_workspacesweb_exception_workspaceswebexception_php", "target": "workspaceswebexception_workspaceswebexception", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/WorkSpacesWeb/Exception/WorkSpacesWebException.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
|
||||
1
graphify-out/cache/01c9e8b32bdd4f1bd8f7920e4ab2e424f9d4b09a8d6b0d384ea4b96638a0eba9.json
vendored
Normal file
1
graphify-out/cache/01c9e8b32bdd4f1bd8f7920e4ab2e424f9d4b09a8d6b0d384ea4b96638a0eba9.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1
graphify-out/cache/01cbd3dca711c5a0b9ea8a8d88f0eb863b3063120b908746b54ffb0eca4fc10d.json
vendored
Normal file
1
graphify-out/cache/01cbd3dca711c5a0b9ea8a8d88f0eb863b3063120b908746b54ffb0eca4fc10d.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"nodes": [{"id": "users_fajrihardhitamurti_repo_gitea_ibl_be_ibl_one_api_lab_vendor_aws_sdk_aws_data_securityhub_2018_10_26_api_2_json_php", "label": "api-2.json.php", "file_type": "code", "source_file": "/Users/fajrihardhitamurti/REPO_GITEA_IBL/BE_IBL/one-api-lab/vendor/aws_sdk/Aws/data/securityhub/2018-10-26/api-2.json.php", "source_location": "L1"}], "edges": [], "raw_calls": []}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user