GraphQL API Changelog - Jun 21 to Jun 27
4 months 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
dependentEmailTemplateswas added to theFieldDependencytype. This allows you to retrieve email templates that have dependencies on certain fields. - Mutation
updateAiSettingswas added. This mutation can be used to update settings related to AI. DependentEmailTemplate,DependentEmailTemplateConnection, andDependentEmailTemplateEdgetypes were added. These are used to manage email templates that have specific dependencies.UpdateAiSettingsInputandUpdateAiSettingsPayloadtypes were added to support theupdateAiSettingsmutation.
Changed:
- The query
dependentConditionalsin theFieldDependencytype now always requires a non-null return type, changing fromFieldConditionConnectiontoFieldConditionConnection!. This means a valid result will always be expected.
