Skip to content

Instantly share code, notes, and snippets.

@unicodeveloper
Last active July 24, 2021 12:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unicodeveloper/830db81edafe34cda77af5ae17116613 to your computer and use it in GitHub Desktop.
Save unicodeveloper/830db81edafe34cda77af5ae17116613 to your computer and use it in GitHub Desktop.
const User = ({ id, children }) => {
<Query query={GET_USER} variables={{ userId }}>
{({ loading, data }) => (children({ user: data}))
</Query>
}
const UserStartup = ({ user: { email }, children }) => (
<Query query={GET_HACKERNEWS_STARTUP} variables={{ email }}>
{({ loading, data: { startup } }) => (
<Query query={GET_REPO} variables = {{ startup }}>
{({loading, error, data: { correspondingRepo: repo } }) => (
children({ repo, email, startup })
)}
</Query>
)}
</Query>
)
const UI = ({ repo, email, startup, loading, error }) => {
if (loading) return <p>Loading...</p>;
if (error) return <p>Error...</p>;
return (
<div>
<p> corresponding Repo for { email } and { startup } : { repo } </p>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment