GraphQL API Changelog - Jun 7 to Jun 13
5 months ago by ReadMe API
This week, we introduced new features to the GraphQL API, including support for tag categories with the addition of the tagCategories query and updateTagCategory mutation, as well as new related types. We also enhanced file upload capabilities by adding new fields to the CreatePresignedUrlInput input object.
👉 You can explore these updates in more detail directly in our GraphQL Page
New:
-
Query:
tagCategoriesfield was added. This allows you to query the newTagCategorytype. -
Mutation:
updateTagCategoryfield was added. Use this to update existing tag categories using the newUpdateTagCategoryInputand receive results in theUpdateTagCategoryPayloadtype. -
Types: The following new types were introduced:
TagCategory: A new type representing categories of tags.UpdateTagCategoryInput: This type allows you to provide input data for updating a tag category.UpdateTagCategoryPayload: This type provides the payload results from theupdateTagCategorymutation.
-
Input Object Fields:
contentChecksum,contentLength, andcustomFilePathfields were added to theCreatePresignedUrlInputinput object type. These fields offer more control and specification when creating a presigned URL.
