GraphQL
birdflyinhigh
这个作者很懒,什么都没留下…
展开
-
GraphQL学习笔记1
1. GraphQL简介 1.1 为什么GraphQL存在? https://github.com/StephenGrider/GraphQLCasts 2.1 Restful Routing crud -> http -> url 2.2 Restful Routing的弊端 在实际工作中往往会有这种情景出现:比如说我需要展示一个游戏名的列表,可接口却会把游戏的详...原创 2019-12-17 18:27:47 · 260 阅读 · 0 评论 -
GraphQL学习笔记2
2. 数据查询 2.1 嵌套查询 const CompanyType = new GraphQLObjectType({ name: 'Company', fields: { id: {type: GraphQLString}, name: {type: GraphQLString}, description: {type: Gr...原创 2019-12-17 18:25:45 · 186 阅读 · 0 评论