Projects v2: items POST 201 but don't render in views — read index appears stuck/stale across multiple org projects #195119
Replies: 1 comment
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Projects
Body
Summary
In an org I admin (Untie-it-Technologies), newly-created Projects v2 items — drafts via the UI, drafts via
addProjectV2DraftIssue, and Issues added viaaddProjectV2ItemById— all return 201 Created and persist in the database, but don't appear in any view, in the project's items list, or inprojectV2.itemspaginated queries until something else triggers a partial cache invalidation. This affects multiple projects in the org. Started ~2026-05-06T12:38 UTC.Why I think the data is fine, just not indexed
node(id: "PVTI_...")GraphQL queries return the full item with field values, including for items that aren't visible in any view.delete_project_itemoradd_project_itemmutation seems to invalidate the stale read cache for some items: the visible count went 16 → 17 → 20 → 27 → 30 across our maintenance ops, with previously-hidden items showing up at each step. We never got it fully consistent.Reproduction (just performed, today)
addProjectV2ItemById→ 201, returned a project item ID.projectV2.items(first: 100, query: "<title>")→ returned the item correctly.Same symptom for UI-created drafts: POST
/memexes/{project_id}/itemsreturns 201, item is fetchable by ID, but the views don't render it.Likely trigger
A series of
project_field.delete/project_field.createoperations on a different project in the same org on 2026-05-06 around 12:38–12:40 UTC. After those operations, all newly-created items in any project owned by this org appear to enter the same stuck-cache state. We did NOT do field deletes on the affected projects directly. Also coincides with multiple GitHub status incidents on May 6.Fingerprint
Ask
project_field.deleteon an actively-used project a known trigger for read-index staleness?Happy to share project node IDs and
request_ids privately if a GitHub Projects engineer wants to look. Posting publicly because the symptom is reproducible and others may be hitting it.Guidelines
Beta Was this translation helpful? Give feedback.
All reactions