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

DVX-624: Adds ability to search for source-synced tags by assigned value #390

Merged
merged 1 commit into from
Sep 30, 2024

Conversation

Aryamanz29
Copy link
Member

@Aryamanz29 Aryamanz29 commented Sep 27, 2024

Other changes

  • Added initial support for Span, SpanNear, SpanWithin and SpanTerm queries for textual fields.

Sample snippet

from pyatlan.client.atlan import AtlanClient
from pyatlan.model.assets.core.asset import Asset
from pyatlan.model.fluent_search import CompoundQuery, FluentSearch

client = AtlanClient()

tables = (
    FluentSearch()
    .select()
    .where(Asset.TYPE_NAME.eq("Table"))
    .where(CompoundQuery.tagged_with_value("Confidential", "Highly Restricted"))
).execute(client=client)

print(tables.count)

…`value`

- Added initial support for `Span, SpanNear, SpanWithin` and `SpanTerm` queries for textual fields.
@Aryamanz29 Aryamanz29 changed the title DVX-624: Added initial support for Span, SpanNear, SpanWithin and SpanTerm queries for textual fields DVX-624: Adds ability to search for source-synced tags by assigned value Sep 27, 2024
@Aryamanz29 Aryamanz29 self-assigned this Sep 27, 2024
@Aryamanz29 Aryamanz29 added the feature New feature or request label Sep 27, 2024
@Aryamanz29 Aryamanz29 merged commit 9f4ceae into main Sep 30, 2024
35 checks passed
@Aryamanz29 Aryamanz29 deleted the DVX-624 branch September 30, 2024 11:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant