Skip to content

Fix broken URL with huggingface dataset URL#25

Merged
adsharma merged 3 commits into
mainfrom
tutorial_404
May 19, 2026
Merged

Fix broken URL with huggingface dataset URL#25
adsharma merged 3 commits into
mainfrom
tutorial_404

Conversation

@adsharma
Copy link
Copy Markdown
Contributor

No description provided.

@adsharma adsharma requested a review from aheev May 19, 2026 04:13
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented May 19, 2026

Deploying ladybug-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: e50bfd0
Status: ✅  Deploy successful!
Preview URL: https://59a3247e.ladybug-docs.pages.dev
Branch Preview URL: https://tutorial-404.ladybug-docs.pages.dev

View logs

Copy link
Copy Markdown
Collaborator

@aheev aheev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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]

@adsharma adsharma merged commit ddd1da7 into main May 19, 2026
2 checks passed
@adsharma adsharma deleted the tutorial_404 branch May 19, 2026 05:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants