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.access_model_metadata.models.queryresultfilter import Queryresultfilter

queryresultfilter = Queryresultfilter(
includes=["name","displayName"],
excludes=["stacktrace"]
)

[Back to top]