UNPKG

calibre

Version:

Calibre - Page speed performance testing with Google Lighthouse

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 }