UNPKG

calibre

Version:

Calibre - Page speed performance testing with Google Lighthouse

19 lines (15 loc) 297 B
import { request } from './graphql.js' const LIST_QUERY = ` query{ __type(name: "ConnectionTag") { enumValues { name } } } ` const list = async () => { const response = await request({ query: LIST_QUERY }) return response.__type.enumValues } export { list }