feat: Search created by user in pipeline run API#108
Open
yuechao-qin wants to merge 1 commit intoycq/search-pipeline-run-annotationsfrom
Open
feat: Search created by user in pipeline run API#108yuechao-qin wants to merge 1 commit intoycq/search-pipeline-run-annotationsfrom
yuechao-qin wants to merge 1 commit intoycq/search-pipeline-run-annotationsfrom
Conversation
This was referenced Feb 24, 2026
Collaborator
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
6789217 to
01de682
Compare
41a18a2 to
7606c83
Compare
01de682 to
9a3927b
Compare
7606c83 to
98e7d41
Compare
9a3927b to
0e3ac9b
Compare
98e7d41 to
ecd7842
Compare
0e3ac9b to
df1b586
Compare
This was referenced Feb 26, 2026
yuechao-qin
commented
Feb 27, 2026
ecd7842 to
ba5594e
Compare
df1b586 to
05e42b2
Compare
05e42b2 to
afa68d5
Compare
ba5594e to
d6f04df
Compare
afa68d5 to
527caa1
Compare
527caa1 to
7b5d7cb
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.

TL;DR
Implemented search
created_byuser in Pipeline Runs.What changed?
Functionality
API
GET /api/pipeline_runs/created_byuser infilter_query. Example query (not URL encoded for example):/api?filter_query={"and": [{"value_equals": {"key": "system/pipeline_run.created_by", "value": "[email protected]"}}]}meis supported forcreated_bysearch.API
POST /api/pipeline_runs/created_bydata to the annotations table for future searching. Example pipeline run annotations table after API is called:abc123system/pipeline_run.created_by[email protected]API
[PUT|DELETE] /api/pipeline_runs/{id}/annotations/{key}system/prefix. Reserved for system annotation usage.Other
created_byannotations. Example what a pipeline run's created by user would look like in the annotations table:How to test?
created_byvalues{"and": [{"value_equals": {"key": "system/pipeline_run.created_by", "value": "alice"}}]}to search by creator"me"placeholder:{"and": [{"value_equals": {"key": "system/pipeline_run.created_by", "value": "me"}}]}value_contains) are rejectedWhy make this change?
create_by) to be searchable with the new filter.created_byto annotations table when starting a Pipeline Run