-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[3/n][Selection syntax] Add stubs to allow Cloud to extend selection syntax functionality. #27184
[3/n][Selection syntax] Add stubs to allow Cloud to extend selection syntax functionality. #27184
Conversation
Deploy preview for dagit-core-storybook ready! ✅ Preview Built with commit 97fb151. |
…astic-search-filters-in-selection-syntax
const assetNames = Array.from(assetNamesSet); | ||
const tagNames = Array.from(tagNamesSet); | ||
const owners = Array.from(ownersSet); | ||
const groups = Array.from(groupsSet); | ||
const kinds = Array.from(kindsSet); | ||
const codeLocations = Array.from(codeLocationSet); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth sorting these in any way?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah probably, let me add that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will add in a follow-up PR so that I can unbreak buildkite
…syntax functionality. (dagster-io#27184) ## Summary & Motivation - Add `useAssetGraphSupplementaryData` so that Cloud can query for extra data to support the filtering - Feed that data all the way through to the visitor that does the filtering. Don't do anything with it in the OSS visitor, Cloud will use it in its visitor though to do that additional filtering. ## How I Tested These Changes Manual testing + relying on existing jest tests <img width="650" alt="Screenshot 2025-01-16 at 6 25 14 PM" src="https://github.com/user-attachments/assets/a5bbf8d7-c4f0-4d8b-bd53-0debdd3b794f" />
Summary & Motivation
useAssetGraphSupplementaryData
so that Cloud can query for extra data to support the filteringHow I Tested These Changes
Manual testing + relying on existing jest tests