GraphQL API Changelog - Jun 7 to Jun 13
26 days 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:
tagCategories
field was added. This allows you to query the newTagCategory
type. -
Mutation:
updateTagCategory
field was added. Use this to update existing tag categories using the newUpdateTagCategoryInput
and receive results in theUpdateTagCategoryPayload
type. -
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 theupdateTagCategory
mutation.
-
Input Object Fields:
contentChecksum
,contentLength
, andcustomFilePath
fields were added to theCreatePresignedUrlInput
input object type. These fields offer more control and specification when creating a presigned URL.