Skip to content
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

feat(compass): add new field in searchAssetsRequest #239

Merged
merged 1 commit into from
Jan 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions odpf/compass/v1beta1/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,11 @@ message SearchAssetsRequest {
map<string, string> query = 5 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "query result based on a (nested) field of the asset. the nested field is written with period separated field name. eg, \"query[data.owner]\""
}];

repeated string include_fields = 6 [(validate.rules).repeated = {
unique: true,
ignore_empty: true
}];
}

message SearchAssetsResponse {
Expand Down