Replace RockX with Portal Search Desk case study - #24
Draft
haramrit09k wants to merge 1 commit into
Draft
haramrit09k wants to merge 1 commit into
haramrit09k wants to merge 1 commit into
Conversation
RockX (a boilerplate SpaceX GraphQL list) is superseded by Portal Search Desk, a rebuild on the same Angular + Apollo foundation against a public API that is actually graph-shaped (Rick and Morty), exercising nested relationships, caching policy, and rate-limit-aware client behavior that a flat list never required.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Owner
Author
|
CI red on Generated by Claude Code |
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.
Summary
masterportfolio (React/Vite site insrc/App.jsx;public/resumeData.jsonis legacy/unused — confirmed no references anywhere insrc).The story behind the swap
The original RockX was Angular CLI scaffolding pointed at a flat SpaceX launch list — a single query, no relationships, minimal decision-making beyond "call a GraphQL endpoint." Portal Search Desk keeps the same Angular + Apollo foundation but deliberately targets a public API that's graph-shaped (characters → episodes → cast), so the rebuild exercises things a flat list never required: nested GraphQL relationships, fragments, cache-first Apollo policies, and rate-limit-aware client behavior (debounced search, canceled in-flight queries, no retry storms) against an API with no published SLA. It also ships explicit product boundaries in the README (no streaming links, no invented content, unofficial fan project) — treating scope discipline as part of the deliverable, not an afterthought.
Source:
rockXbranchagent/rick-and-morty-repo-cleanup· Live demo: https://portal-search-desk-359b5c84a84b.herokuapp.com/Test plan
npm run build— succeedsnpm test— passes (1/1)Generated by Claude Code