INPUT_OBJECT

UpdateWatchlist

link GraphQL Schema definition

1input UpdateWatchlist {
3
2id: ID!
5
4startDateTime: DateTime
7
6stopDateTime: DateTime
9
8name: String
11
10sourceTypeIds: [ID!]
15
12# Set structured metadata on the watchlist.
13# The data is subject to a set of schemas.
14details: JSONData
17
16searchIndex: SearchIndex
19
18parentFolderId: ID
21
20sourceIds: [ID!]
23
22subscriptions: [CreateSubscriptionInWatchlist!]
25
24cognitiveSearches: [CreateCognitiveSearchInWatchlist!]
32
26# Indicates whether or not the watchlist should be disabled.
27# The Veritone platform can administratively disable watchlists
28# if the search scope as measured in number of mentions
29# exceeds organization limits. The owner can then modify the
30# watchlist parameters to reduce the scope and re-enable the watchlist.
31isDisabled: Boolean
35
33# Indicates whether or not the watchlist expiration notification should be enable
34enableExpirationNotification: Boolean
39
36# Enforce mention regeneration even when cognitive search profile
37# and target filters have not changed.
38regenerateExistingMentions: Boolean
40}