GraphQL API Changelog - Jun 28 to Jul 04
29 days ago by ReadMe API
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 typeAppInterface
. This field is a new way to reference assistants. - Field
assistant
was added to the interfaceInterfaceType
. 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 theDependentConnection
type. - Field
dependentConnections
was added to the object typeFieldDependency
. 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 typeAppInterface
. Use the newassistant
field instead. - Field
assistantId
was removed from the interfaceInterfaceType
. The newassistant
field should be used as its replacement.