Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created September 10, 2021 09:54
Show Gist options
  • Save percybolmer/ae287d20fb43b7d31189f4371fea203f to your computer and use it in GitHub Desktop.
Save percybolmer/ae287d20fb43b7d31189f4371fea203f to your computer and use it in GitHub Desktop.
graphql
// Repository is used to specify whats needed to fulfill the job storage requirements
type Repository interface {
// GetJobs will search for all jobs related to and EmployeeID
GetJobs(employeeID, company string) ([]Job, error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment