Data/GraphQL
-
GraphQLData/GraphQL 2025. 3. 6. 18:06
GraphQL is a query language for API.Server-side runtime for executing queries using a type system you define for data. Describe API with a type systemtype Query { category : Fruit} type Fruit { name: String} Along with functions for each field on each type// Provide data for the `me` field on the `Query` typefunction Query_fruit (query, args, context, info) { return context.request.aut..