OBJECT

Share

link GraphQL Schema definition

1type Share {
2
3# The user that created this share.
4author: User
5
6# Time the share was created by the user.
7createdAt: Time
8
9# Share ID.
10id: ID!
11
12# The item that was shared.
13target: ShareTarget
14
15}