github.com/animeshon/gqlgen@v0.13.1-0.20210304133704-3a770431bb6d/example/federation/products/graph/products.go (about) 1 package graph 2 3 import "github.com/animeshon/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 }