博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[GraphQL] Query Lists of Multiple Types using a Union in GraphQL
阅读量:4983 次
发布时间:2019-06-12

本文共 534 字,大约阅读时间需要 1 分钟。

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 completely different types of data. In this lesson, we will write a query that obtains a list of different pet types

 

 

Unit type, we cannot use common field in query, I have to write in fragment:

# Write your query or mutation herequery {  familyPets {    __typename,    ... on Cat {      name    },    ... on Dog {      name    }  }}

 

转载于:https://www.cnblogs.com/Answer1215/p/11384642.html

你可能感兴趣的文章
流水作业调度
查看>>
涨姿势系列之——内核环境下内存映射函数
查看>>
遍历数组批量更新数组里元素的某一项属性
查看>>
github 收藏项目的方法
查看>>
九的余数
查看>>
北京师范大学第十五届ACM决赛-重现赛K Keep In Line ( 字符串模拟实现)
查看>>
(转)C# — WinForm 消息框的使用
查看>>
时间管理(转)
查看>>
Future FutrueTask Callable类源码说明以及原理使用
查看>>
flask 外键关系和多对多查询
查看>>
接收行数,打印平行四边形
查看>>
Linux上coredump调试:call stack栈顶函数地址为0 分析实战
查看>>
Educational Codeforces Round 11——C. Hard Process(YY)
查看>>
0054 Spring MVC的@Controller和@RequestMapping注解
查看>>
C#学习总结
查看>>
python字符串实战
查看>>
SQL学习笔记之B+树的几点总结
查看>>
力扣——字符的最短距离
查看>>
列表的操作
查看>>
8 通用输入输出口
查看>>