git.sr.ht/~sircmpwn/gqlgen@v0.0.0-20200522192042-c84d29a1c940/example/federation/products/graph/products.go (about) 1 package graph 2 3 import "git.sr.ht/~sircmpwn/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 }