2021-08-24 17:56:44 +02:00
|
|
|
'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');
|
|
|
|
|
2022-08-08 23:33:39 +02:00
|
|
|
module.exports = (context) => ({
|
2021-08-24 17:56:44 +02:00
|
|
|
...strapiScalarToGraphQLScalar(context),
|
|
|
|
...graphQLFiltersToStrapiQuery(context),
|
|
|
|
...graphqlScalarToOperators(context),
|
|
|
|
...entityToResponseEntity(context),
|
|
|
|
});
|