Skip to content

Instantly share code, notes, and snippets.

@stubailo
Created August 13, 2018 23:18
Show Gist options
  • Select an option

  • Save stubailo/a3ca63f00da797d5585cf9fd34f1ee63 to your computer and use it in GitHub Desktop.

Select an option

Save stubailo/a3ca63f00da797d5585cf9fd34f1ee63 to your computer and use it in GitHub Desktop.
Add dog photo
<Query
query={gql`
{
hello
+ dogPhotoUrl
}
`}
>
- {({ data }) => <div>A greeting from the server: {data.hello}</div>}
+ {({ data }) => (
+ <div>
+ A greeting from the server: {data.hello}<br />
+ <img src={data.dogPhotoUrl} />
+ </div>
+ )}
</Query>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment