GraphQL API Changelog - Jun 28 to Jul 04

This API update focuses on improving assistant and dependency management. For assistants, the assistantId fields were removed from AppInterface and InterfaceType, replaced by a new, standardized assistant field in those same types, alongside the introduction of the InterfaceAssistant type. Regarding dependencies, the DependentConnection, DependentConnectionConnection, and DependentConnectionEdge types were added, and the dependentConnections field was included in the FieldDependency type for more robust dependency connection management.

👉 You can explore these updates in more detail directly in our GraphQL Page

New:

  • Field assistant was added to the object type AppInterface. This field is a new way to reference assistants.
  • Field assistant was added to the interface InterfaceType. This enables a standardized way to work with assistants across different implementations.
  • Type DependentConnection was introduced. This type likely pertains to handling dependencies.
  • Type DependentConnectionConnection was added. It's part of the new types dealing with dependencies.
  • Type DependentConnectionEdge was added to support the DependentConnection type.
  • Field dependentConnections was added to the object type FieldDependency. This field helps in managing dependency connections.
  • Type InterfaceAssistant was introduced to facilitate operations pertaining to assistants.

Removed:

  • Field assistantId was removed from the object type AppInterface. Use the new assistant field instead.
  • Field assistantId was removed from the interface InterfaceType. The new assistant field should be used as its replacement.