Whether or not the saved query is compatible with the current API version. This will be true if and only if SavedQuery.reportQuery is non-null. A saved query will be
incompatible with the API if it uses columns, dimensions, or other reporting features from the
UI that are not available in the ReportQuery entity.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-02-13 UTC."],[[["A SavedQuery is essentially a saved ReportQuery that defines the criteria for generating a report."],["It is identifiable by a unique ID and has a descriptive name."],["The `reportQuery` field contains the actual ReportQuery if compatible with the current API version, indicated by `isCompatibleWithApiVersion`."],["Compatibility depends on whether the SavedQuery uses features available in the ReportQuery entity of the current API version."]]],["The `ReportService` uses `SavedQuery` to store report selection criteria. Each `SavedQuery` has an ID, name, and a `ReportQuery` defining the criteria if compatible with the API version. Compatibility is determined by checking if the `reportQuery` field is non-null and uses available API features. The `isCompatibleWithApiVersion` flag indicates this compatibility. Saved queries that include features not included in the `ReportQuery` are not compatible.\n"]]