Skip to main content
This rule detects cycles in the implements graph. It runs graph analysis to find every cycle within the graph.

Why it matters

You will not be able to deploy the data model to CDF, since cyclic implements are impossible to resolve in terms of inheritance of properties.

Example

Say we have views A, B, and C, where A implements B, B implements C, and C implements A. This forms the cyclic graph of implements ABCA.

Further reading

Last modified on February 27, 2026