OBJECT

Feed

A type that describes a feed commited by an user

link GraphQL Schema definition

1type Feed {
2
3# Unique feed identifier
4id: String!
5
6# Title of the feed
7title: String!
8
9# The username that commited the feed
10author: String!
11
12# Body text of feed
13body: String!
14
15# Comments commited on this feed
16comments: [Comment]
17
18# Date when feed was commited in UNIX milliseconds
19date: String!
20
21# Pictures of the feed
22pictures: [Image]
23
24# Number of users that liked the feed
25likes: Int!
26
27# Number of users that does not liked the feed
28dislikes: Int!
29
30# Opinion about the feed from the user making the request
31status: Opinion
32
33}

link Required by