/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/plugins/graphql/server/src/services/utils/index.ts
13 строк
355 B
Ben Irvin
feat: Upgrade to Apollo v4
15 янв 2024, 16:54
Не верифицирован
15 янв 2024, 16:54
13a2f8b
Код
Авторство
О чём код?
import mappers from './mappers'; import attributes from './attributes'; import naming from './naming'; import playground from './playground'; import type { Context } from '../types'; export default (context: Context) => ({ playground: playground(context), naming: naming(context), attributes: attributes(context), mappers: mappers(context), });