Add new package bindings option (#169)

Add new package bindings option

This commit adds list of packages for which genqlient should automatically
generate bindings; it's equivalent to adding all the exported types in the
package to `bindings` explicitly. This can be useful when you're both a client
and a server of the same schema and want to share types. We don't recommend
doing things that way, but the feature isn't too invasive and may be useful for
other purposes.

Co-authored-by: Ben Kraft <[email protected]>
This commit is contained in:
NuVivo314
2022-06-17 11:42:49 -07:00
committed by GitHub
co-authored by Ben Kraft
parent 1f44dc6db3
commit 093054ef32
5 changed files with 127 additions and 2 deletions
+5
View File
@@ -175,6 +175,11 @@ func TestGenerateWithConfig(t *testing.T) {
StructReferences: true,
Generated: "generated-structrefs.go",
}},
{"PackageBindings", "", nil, &Config{
PackageBindings: []*PackageBinding{
{Package: "github.com/Khan/genqlient/internal/testutil"},
},
}},
{"NoContext", "", nil, &Config{
Generated: "generated.go",
ContextType: "-",