analogcoding

Apollo Token 본문

Be well coding/Learn more

Apollo Token

be well 2019. 7. 26. 15:14
import React from 'react';
import { render } from 'react-dom';
import './index.css';
import App from './App';
import ApolloClient from "apollo-boost";

const client = new ApolloClient({
    uri: "https://api.github.com/graphql",
    request: operation => {
        operation.setContext({
            headers: {
                authorization: `Bearer your-personal-access-token`
            },
        });
    }
});

render(<App />, document.getElementById('root'));

uri : 데이터를 가져 오기 위해 사용하는 graphql 끝점.

요청 : 모든 요청에 ​​대해 현재 사용자를 확인하기 위해 승인 헤더를 보낸다.

'Be well coding > Learn more' 카테고리의 다른 글

ESlint 설정 ( with babel , prettier , gitignore)  (0) 2019.07.27
Apollo ready to get data  (0) 2019.07.26
Apollo Start  (0) 2019.07.26
GraphQL 사용법  (0) 2019.07.26
GraphQL  (0) 2019.07.25
Comments