query_location.go 491 B

12345678910111213141516
  1. package graphql
  2. import (
  3. "context"
  4. "gshopper.com/gshopify/shop/graphql/generated"
  5. )
  6. func (r *entityResolver) FindLocationByID(ctx context.Context, id string) (*generated.Location, error) {
  7. panic("not implemented")
  8. }
  9. func (r *queryResolver) Locations(ctx context.Context,
  10. after *string, before *string, first *int, last *int, near *generated.GeoCoordinateInput, reverse *bool, sortKey *generated.LocationSortKeys,
  11. ) (*generated.LocationConnection, error) {
  12. panic("not implemented")
  13. }