INPUT_OBJECT

CreateWatchlist

link GraphQL Schema definition

1input CreateWatchlist {
5
2# Date and time at which the watchlist becomes effective.
3# If not provided, defaults to current time.
4startDateTime: DateTime
8
6# Date and time at which the watchlist expires and is no longer effective.
7stopDateTime: DateTime!
10
9cognitiveSearches: [CreateCognitiveSearchInWatchlist!]
12
11name: String!
14
13sourceTypeIds: [ID!]
17
15# Optional ID for a folder the watchlist should be filed in
16parentFolderId: ID
19
18sourceIds: [ID!]
23
20# Set structured metadata on the watchlist.
21# The data is subject to a set of schemas.
22details: JSONData
25
24searchIndex: SearchIndex
27
26subscriptions: [CreateSubscriptionInWatchlist!]
31
28# Indicates whether or not the watchlist expiration notification should be enable
29# The default value is false
30enableExpirationNotification: Boolean
33
32watchlistType: String
34}