mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00

Co-authored-by: ppurswan <ppurswan@visa.com> Co-authored-by: PrithviVISA <140717353+PrithviVISA@users.noreply.github.com> Co-authored-by: aditigup <aditigup@visa.com> Co-authored-by: Bharti, Aakash <aabharti@visa.com> Co-authored-by: Singh, Himanshu <hisingh@visa.com> Co-authored-by: Shukla, Amit <amishukl@visa.com> Co-authored-by: Kartikey Khandelwal <kakhande@visa.com>
61 lines
1.4 KiB
GraphQL
61 lines
1.4 KiB
GraphQL
query getMe {
|
|
me {
|
|
corpUser {
|
|
urn
|
|
username
|
|
info {
|
|
active
|
|
displayName
|
|
title
|
|
firstName
|
|
lastName
|
|
fullName
|
|
email
|
|
}
|
|
editableProperties {
|
|
displayName
|
|
title
|
|
pictureLink
|
|
teams
|
|
skills
|
|
}
|
|
settings {
|
|
appearance {
|
|
showSimplifiedHomepage
|
|
}
|
|
views {
|
|
defaultView {
|
|
urn
|
|
}
|
|
}
|
|
}
|
|
}
|
|
platformPrivileges {
|
|
viewAnalytics
|
|
managePolicies
|
|
manageIdentities
|
|
generatePersonalAccessTokens
|
|
manageIngestion
|
|
manageSecrets
|
|
manageTokens
|
|
manageDomains
|
|
manageTests
|
|
manageGlossaries
|
|
manageUserCredentials
|
|
manageTags
|
|
createDomains
|
|
createTags
|
|
manageGlobalViews
|
|
manageOwnershipTypes
|
|
manageGlobalAnnouncements
|
|
createBusinessAttributes
|
|
manageBusinessAttributes
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateUserSetting($input: UpdateUserSettingInput!) {
|
|
updateUserSetting(input: $input)
|
|
}
|