Import the GraphQL file in nuxt.js.
P粉754473468
2023-07-28 10:59:10
<p>So I'm importing the schema generated by postgraphile, but it's not loading correctly. </p><p>This is the type of output: </p><p><br /></p>
<pre class="brush:php;toolbar:false;">definitions: Array(44) [ {…}, {…}, {…}, … ]
kind: "Document"
loc: Object { start: 0, end: 26188, source: {…} }</pre>
<p>I have tried various code variations to load my query allUsers. </p>
<pre class="brush:php;toolbar:false;"><script setup>
import Schema from '@/graphql/schema.gql'
console.log('Query', Schema.valueOf('allUsers'))
const { data } = await useAsyncQuery(Query)
</script></pre>
<p><br /></p>
The valueOf method is not suitable for this purpose. GraphQL schema documents do not have direct access to their queries, mutations, or subscriptions via key-value access methods. ,
First, make sure you have installed the graphql-tag package in your project:
npm install graphql-ta
Define your query in schema.gql:
Import and use AllUsers query in the component:
Hope it’s useful