Active with remarks |
---|
This application needs additional settings. Please follow the documentation below to create your own connectionUnique, active service acces point to a network. There are different types of connections (API key, Oauth…).. |
The CraftQL modulesa module is an application or tool designed to handle specific business functions, such as CRM, project management, or inventory. The system's modular architecture allows you to activate only the modules you need, enabling customization and scalability as your business requirements evolve. allow you to execute mutation query, simple query and GraphQL query against Craft CMS.
Prerequisites
In order to use CraftQL with Boost.spaceA platform that centralizes and synchronizes company data from internal and external sources, offering a suite of modules and addons for project management, CRM, data visualization, and more. Has many features to optimize your workflow! IntegratorPart of the Boost.space system, where you can create your connections and automate your processes., it is necessary to have a CraftQL plugin installed in your CraftCMS.
The modulea module is an application or tool designed to handle specific business functions, such as CRM, project management, or inventory. The system's modular architecture allows you to activate only the modules you need, enabling customization and scalability as your business requirements evolve. dialog fields that are displayed in bold (in the Boost.space Integrator scenarioA specific connection between applications in which data can be transferred. Two types of scenarios: active/inactive., not in this documentation article) are mandatory!
To connect your CraftQL plugin to Boost.space Integrator create your tokenA secure code used to authenticate and authorize access to API endpoints, enabling users to connect with third-party applications. in the CraftQL settings and insert the token into the Boost.space Integrator CraftQL module’s Create a connection dialog.
Execute any GraphQL query against CraftQL.
Useful for getting out content.
query getOrders { entries(type: [Order], orderStatus: confirmed) { id, ... on Order { delivery_address { name line1 line2 city zip }, dateCreated status products { ... on products_line { qty: pl_qty, price: pl_price, product: pl_product_rel { ... on Product { id title sku } } } } total totalQty } } }