搜尋

首頁  >  問答  >  主體

在nuxt.js中匯入GraphQL檔案。

<p>所以我正在導入由postgraphile產生的模式,但它沒有正確加載。 </p><p>這是輸出的型別:</p><p><br /></p> <pre class="brush:php;toolbar:false;">definitions: Array(44) [ {…}, {…}, {…}, … ] kind: "Document" loc: Object { start: 0, end: 26188, source: {…} }</pre> <p>我嘗試了各種程式碼變更來載入我的查詢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粉754473468P粉754473468494 天前557

全部回覆(1)我來回復

  • P粉807471604

    P粉8074716042023-07-29 00:04:48

    valueOf方法不適用於此目的。 GraphQL模式文件無法透過鍵值對存取方法直接存取其查詢、變異或訂閱。 、

    首先,請確保您已在專案中安裝了graphql-tag套件:

    npm install graphql-ta

    在schema.gql中定義您的查詢:


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

    在元件中匯入並使用AllUsers查詢:

    <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>

    希望有用

    回覆
    0
  • 取消回覆