feat: add has_metadata_key to bd query DSL#2
Open
turian wants to merge 2 commits intofeat/metadata-queryablefrom
Open
feat: add has_metadata_key to bd query DSL#2turian wants to merge 2 commits intofeat/metadata-queryablefrom
turian wants to merge 2 commits intofeat/metadata-queryablefrom
Conversation
Add SQL-level metadata filtering using Dolt's JSON_EXTRACT and JSON_UNQUOTE functions, with strict key validation to prevent JSON path injection. New CLI flags for bd list and bd search: --metadata-field key=value (repeatable, AND semantics) --has-metadata-key key (existence check) New bd query DSL support: metadata.team = "platform" metadata.sprint = "Q1" AND metadata.team = "platform" Implements GH#1406. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Support metadata existence checks in the query DSL: bd query "has_metadata_key=team AND status=open" Completes the list/search/query triangle for metadata existence filtering. Uses existing IssueFilter.HasMetadataKey field and SQL-level JSON_EXTRACT IS NOT NULL from PR2. Implements GH#1406. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
58f05e6 to
ca318fe
Compare
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
has_metadata_key=<keyname>field to thebd queryDSLKnownFieldsregistry for documentationIssueFilter.HasMetadataKeyand SQLJSON_EXTRACT IS NOT NULLBase:
feat/metadata-queryable(PR steveyegge#1908 against upstream)Test plan
TestEvaluatorHasMetadataKeyQueries— 4 cases: basic, combined with status, OR predicate, invalid keyTestHasMetadataKeyPredicateEvaluation— predicate mode with key present, absent, and OR fallback🤖 Generated with Claude Code