OBJECT
Watchlist
link GraphQL Schema definition
1 type Watchlist { 2 3 # The primary ID 4 ID! : 5 6 # A human-readable name for the watchlist 7 String! : 8 9 # The organization that owns the watchlist 10 Organization! : 11 12 # ID of the organization that owns the watchlist 13 ID! : 14 15 # IDs of the schedules associated with the watchlist 16 ID!] : [ 17 18 # Date and time at which the watchlist takes effect 19 DateTime : 20 21 # Date and time at which the watchlist is no longer in effect 22 DateTime : 23 24 # Date and time the watchlist was created 25 DateTime : 26 27 # Date and time the watchlist was last modified 28 DateTime : 29 30 # Cognitives searches associated with the watchlist 31 CognitiveSearch!] : [ 32 33 # Ids of the source types associated directly with the watchlist 34 ID!] : [ 35 36 # IDs of the sources associated directly with the watchlist 37 ID!] : [ 38 39 # Folders that the watchlist is filed in. 40 # At present, a watchlist can only be filed in a single folder. 41 Folder!] : [ 42 43 # Structured metadata associated with the watchlist. 44 # Elements of the metadata are validated against specific schemas. 45 JSONData : 46 47 Subscription!]! : [ 48 49 SearchIndex! : 50 51 JSONData : 52 53 # Get mentions generated for this watchlist 54 Int, : Int): MentionList ( : 55 56 # ID of the advertiser directly with the watchlist 57 ID : 58 59 # ID of the brand directly with the watchlist 60 ID : 61 62 # advertiser associated with the watchlist 63 JSONData : 64 65 # brand associated with the watchlist 66 JSONData : 67 68 # creative associated with the watchlist 69 Creative : 70 71 # The reference to the watchlist in a folder 72 ID @deprecated( reason: "obsolete" ) : 73 74 # Indicates whether or not the watchlist should be disabled. 75 # The Veritone platform can administratively disable watchlists 76 # if the search scope as measured in number of mentions 77 # exceeds organization limits. The owner can then modify the 78 # watchlist parameters to reduce the scope and re-enable the watchlist. 79 Boolean : 80 81 # Indicates whether the watchlist is currently creating mentions from exising 82 # media 83 Boolean : 84 85 # Is enable the expiration notification 86 Boolean : 87 88 String : 89 90 }
link Required by
- Mention
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.
- WatchlistList