Import the GraphQL file in nuxt.js.
P粉754473468
P粉754473468 2023-07-28 10:59:10
0
1
577
<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>
P粉754473468
P粉754473468

reply all(1)
P粉807471604

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:


query AllUsers {
  allUsers {
    nodes {
      id
      name
      # other fields...
    }
  }
}

Import and use AllUsers query in the component:

<script setup>
import { useQuery } from "@vue/apollo-composable";
import { loader } from "graphql.macro";

const Schema = loader('@/graphql/schema.gql');

const { result } = useQuery({
  query: Schema.AllUsers
});

// Here, 'result' will contain your fetched data when available.
</script>

Hope it’s useful

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template