Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active September 7, 2021 17:32
Show Gist options
  • Save percybolmer/6e5872d49c5071b69e4a60e214cdb000 to your computer and use it in GitHub Desktop.
Save percybolmer/6e5872d49c5071b69e4a60e214cdb000 to your computer and use it in GitHub Desktop.
graphQL
package gopher
type Repository interface {
GetGophers() ([]Gopher, error)
GetGopher(id string) (Gopher, error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment