zoukankan      html  css  js  c++  java
  • [GraphQL] Reuse Query Fields with GraphQL Fragments

    A GraphQL fragment encapsulates a collection of fields that can be included in queries. In this video, we'll look at how to create fragments on types to reduce the amount of typing that needs to occur as queries become more complex. We'll use the GitHub API to test.

    We have:

    # Type queries into this side of the screen, and you will 
    # see intelligent typeaheads aware of the current GraphQL type schema, 
    # live syntax, and validation errors highlighted within the text.
    
    # We'll get you started with a simple query showing your username!
    query { 
      organization(login: "moonhighway") {
        email,
        url,
        repository(name: "learning-graphql") {
          url,
          description
        }
      },
      repository(owner:"facebook" name:"graphql"){
        url,
        description,
        name,
        languages(first:1){
          nodes {
            name
          }
        }
      }
    }

    To resue 'url', 'description' for Repository, we can create fragment:

    fragment CommonFields on Repository {
      url,
      description
    }

    Therefore, we can reuse it:

    # Type queries into this side of the screen, and you will 
    # see intelligent typeaheads aware of the current GraphQL type schema, 
    # live syntax, and validation errors highlighted within the text.
    
    # We'll get you started with a simple query showing your username!
    query { 
      organization(login: "moonhighway") {
        email,
        url,
        repository(name: "learning-graphql") {
          ...CommonFields
        }
      },
      repository(owner:"facebook" name:"graphql"){
        ...CommonFields
        name,
        languages(first:1){
          nodes {
            name
          }
        }
      }
    }
    
    fragment CommonFields on Repository {
      url,
      description
    }
  • 相关阅读:
    [编程语言][java][java se]java泛型中? T K V E含义(学习)
    Effective C++ 第二版 10) 写operator delete
    Cocos2d-x C++调用Android弹出提示框
    面试宝典 问题记录
    送给初入大学的工科男们一篇童话
    二叉树遍历
    webservice的讲解
    在JNI中新开线程遇到问题
    jni调试3(线程调试env变量问题)
    eMMC(KLM8G2FE3B)
  • 原文地址:https://www.cnblogs.com/Answer1215/p/10261423.html
Copyright © 2011-2022 走看看