GraphQL API Changelog - Jun 21 to Jun 27
13 days ago by ReadMe API
This changelog introduces new queries and mutations for managing field dependencies and AI settings. Key additions include the dependentEmailTemplates query and the updateAiSettings mutation, along with their associated types. Additionally, the dependentConditionals query has been updated to enforce a non-null return type.
New:
- Query
dependentEmailTemplates
was added to theFieldDependency
type. This allows you to retrieve email templates that have dependencies on certain fields. - Mutation
updateAiSettings
was added. This mutation can be used to update settings related to AI. DependentEmailTemplate
,DependentEmailTemplateConnection
, andDependentEmailTemplateEdge
types were added. These are used to manage email templates that have specific dependencies.UpdateAiSettingsInput
andUpdateAiSettingsPayload
types were added to support theupdateAiSettings
mutation.
Changed:
- The query
dependentConditionals
in theFieldDependency
type now always requires a non-null return type, changing fromFieldConditionConnection
toFieldConditionConnection!
. This means a valid result will always be expected.