OBJECT

Link

Definition of the Link type. It represents a public link of a specific node. Temporarily only a file can have a link

link GraphQL Schema definition

  • type Link {
  • # Unique identifier of the link.
  • id: ID!
  • # Full URL to access the related node. It will be returned only if the requester
  • # has the
  • # can_share permission on the node. However anyone who has this
  • # link can
  • # download the node.
  • url: String
  • # Node related to this link.
  • node: Node!
  • # Link creation timestamp.
  • created_at: DateTime!
  • # Link expiration timestamp.
  • expires_at: DateTime
  • # Link description. It must be shorter than 300 characters.
  • description: String
  • }