OBJECT

Subscription

link GraphQL Schema definition

  • type Subscription {
  • # Subscribes to updates on resources created by/shared with the logged in user
  • #
  • # Se suscribe a actualizaciones de recursos creados por/compartidos con el usuario
  • # de la sesión
  • #
  • # Arguments
  • # userId: Stringified ObjectId ID of the user // Identificador de
  • # tipo ObjectId pasado a string del usuario
  • newResourceReady(userId: String): ResourceUpdate
  • # Subscribes to resources creations that are created by/shared with the logged in
  • # user
  • #
  • # Se suscribe a creaciones de recursos que sean creados por/compartidos con el
  • # usuario de la sesión
  • #
  • # Arguments
  • # userId: Stringified ObjectId ID of the user // Identificador de
  • # tipo ObjectId pasado a string del usuario
  • newResourceCreated(userId: String): ResourceCard
  • # Subscribes to updates on notifications for the logged in user
  • #
  • # Se suscribe a actualizaciones de notificaciones para el usuario de la sesión
  • #
  • # Arguments
  • # userId: Stringified ObjectId ID of the user // Identificador de
  • # tipo ObjectId pasado a string del usuario
  • myNotificationDataSub(userId: String): [ResourceNotification!]!
  • }

link Require by

This element is not required by anyone