GraphQL API Changelog - Jun 7 to Jun 13

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 new TagCategory type.

  • Mutation: updateTagCategory field was added. Use this to update existing tag categories using the new UpdateTagCategoryInput and receive results in the UpdateTagCategoryPayload 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 the updateTagCategory mutation.
  • Input Object Fields:

    • contentChecksum, contentLength, and customFilePath fields were added to the CreatePresignedUrlInput input object type. These fields offer more control and specification when creating a presigned URL.