Skip to content
On this page

GraphQL

Title
GraphQL
Category
Glossary
Tags
Aliases
GraphQL
Created
2 years ago
Updated
last year

핵심 개념

Schema Definition Language

GraphQL은 API의 스키마를 정의하는 자체 타입 시스템을 갖고 있다.

graphql
type Person {
	name: String!
	age: Int!
}
type Person {
	name: String!
	age: Int!
}

Released under the MIT License.