UNPKG

calibre

Version:

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

21 lines (17 loc) 310 B
import { request } from './graphql.js' const LIST_QUERY = ` query { organisation { teams { name description slug } } } ` const list = async () => { const response = await request({ query: LIST_QUERY }) return response.organisation.teams } export { list }