Created
October 2, 2022 14:53
-
-
Save AlaBenAicha/8f991fa7da738de3ae4dcd3e36c4bd52 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// pages/index.js | |
export async function getServerSideProps() { | |
const { data } = await client.query({ | |
query: gql` | |
query Countries { | |
countries { | |
code | |
name | |
emoji | |
} | |
} | |
`, | |
}); | |
return { | |
props: { | |
countries: data.countries.slice(0, 4), | |
}, | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment