OBJECT
TrackingPixel
A tracking pixel is used to measure impressions or demographics.
link GraphQL Schema definition
1 type TrackingPixel { 2 3 # Where this pixel came from. 4 : String 5 6 # What service will be using the pixel. 7 : String! 8 9 # How long a client needs to view the content before firing the pixel. 10 : Int 11 12 # The type of tracker. 13 : TrackingPixelType 14 15 # The URL that is requested when the pixel is fired. 16 : String! 17 18 }