UNPKG

calibre

Version:

Performance monitoring with Synthetic testing, Chrome UX Report, and Real User Metrics

24 lines (19 loc) 316 B
import { request } from './graphql.js' const LIST_QUERY = ` query { locations { name shortName emoji tag agents { ipv4 } } } ` const list = async () => { const response = await request({ query: LIST_QUERY }) return response.locations } export { list }