github.com/maeglindeveloper/gqlgen@v0.13.1-0.20210413081235-57808b12a0a0/example/federation/products/graph/products.go (about)

     1  package graph
     2  
     3  import "github.com/99designs/gqlgen/example/federation/products/graph/model"
     4  
     5  var hats = []*model.Product{
     6  	{
     7  		Upc:   "top-1",
     8  		Name:  "Trilby",
     9  		Price: 11,
    10  	},
    11  	{
    12  		Upc:   "top-2",
    13  		Name:  "Fedora",
    14  		Price: 22,
    15  	},
    16  	{
    17  		Upc:   "top-3",
    18  		Name:  "Boater",
    19  		Price: 33,
    20  	},
    21  }