With GraphQL endpoints, Datahub allows integrating Pimcore to other systems and services via GraphQL and test them with the integrated GraphiQL explorer tool right away.
Configuration takes place in the endpoint configuration and offers following possibilities:
Depending on the configuration, the endpoint provides several queries to fetch data from Pimcore. As Datahub always creates a proper graphQL schema, also have a look at the generated schema to get details for the possible queries of a certain endpoint.
On the following pages certain generic aspects are explained, and a couple of samples are listed:
- For details on Document queries see Document Query Documentation.
- For details on Asset queries see Asset Query Documentation.
- For details on DataObjects queries see DataObject Query Documentation.
- For details on how to add custom queries see Add Custom Queries Documentation.
Depending on the configuration, the endpoint provides several mutations to update data in Pimcore. As Datahub always creates a proper graphQL schema, also have a look at the generated schema to get details for the possible mutations of a certain endpoint.
See following pages for a general overview of possible mutations:
- For details on Document mutations see Document Mutation Documentation
- For details on Asset mutations see Asset Mutation Documentation
- For details on DataObject mutations see DataObject Mutation Documentation
- For details on how to add custom mutations see Add Custom Mutations Documentation.
GraphiQL explorer can be opened for an endpoint in an iframe within Pimcore or as an additional browser tab.
It is possible to customize default behavior of graphQL endpoint with event listeners. For details see Events Documentation.
It is possible to keep a cache of the responses delivered by the endpoint, using the same default cache backend configured for Pimcore (Doctrine, Redis,...). This is specially useful to speed up the endpoint replies when it produces complex responses with many dependencies.
The cache can be enabled and configured with a configuration entry like this in your config.yml
file:
#### DATAHUB OUTPUT CACHE
pimcore_data_hub:
graphql:
output_cache_enabled: true # Enables/disables the output (responses) cache
output_cache_lifetime: 20 # If enabled, for how many seconds each response will be cached
By default the cache is disabled but if it is enabled and you don't specify a value for output_cache_lifetime
, its default value is set to 30 seconds.
Just add the parameter ?pimcore_outputfilters_disabled=true
to the URL. This works in a similar way as the Pimcore's Full Page Cache.
It is possible to customize some behavior of output cache with event listeners. For details see Events Documentation.