OBJECT

Share

Represents a sharing relationship between a user and a file or folder

link GraphQL Schema definition

  • type Share {
  • # Unique identifier for the share
  • id: ID!
  • # The file or folder being shared
  • item: SharedItem!
  • # User with whom the item is shared
  • sharedWith: User!
  • # Timestamp when the share was created
  • createdAt: String!
  • }