Repository URL to install this package:
|
Version:
2.0.11 ▾
|
import { gql } from 'apollo-server'
export default gql`
type StoreTime {
opentime: String
closetime: String
day: String
openforbussiness: String
}
type StoreList {
identifier: ID
country: String
distance: Float
city: String
address1: String
latitude: Float
additionalinfo: [LabelValue]
zipcode: String
altidentifier: String
phone: String
name: String
state: String
distanceunit: String
email: String
longitude: Float
workinghours: [StoreTime]
}
type StoreLocator {
type: String
offset: String
limit: String
storeinfo: [StoreList]
}
`