Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql / src / models / Store.graphql.ts
Size: Mime:
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]
  }
`