首页 > 其他 > 详细

[GraphQL] Filter Data Based on Query Arguments with GraphQL

时间:2019-01-13 00:51:56      阅读:151      评论:0      收藏:0      [点我收藏+]

With GraphQL, every field and nested object can have a set of arguments which can be used to request very specific data from a GraphQL API. In this lesson, we will pass arguments to the GitHub API inline and as query variables.

 

We can named query:

query UserInfo {

}

 

We can pass in arguements into query:

query UserInfo ($login: String="xxx"){}

 

The same as function in Javascript, we can give default params and use it in query:

query UserInfo ($login: String="xxx"){ 
  user(login:$login) {
    name,
    company,
    followers {
      totalCount
    }
  }
}

技术分享图片

[GraphQL] Filter Data Based on Query Arguments with GraphQL

原文:https://www.cnblogs.com/Answer1215/p/10261446.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!