问题 I am trying to retrieve some data from Github's GraphQL API using graphql.js library. var graph = graphql("https://api.github.com/graphql", { method: "POST", headers: { "Authorization": "Bearer <my-token-here>", "Content-Type": "application/json" }, fragments: { rateLimitInfo: "on RateLimit {cost,remaining,resetAt}" } }); graph(` query repo($name: String!, $owner: String!){ repository(name:$name, owner:$owner){ id } } `,{ name: "freeCodeCamp", owner: "freeCodeCamp" }).then(function(response){