Skip to main content

QueryResultFilter

Allows the query results to be filtered by specifying a list of fields to include and/or exclude from the result documents.

Properties

NameTypeDescriptionNotes
includes[]strThe list of field names to include in the result documents.[optional]
excludes[]strThe list of field names to exclude from the result documents.[optional]
}

Example

from sailpoint.v2024.models.query_result_filter import QueryResultFilter

query_result_filter = QueryResultFilter(
includes=[name, displayName],
excludes=[stacktrace]
)

[Back to top]