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>
希望有用