mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 19:10:01 +00:00
14 lines
525 B
JavaScript
14 lines
525 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const strapiScalarToGraphQLScalar = require('./strapi-scalar-to-graphql-scalar');
|
||
|
const graphQLFiltersToStrapiQuery = require('./graphql-filters-to-strapi-query');
|
||
|
const graphqlScalarToOperators = require('./graphql-scalar-to-operators');
|
||
|
const entityToResponseEntity = require('./entity-to-response-entity');
|
||
|
|
||
|
module.exports = context => ({
|
||
|
...strapiScalarToGraphQLScalar(context),
|
||
|
...graphQLFiltersToStrapiQuery(context),
|
||
|
...graphqlScalarToOperators(context),
|
||
|
...entityToResponseEntity(context),
|
||
|
});
|