Skip to content

Commit

Permalink
resolver related readme recursive example typo (#242)
Browse files Browse the repository at this point in the history
Signed-off-by: Spencer McAvey <[email protected]>
Co-authored-by: Spencer McAvey <[email protected]>
  • Loading branch information
smcavey and smcavey authored Sep 10, 2024
1 parent 10c9c12 commit 37dbb5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/resolver/related_readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ WITH RECURSIVE search_graph(level, sourceid, destid, sourcekind, destkind, clus
WHERE (("e"."destkind" NOT IN ('Node', 'Channel')) AND ("e"."sourcekind" NOT IN ('Node', 'Channel')) AND -- Avoid Node and Channel to prevent all resources on the node from showing up
("sg"."level" <= 3) --Limit level to 3
)
------------------------RECURSIVE PART START------------------------
------------------------RECURSIVE PART END------------------------
)
) SELECT DISTINCT "level", "sourceid", "destid", "sourcekind", "destkind", "cluster" FROM "search_graph"
```
Expand Down

0 comments on commit 37dbb5c

Please sign in to comment.