Created
August 4, 2021 13:42
-
-
Save dabit3/a4a0303a11e930465c591eec2f79167e to your computer and use it in GitHub Desktop.
Querying The Graph with URQL & React
This file contains 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
import './App.css'; | |
import { createClient } from 'urql' | |
import { useEffect, useState } from 'react' | |
const APIURL = "" | |
const query = ` | |
query { | |
tokens( | |
first: 5 | |
orderBy: tokenID | |
orderDirection:desc | |
) { | |
id | |
tokenID | |
contentURI | |
metadataURI | |
} | |
} | |
` | |
const client = createClient({ | |
url: APIURL | |
}) | |
function App() { | |
const [tokens, setTokens] = useState([]) | |
useEffect(() => { | |
fetchData() | |
}, []) | |
async function fetchData() { | |
const response = await client.query(query).toPromise(); | |
console.log('response:', response) | |
setTokens(response.data.tokens); | |
} | |
return ( | |
<div className="App"> | |
{ | |
tokens.map((token, index) => ( | |
<div> | |
<a href={token.contentURI} target="_blank">Content</a> | |
<a href={token.metadataURI} target="_blank">Metadata</a> | |
</div> | |
)) | |
} | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment