We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to establish an in-component example to demonstrate how one could do data-fetching with phantom.
phantom
End result could be akin to this rough sketch (using GraphQL):
GraphQL
async function phantomComponent() { const usernameQuery = gql`{ data { username } }` const username = await fetchUsername(query); return `${Profile(username)}`; } }
How async functions behave with the phantom engine remains to be seen. 😈
async
The text was updated successfully, but these errors were encountered:
Hello @sidiousvic 👋 Is it ok if I work on this issue? I have an idea! Would it be ok to add a fourth example that has some async fetch calls?
Sorry, something went wrong.
@mussinbenarbia Go ahead! Let me know if you run into a fundamental shortcoming of Phantom 👀
sidiousvic
No branches or pull requests
We need to establish an in-component example to demonstrate how one could do data-fetching with
phantom
.End result could be akin to this rough sketch (using
GraphQL
):How
async
functions behave with thephantom
engine remains to be seen. 😈The text was updated successfully, but these errors were encountered: