Skip to content

Pharmacy

A pharmacy generated from Dosespot

Fields

city · String · The city of the address
id · ID! · required · The unique identifier of the pharmacy
latitude · String · latitude coordinate of the pharmacy
line1 · String · The first line of the address
line2 · String · The second line of the address
longitude · String · longitude coordinate of the pharmacy
name · String · The name of the pharmacy
phone_number · String · The phone number of the pharmacy
state · String · The state of the address (Uses the 2 letter abbreviation if in US)
zip · String · The zip/postal code of the address

Used By

Definition

"""
A pharmacy generated from Dosespot
"""
type Pharmacy {
"""
The city of the address
"""
city: String
"""
The unique identifier of the pharmacy
"""
id: ID!
"""
latitude coordinate of the pharmacy
"""
latitude: String
"""
The first line of the address
"""
line1: String
"""
The second line of the address
"""
line2: String
"""
longitude coordinate of the pharmacy
"""
longitude: String
"""
The name of the pharmacy
"""
name: String
"""
The phone number of the pharmacy
"""
phone_number: String
"""
The state of the address (Uses the 2 letter abbreviation if in US)
"""
state: String
"""
The zip/postal code of the address
"""
zip: String
}