-
Notifications
You must be signed in to change notification settings - Fork 1
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
update client's get_database_details()
method to return only display tagged tables
#435
Comments
list_database_tables()
method to return only display tagged tablesget_database_details()
method to return only display tagged tables
This isn't applying the filter as expected: {
container(urn: "urn:li:container:06d3f8d11aa556b104a09cc454be2f82") {
entities(
input: {
start: 0
count: 500
filters: [
{ field: "tags", values: ["urn:li:tag:dc_display_in_catalogue"] }
]
}
) {
total
searchResults {
entity {
urn
...datasetDetails
}
}
}
}
}
fragment datasetDetails on Dataset {
urn
properties {
name
}
} even this doesn't work: filters: [
{ field: "tags", values: ["garbage"], condition:EQUAL }
] Need to dig into the source a bit and see if there is a bug here |
It looks like the But this does not use the filter param, even though it is a valid field. final String query = input.getQuery() != null ? input.getQuery() : "*";
final int start = input.getStart() != null ? input.getStart() : 0;
final int count = input.getCount() != null ? input.getCount() : 20; I'll report this as a bug but for now we can workaround it by filtering in python. |
Filter for tagged tables
The text was updated successfully, but these errors were encountered: