Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- vscode
- 일상
- 초보
- underscores
- Instantiation Patterns
- grpahQL
- 자바스크립트
- react
- 공부
- 포스기
- nqueens
- method
- JS
- 리액트
- 코드스테이츠
- 연습
- underbar
- 엔퀸즈
- 해커톤
- 취업
- this
- 클라이언트
- DOM
- 코딩
- 개발
- array
- ftech
- JavaScript
- 제일어려워
- 알고리즘
Archives
- Today
- Total
analogcoding
Apollo Token 본문
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