Merged
Conversation
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.
Description
Adds full programmatic support for Issues, Comments, and Issue Categories. Issues can be pinned to specific data row locations (Image, PDF, Text, Video).
Usage Example
This is the standard flow for most users:
Deep Dive: All Supported Positions
Click to see exhaustive examples for PDF, Text, and Video
Implementation Note
Used Pydantic (
_CamelCaseMixin) instead ofDbObjectbecause the backend GraphQL mutations for Issues use typed input objects incompatible with the legacy ORM's auto-generation.Fixes # (issue)
Type of change
Please delete options that are not relevant.
All Submissions
New Feature Submissions
Changes to Core Features
Note
Medium Risk
Adds new GraphQL mutation/query flows (mostly
experimental=True) and new typed position serialization/deserialization, so failures would primarily be API/compatibility issues rather than affecting existing flows.Overview
Adds first-class Issue Management APIs to the Python SDK. Projects can now
create_issue,get_issues(cursor-paginated with filters),get_issue, anddelete_issues, whileIssueobjects supportupdate,resolve/reopen,delete, and comment CRUD (create_comment,comments,Comment.update,Comment.delete).Introduces typed issue pinning via new
IssuePositionmodels for image/PDF/text/video (with serialization + deserialization), plusIssueCategoryCRUD and new Sphinx docs and exports inlabelbox.__init__. Includes comprehensive unit + integration test coverage for the new GraphQL-backed workflows (all markedexperimental=True).Written by Cursor Bugbot for commit c6f03f4. This will update automatically on new commits. Configure here.