I'm using queries Apollo and i want to know how to wait datas to display my page. Because i'm getting warning and errors. See screen
import TemplatePresentationPage from "./../components/TemplatePresentationPage.vue";
import gql from 'graphql-tag'
export default {
apollo: {
entry: gql`MY QUERY`
},
components: { TemplatePresentationPage },
name: "PresentationRoyalArmy",
props: {},
setup() {
},
};
</script>
<template :v-if="entry">
<TemplatePresentationPage
:resultOfQuery="entry.datas"
/>
</template>
<style lang="scss" scoped></style>