(ctx context.Context, year []int32)
| 12 | |
| 13 | type Querier interface { |
| 14 | BooksByYear(ctx context.Context, year []int32) *BooksByYearBatchResults |
| 15 | CreateAuthor(ctx context.Context, name string) (Author, error) |
| 16 | CreateBook(ctx context.Context, arg []CreateBookParams) *CreateBookBatchResults |
| 17 | DeleteBook(ctx context.Context, bookID []int32) *DeleteBookBatchResults |
no outgoing calls