内容简介:GraphQL Query Generator is an interesting library brought to you by the IBM team, which’s the main idea is to allow users toThe first thought that comes to your mind might be:“Why I may ever want a bunch of randomized queries?”
GraphQL Query Generator is an interesting library brought to you by the IBM team, which’s the main idea is to allow users to generate randomized GraphQL queries from any given GraphQL schema.
The first thought that comes to your mind might be:
“Why I may ever want a bunch of randomized queries?”
but giving it a second thought it might be quite useful. The team behind the GraphQL Query Generator suggested two basic use-cases for their library:
-
Engineering- when operating a GraphQL service you might find this library useful for:
- developing a collection of test modules of GraphQL queries,
- developing a test group of queries to check the effect of performance improvements,
- Scientific - to learn about the characteristics of various GraphQL services.
Queries generation
The library provides two functions for generating random GraphQL queries, both expecting a GraphQL schema, as well as specific instructions provided in configuration object as an input:
getRandomQuery(schema: GraphQLSchema, config: Configuration) getRandomMutation(schema: GraphQLSchema, config: Configuration)
Source: github.com/IBM
The configuration object accepts a set of predefined properties i.e.:
maxDepth argumentsToIgnore considerInterfaces considerUnions
The full list of available properties is available in the GraphQL Query Generator docs .
Sample GraphQL Query Generator configuration object
Source: github.com/IBM/graphql-query-generator
Great addition
GraphQL Query Generator is a great addition to the already broad spectrum of GraphQL tools. Its a relatively new library that is worth experimenting with as maybe you could find some other innovative ways it could be used by the GraphQL community.
很遗憾的说,推酷将在这个月底关闭。人生海海,几度秋凉,感谢那些有你的时光。
以上所述就是小编给大家介绍的《GraphQL Query Generator Library by IBM》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
反应式设计模式
Roland Kuhn、Brian Hanafee、Jamie Allen / 何品、邱嘉和、王石冲、林炜翔审校 / 清华大学出版社 / 2019-1-1 / 98.00 元
《反应式设计模式》介绍反应式应用程序设计的原则、模式和经典实践,讲述如何用断路器模式将运行缓慢的组件与其他组件隔开、如何用事务序列(Saga)模式实现多阶段事务以及如何通过分片模式来划分数据集,分析如何保持源代码的可读性以及系统的可测试性(即使在存在许多潜在交互和失败点的情况下)。 主要内容 ? “反应式宣言”指南 ? 流量控制、有界一致性、容错等模式 ? 得之不易的关于“什么行不通”的经验 ? ......一起来看看 《反应式设计模式》 这本书的介绍吧!