John Joyce 00edc4205f
feat(Tags): Support Managing Tags via "Manage Tags" nav bar page (V1) (#12983)
Co-authored-by: Annadoesdesign <annaerocca@gmail.com>
Co-authored-by: Anna Everhart <149417426+annadoesdesign@users.noreply.github.com>
Co-authored-by: John Joyce <john@ip-192-168-1-64.us-west-2.compute.internal>
Co-authored-by: John Joyce <john@Mac.lan>
Co-authored-by: amit-apptware <132869468+amit-apptware@users.noreply.github.com>
Co-authored-by: John Joyce <john@Mac-302.lan>
2025-03-31 15:30:51 -07:00

71 lines
1.7 KiB
GraphQL

query getMe {
me {
corpUser {
urn
username
info {
active
displayName
title
firstName
lastName
fullName
email
}
editableProperties {
displayName
title
pictureLink
teams
skills
persona {
urn
}
platforms {
urn
}
}
settings {
appearance {
showSimplifiedHomepage
showThemeV2
}
views {
defaultView {
urn
}
}
}
}
platformPrivileges {
viewAnalytics
managePolicies
manageIdentities
generatePersonalAccessTokens
manageIngestion
manageSecrets
manageTokens
manageDomains
viewTests
manageTests
manageGlossaries
manageUserCredentials
manageTags
viewManageTags
createDomains
createTags
manageGlobalViews
manageOwnershipTypes
manageGlobalAnnouncements
createBusinessAttributes
manageBusinessAttributes
manageStructuredProperties
viewStructuredPropertiesPage
}
}
}
mutation updateUserSetting($input: UpdateUserSettingInput!) {
updateUserSetting(input: $input)
}