Skip to content

Instantly share code, notes, and snippets.

@ksaldana1
Created March 13, 2020 01:29
Show Gist options
  • Save ksaldana1/5866baef36429649030cd957c8e98bc7 to your computer and use it in GitHub Desktop.
Save ksaldana1/5866baef36429649030cd957c8e98bc7 to your computer and use it in GitHub Desktop.
re_example_1.2
module Query = [%relay.query
{|
query AppQuery {
messages {
id
text
author {
__typename
...on User {
id
name
role
}
...on Guest {
placeholder
}
}
}
}
|}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment