This rule detects cycles in the implements graph. It runs graph analysis to find every cycle within the graph.Documentation Index
Fetch the complete documentation index at: https://docs.cognite.com/llms.txt
Use this file to discover all available pages before exploring further.
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 viewsA, B, and C, where A implements B, B implements C, and C implements A. This forms
the cyclic graph of implements A→B→C→A.