12345678910111213141516 |
- package graphql
- import (
- "context"
- "gshopper.com/gshopify/shop/graphql/generated"
- )
- func (r *entityResolver) FindLocationByID(ctx context.Context, id string) (*generated.Location, error) {
- panic("not implemented")
- }
- func (r *queryResolver) Locations(ctx context.Context,
- after *string, before *string, first *int, last *int, near *generated.GeoCoordinateInput, reverse *bool, sortKey *generated.LocationSortKeys,
- ) (*generated.LocationConnection, error) {
- panic("not implemented")
- }
|