OBJECT

TrackingInfo

Information used to track recommendation events.

link GraphQL Schema definition

1type TrackingInfo {
2
3# The target object for the shelf, if it exists.
4reasonTarget: String
5
6# The type of the target object, if it exists.
7reasonTargetType: String
8
9# The reason why this shelf has been recommended.
10reasonType: String!
11
12# The name of the shelf.
13rowName: String!
14
15}