客户端接入
客户端接入
客户端接入
目前最为著名的
如果我们使用
基础客户端
import ApolloClient from "apollo-boost";
const client = new ApolloClient({
uri: "https://graphql.example.com"
});
import gql from "graphql-tag";
client
.query({
query: gql`
query TodoApp {
todos {
id
text
completed
}
}
`
})
.then(data => console.log(data))
.catch(error => console.error(error));