apollo

Graphql_Apollo

얄팍한 graphql & apollo 강좌 - Apollo 서버 구축

📌 목차 서론 설치 간단한 구현 graphql playground 결론 참고 📌 서론 얄코님의 강의를 정리한 내용들 입니다. 해당 강의는 apollo server와 react를 연결하는 부분을 구현합니다. 그럼 먼저 apollo-server를 설치해볼까요? 📌 설치 먼저 graphlql과 apollo-server를 설치해볼까요? npm install graphql apollo-server 📌 간단한 구현 const database = require('./database'); const { ApolloServer, gql } = require('apollo-server'); // 타입을 선언 합니다. const typeDefs = gql` type Query { teams: [..

Graphql_Apollo

Apollo - vue3에서 apollo 사용하기

목차 Introduction Installation main.js webpack gql file apollo composable Conclusion Reference 📌 Introduction 안녕하세요. 오늘은 apollo를 vue3에 한번 적용해보는 포스팅입니다. 해당 코드는 여기서확인 가능합니다. 📌 Installation npm install @apollo/client graphql react @vue/apollo-composable graphql-tag 여기서 왜 갑자기 react가 튀어나오나 싶으시겠지만...😭 네 react를 설치를 해줘야합니다. 크응... apollo client에 아마.. react가 있고.. 더 자세한건... 생략하겠습니다. 📌 main.js // main.js impo..

Graphql_Apollo

Apollo - nodejs + mongo 서버 만들기

목차 Introduction Apollo with express Connect mongo db Conclusion 📌 Introduction 안녕하세요. 오늘은 Apollo를 어떻게 연동하는지에 대해서 한번 알아볼게요. 해당 예제 코드는 여기서 확인 할 수 있습니다. 📌 Apollo with express Apollo에서 가장 중요한건 typeDefs와 resolvers입니다. import express from "express"; import { ApolloServer, gql } from "apollo-server-express"; const app = express(); // typeDefs로 스키마를 설정해줄수 있어요. const typeDefs = gql` type Query { hello: S..

eddie0329
'apollo' 태그의 글 목록