Fluent Commerce Logo
Docs

dynamic-utils

Package

Changed on:

20 June 2025

Publisher:Fluent Commerce
Website:Fluent Commerce

Download Package

Version History

Overview

This package contains a collection of utilities to allow queries and mutations to be generated at runtime. This allows the creation of rules that are more configurable and work better cross-domain.The Fluent Rule SDK uses Apollo Android to make GraphQL queries.One feature of Apollo is that it requires queries to be pre-compiled into Java classes before they can be used.This is great for type-safety and performance, but not as good for cases where we want to allow workflow designers the freedom to access and update anything without needing to develop and compile new queries.

Detailed Technical Description

Intro

The utility libraries are available on the Fluent Commerce public maven repository. To use them in your project:

Step 1

First ensure you've followed the steps on setting up a plugin project detailed here

Step 2

Ensure the Fluent Commerce maven repo is configured in your pom.xml file.<repositories>`
`
 // TODO
</repositories>`
`

Step 3

Add this library to the dependencies section of your pom.xml file.<dependency>`
`
 // TODO
</dependency>