-
Notifications
You must be signed in to change notification settings - Fork 7
MST #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
GomezGab
wants to merge
14
commits into
main
Choose a base branch
from
msf
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
MST #175
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
f1d4a21
WIP msf docs
GomezGab 5c7a778
MSF example graph and weights
GomezGab a894f34
update docs to reflect changes
GomezGab b59f0eb
clarification and typos
GomezGab 1acf46c
spelling
GomezGab 1142822
rearanging example
GomezGab 06e3b0b
MST->MSF
GomezGab 60ec0e5
Merge branch 'main' into msf
swilly22 5669659
updated msf to reflect new yields
GomezGab 50d3f6b
dictionary MSF
GomezGab b830655
Merge remote-tracking branch 'origin/main' into msf
GomezGab 1a67691
bot comments
GomezGab d39d253
Merge branch 'main' into msf
gkorland f1d9fed
Add metadata to MSF documentation
gkorland File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -74,6 +74,7 @@ LocalDateTime | |
| LocalTime | ||
| Lovitz | ||
| MEM | ||
| MSF | ||
| Miesha | ||
| MotoGP | ||
| NRedisGraph | ||
|
|
||
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: FalkorDB/docs
Length of output: 586
🏁 Script executed:
Repository: FalkorDB/docs
Length of output: 446
🏁 Script executed:
Repository: FalkorDB/docs
Length of output: 446
🏁 Script executed:
Repository: FalkorDB/docs
Length of output: 173
🏁 Script executed:
Repository: FalkorDB/docs
Length of output: 3656
🏁 Script executed:
Repository: FalkorDB/docs
Length of output: 1172
🏁 Script executed:
Repository: FalkorDB/docs
Length of output: 1884
🌐 Web query:
FalkorDB algo.MSF YIELD signature official API documentation💡 Result:
Signature (from official docs):
CALL algo.MSF(config: MAP) YIELD src, dest, weight, relationshipType. [1]
Where:
Sources: FalkorDB algorithm docs (MSF) and Procedures overview. [1] https://docs.falkordb.com/algorithms/msf.html [2] https://docs.falkordb.com/cypher/procedures.html
🌐 Web query:
FalkorDB Minimum Spanning Forest algorithm procedure yields fields💡 Result:
FalkorDB's MSF procedure (CALL algo.MSF(...)) yields these fields: src, dest, weight, relationshipType. [1][2]
Sources:
CRITICAL: Procedure signature and examples do not match the official FalkorDB API.
The official FalkorDB MSF procedure yields
src, dest, weight, relationshipType—notedges, nodes. This affects multiple sections:YIELD edges, nodes(incorrect)edgesandnodes(incorrect)YIELD edge, weight(also incorrect)Update all three sections to reflect the actual API:
```cypher CALL algo.MSF( config: MAP -) YIELD edges, nodes +) YIELD src, dest, weight, relationshipTypeIn algorithms/msf.md around lines 29–32, 49–52 and 87, the MSF procedure
signature and examples use incorrect yield names; replace the incorrect "YIELD
edges, nodes" at lines 29–32 with "YIELD src, dest, weight, relationshipType",
update the Return Values table at lines 49–52 to list src (Node), dest (Node),
weight (Float), relationshipType (String) with the provided descriptions, and
change the example at line 87 from "YIELD edge, weight" to "YIELD src, dest,
weight, relationshipType".