UNPKG

calibre

Version:

Calibre - Page speed performance testing with Google Lighthouse

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 }