OBJECT

Sharing

A Sharing is an object that has a unique URL that allows tracking of an Application. It contains also the number of landings and conversions. Typically it is being created to be shared with an external platform.

link GraphQL Schema definition

  • type Sharing {
  • id: Int
  • platform: Int
  • name: String
  • type: Int
  • landings: Int
  • conversions: Int
  • # Creation date of the Sharing
  • created_at: String
  • # Updating date of the Sharing. This date get's updated every time either landing
  • # or conversion gets updated as well.
  • updated_at: String
  • # If the type is equal to 2, indicate if the Sharing object is being published to
  • # the external platform or not. Keep in mind that this is the status in nCore, the
  • # status in the external platform may be different (i.e. an external platform may
  • # decide to remove the link and not notify nCore).
  • published: Boolean
  • }