GraphQL Changelog – Week Jul 28 to Aug 01
about 16 hours ago by ReadMe API
This changelog introduces a new createTag
mutation, enabling users to create tags. It also adds new CreateInput
and CreatePayload
types to support this functionality. Additionally, the BulkTagsInput
has been updated with a new visibleToMembers
boolean field, allowing for more granular control over tag visibility.
New:
- Type
CreateInput
: A new input type has been added. - Type
CreatePayload
: A new payload type has been added. - Mutation
createTag
: Added a new mutation to the API. This allows users to create a new tag within the system.
Changed:
- Input Field
visibleToMembers
: A new fieldvisibleToMembers
of type Boolean was added to theBulkTagsInput
input object type. You can now specify whether tags should be visible to members by including this field in your requests.