码迷,mamicode.com
首页 >  
搜索关键字:graphql    ( 156个结果
使用ASP.NET Core支持GraphQL( restful 配套)
https://github.com/graphql-dotnet GraphQL简介 下面是GraphQL的定义: GraphQL 既是一种用于 API 的查询语言也是一个满足你数据查询的运行时。 GraphQL 对你的 API 中的数据提供了一套易于理解的完整描述,使得客户端能够准确地获得它需要 ...
分类:Web程序   时间:2019-11-20 20:05:25    阅读次数:81
restQL 微服务查询语言
restQL 是一个强大的微服务查询语言,类似sql,支持并行、链式、过滤。同时官方也提供了多种语言的实现 而且还有一个manger 与 graphql 以及Falcor的比较 以下是来自官方的比较说明 参考资料 http://restql.b2w.io/#why-restQL https://gi ...
分类:编程语言   时间:2019-11-15 20:09:23    阅读次数:63
前端技术之:如何Mock GraphQL接口数据
// 第一步:引入所依赖的库const { makeExecutableSchema, addMockFunctionsToSchema } = require('graphql-tools');const { graphql } = require('graphql'); // 第二步:定义Gra ...
分类:其他好文   时间:2019-11-12 09:12:55    阅读次数:94
The Architectural Principles Behind Vrbo’s GraphQL Implementation
转自:https://medium.com/expedia-group-tech/graphql-component-architecture-principles-homeaway-ede8a58d6fde At Vrbo, we’ve been using GraphQL for over a ...
分类:其他好文   时间:2019-10-31 23:41:58    阅读次数:106
详解Python Graphql
前言 很高兴现在接手的项目让我接触到了Python Graphql,百度上对其介绍相对较少也不够全面,几乎没有完整的中文文档,所以这边也借此机会学习一下Graphql。 什么是Graphql呢? Graphql是一个API查询语言,其数据由服务器上的一个Scheme提供,其查询返回的数据依赖请求的时 ...
分类:编程语言   时间:2019-10-16 13:22:05    阅读次数:178
GraphQL Java - Batching
使用DataLoader 使用GraphQL的过程中,可能需要在一个图数据上做多次查询。使用原始的数据加载方式,很容易产生性能问题。 通过使用java dataloader,可以结合缓存(Cache)和批处理(Batching)的方式,在图形数据上发起批量请求。如果dataloader已经获取过相关 ...
分类:编程语言   时间:2019-09-16 19:36:22    阅读次数:103
从graphql endpoint获取schema文件
graphql server端有更新,client端需要重新获取schema文件用于创建新的api request,下面简要记录如何从graphql endpoint获取schema文件 You can simply install the CLI using npm or yarn by runn ...
分类:其他好文   时间:2019-09-13 01:09:51    阅读次数:134
[React + GraphQL] Use useLazyQuery to manually execute a query with Apollo React Hooks
When using useQuery from Apollo React Hooks, the request will be sent automatically after the component has been mounted. This might not be the desire ...
分类:其他好文   时间:2019-08-29 20:29:12    阅读次数:174
[GraphQL] Query GraphQL Interface Types in GraphQL Playground
Interfaces are similar to Unions in that they provide a mechanism for dealing with different types of data. However, an interface is more suited for d ...
分类:其他好文   时间:2019-08-20 19:07:28    阅读次数:102
[GraphQL] Query Lists of Multiple Types using a Union in GraphQL
Unions are used when we want a GraphQL field or list to handle multiple types of data. With a Union Type, we can define a field that could resolve com ...
分类:其他好文   时间:2019-08-20 18:52:54    阅读次数:72
156条   上一页 1 ... 3 4 5 6 7 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!