github.com/Desuuuu/genqlient@v0.5.3/generate/testdata/queries/SimpleNamedFragment.graphql (about)

     1  fragment VideoFields on Video {
     2    id name url duration thumbnail { id }
     3  }
     4  
     5  query SimpleNamedFragment {
     6    randomItem {
     7      id name
     8      ...VideoFields
     9    }
    10    randomLeaf {
    11      ...VideoFields
    12    }
    13  }