OBJECT
Feed
A type that describes a feed commited by an user
link GraphQL Schema definition
1 type Feed { 2 3 # Unique feed identifier 4 String! : 5 6 # Title of the feed 7 String! : 8 9 # The username that commited the feed 10 String! : 11 12 # Body text of feed 13 String! : 14 15 # Comments commited on this feed 16 Comment] : [ 17 18 # Date when feed was commited in UNIX milliseconds 19 String! : 20 21 # Pictures of the feed 22 Image] : [ 23 24 # Number of users that liked the feed 25 Int! : 26 27 # Number of users that does not liked the feed 28 Int! : 29 30 # Opinion about the feed from the user making the request 31 Opinion : 32 33 }