【发布时间】:2020-12-15 03:43:19
【问题描述】:
首先对不起我的英语。 所以我试图从 GraphQL 服务器获取一些数据并且有几个问题, 这是我的代码:
import { createHttpLink } from 'apollo-link-http';
import { gql } from '@apollo/client';
import { ApolloClient, InMemoryCache } from '@apollo/client';
import 'babel-polyfill';
const httpLink = createHttpLink({
uri: 'https://api.spacex.land/graphql/',
headers: {
authorization: 'Bearer MY_TOKEN',
},
});
const client = new ApolloClient({
link: httpLink,
cache: new InMemoryCache(),
connectToDevTools: true,
query: {
fetchPolicy: 'network-only',
errorPolicy: 'all',
}
});
async function fetchedData(params) {
const fetched = await client.query({
query: gql`
query {
launchesPast(limit: 10) {
mission_name
launch_date_local
launch_site {
site_name_long
}
links {
article_link
video_link
}
rocket {
rocket_name
first_stage {
cores {
flight
core {
reuse_count
status
}
}
}
second_stage {
payloads {
payload_type
payload_mass_kg
payload_mass_lbs
}
}
}
ships {
name
home_port
image
}
}
}
`,
fetchPolicy: "network-only",
variables: null
});
return fetched;
}
导出默认fetchedData().then((res) => console.log(res));
Browser tab Network Browser tab Network
浏览器选项卡响应:
{"errors":[{"message":"查询超出复杂度 limit","locations":[{"line":1,"column":1}],"extensions":{"code":"GRAPHQL_VALIDATION_FAILED"}}]}
浏览器标签控制台:
POST https://api.spacex.land/graphql/ 400(错误请求);
例如,通过 GraphQLClient.request() 进行的相同查询正在运行。
import 'babel-polyfill';
import { GraphQLClient, gql } from 'graphql-request'
async function fetchedData() {
const endpoint = 'https://api.spacex.land/graphql/'
const graphQLClient = new GraphQLClient(endpoint, {
headers: {
authorization: 'Bearer MY_TOKEN',
},
})
const query = gql`query {
launchesPast(limit: 10) {
mission_name
launch_date_local
launch_site {
site_name_long
}
links {
article_link
video_link
}
rocket {
rocket_name
first_stage {
cores {
flight
core {
reuse_count
status
}
}
}
second_stage {
payloads {
payload_type
payload_mass_kg
payload_mass_lbs
}
}
}
ships {
name
home_port
image
}
}
}
`
const data = await graphQLClient.request(query)
console.log(JSON.stringify(data, undefined, 2))
return data;
}
export default fetchedData().catch((error) => console.error(error));
Browser tab Network Browser tab Network
并且浏览器选项卡响应是正确的
【问题讨论】:
标签: javascript react-apollo apollo-client graphql-js