Skip to content

Location

A location

Fields

city · String · The city of the address
country · String · The Country Code of the address
cursor · Cursor! · required · Pagination cursor
id · ID! · required · The unique identifier of the location
line1 · String · The first line of the address
line2 · String · The second line of the address
name · String · The name of the location
npi · String · The NPI of the location
other_id · String · The Other ID of the location
other_id_qual · String · The Other ID Qualification of the location
place_of_service · PlaceOfService · The place of service associated with this location
place_of_service_id · String · The place of service id of the location
state · String · The state of the address (Uses the 2 letter abbreviation if in US)
to_oneline · String · The location condensed to a single line
user · User · Owner of this location
user_id · String · The ID of the user
zip · String · The zip/postal code of the address

Used By

Definition

"""
A location
"""
type Location {
"""
The city of the address
"""
city: String
"""
The Country Code of the address
"""
country: String
"""
Pagination cursor
"""
cursor: Cursor!
"""
The unique identifier of the location
"""
id: ID!
"""
The first line of the address
"""
line1: String
"""
The second line of the address
"""
line2: String
"""
The name of the location
"""
name: String
"""
The NPI of the location
"""
npi: String
"""
The Other ID of the location
"""
other_id: String
"""
The Other ID Qualification of the location
"""
other_id_qual: String
"""
The place of service associated with this location
"""
place_of_service: PlaceOfService
"""
The place of service id of the location
"""
place_of_service_id: String
"""
The state of the address (Uses the 2 letter abbreviation if in US)
"""
state: String
"""
The location condensed to a single line
"""
to_oneline: String
"""
Owner of this location
"""
user: User
"""
The ID of the user
"""
user_id: String
"""
The zip/postal code of the address
"""
zip: String
}