suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Importieren Sie die GraphQL-Datei in nuxt.js.

<p>Ich importiere also das von Postgraphile generierte Schema, aber es wird nicht richtig geladen. </p><p>Dies ist die Art der Ausgabe: </p><p><br /></p> <pre class="brush:php;toolbar:false;">definitionen: Array(44) [ {…}, {…}, {…}, … ] Art: „Dokument“ loc: Object { start: 0, end: 26188, source: {…} }</pre> <p>Ich habe verschiedene Codevarianten ausprobiert, um meine Abfrage allUsers zu laden. </p> <pre class="brush:php;toolbar:false;"><script setup> Schema aus „@/graphql/schema.gql“ importieren console.log('Query', Schema.valueOf('allUsers')) const { data } = Warten auf useAsyncQuery(Query) </script></pre> <p><br /></p>
P粉754473468P粉754473468523 Tage vor571

Antworte allen(1)Ich werde antworten

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

    希望有用

    Antwort
    0
  • StornierenAntwort