Fix broken URL with huggingface dataset URL#25
Merged
Merged
Conversation
Deploying ladybug-docs with
|
| Latest commit: |
e50bfd0
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://59a3247e.ladybug-docs.pages.dev |
| Branch Preview URL: | https://tutorial-404.ladybug-docs.pages.dev |
aheev
approved these changes
May 19, 2026
Collaborator
aheev
left a comment
There was a problem hiding this comment.
nits:
results for:
MATCH (u1:User)-[f:FOLLOWS]->(u2:User)
RETURN u2.username, COUNT(u2) AS follower_count
LIMIT 5['mysticwolf198', 4]
['stormcat597', 2]
['coolking201', 3]
['brightninja683', 5]
['epiccat105', 4]
MATCH (u1:User)-[f:FOLLOWS]->(u2:User)
RETURN u2.username, COUNT(u2) AS follower_count
ORDER BY follower_count DESC
LIMIT 1['darkdog878', 6]
MATCH (u1:User)-[f:FOLLOWS]->(u2:User)
WITH u2, COUNT(u1) as follower_count
WITH MAX(follower_count) as max_count
MATCH (u1:User)-[f:FOLLOWS]->(u2:User)
WITH u2, COUNT(u1) as follower_count, max_count
WHERE follower_count = max_count
RETURN u2.username, follower_count['stormninja678', 6]
['darkdog878', 6]
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.
No description provided.