본문 바로가기

좋아하는 것_매직IT/96.IT 핫이슈

Grafbase - 인스턴트 서버리스 GraphQL 백엔드 (grafbase.com)

반응형

Grafbase - 인스턴트 서버리스 GraphQL 백엔드를 소개합니다.

홈페이지에서는 아래와 같이 소개하고 있군요.
grafbase lets you go from idea to serverless GraphQL backend in seconds.

한마디로, grafbase 는 인스턴트 서버리스 GraphQL 백엔드라고 머릿속에 넣어두시면 됩니다.

시작은 아래와 같이하시면 되고요..

Getting Started

Run the following command in a new directory:

 
npx grafbase init

Then populate grafbase/schema.graphql with this schema:

 
type Todo @model {
  id: ID!
  title: String!
  complete: Boolean!
}

To start your local development environment run this command:

 
npx grafbase dev

You can interact with your GraphQL API using the Playground, which runs on http://localhost:4000 by default.

Create a new Todo:

 
mutation {
  todoCreate(input: { title: "Hello, world!", complete: false }) {
    todo {
      id
      title
      complete
    }
  }
}

Congratulations! You have just built your first Todo GraphQL backend.

Grafbase의 특징을 간단하게 정리하자면 아래와 같습니다.

  • 개발자를 위한 Edge-Native 데이터 플랫폼
  • 가볍고 빠르게 GraphQL 백엔드를 로컬에서 실행
    • SDL로 스키마 설정하고 실행하면 끝
  • Edge 서버에 배포해서 프로덕션 운영하고 사용량 단위로 가격 지불

좀 더 자세한 사항은 아래 홈페이지 접속해보시면 될것 같네요..

오늘의 블로그는 여기까지고요..
항상믿고 봐주셔서 감사합니다. 

 

 

728x90
300x250