Last active
January 15, 2019 16:37
-
-
Save kamilkisiela/1566d67f3497a19ad3a0184a1cdc1857 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
chats @rest(type: "Chat", path: "/chats") | |
{ | |
id @export(as: "chatId") | |
members @rest(type: "[User]", path: "/chats/:chatId/members") { | |
...UserFragment | |
} | |
recentMessage @type(name: "Message") { | |
...MessageFragment | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment