OBJECT

CognitiveSearch

link GraphQL Schema definition

1type CognitiveSearch {
2
3id: ID!
4
5# A recursive tree structure defining the search criteria
6profile: JSONData
7
8# ID of the mention status to set on each mention generated as a result
9# of a match against this search
10mentionStatusId: ID
11
12# The mention status to set on each mention generated as a result
13# of a match against this search
14mentionStatus: MentionStatus
15
16# The raw query. Read-only and server-generated based on the search profile.
17query: JSONData
18
19}